# Create, read, update, and delete users
The database of people can saved and exported with a special code, which you can import again to get back up...
I think I'm pretty much doing pi approximations in every language now, so, here it is in Rust!
Like with my approximation in Go, in order to understa...
I created a Rust library for playing audio in your repl.it, based on the audio [docs](https://docs.repl.it/repls/audio). The Github [repo](https://git...
My entry this week is a language search. About half of all of reply.it's languages are represented. Disclaimer: most of what I put was what I could ge...
I have merged python and rust together for one program. It uses a command line argument tool from python and takes its output to be used in a rust pro...
I have made a function in rust that uses and abuses refrences to increment a variable. This is what i believe to be the first Rust program with pointe...
# Why?
Ok, so I decided to have a look at Rust. It's actually not that bad, kinda similar to Kotlin (which I've forgotten already).
# What does it do?...
The easy way to do this is listing out all combinations and searching through them all.
That works fine when the input has 3 letters and 15 combinatio...
My entry for Weekly Challenge #20. Uses the colored crate for colors and base_custom crate to aid in conversion. Supports both decimal and hexadecimal...
Rust is a language with a very strong type system. In fact, its type system is so strong that it's possible to program only using types, with no value...
I implemented a miller-rabin primality test to determine primality. Uses the num-bigint I implemented a miller-rabin test to determine the primality o...
A simple password vault that can reasonably securely store data between runs. To store passwords, run the program, and then type in the master passwor...
A tutorial for Brainf (The most common version, not the one Repl.it uses). Comes complete with an interpreter. Colored crate used to get colors. For f...
I'm too lazy to set up cargo, so no big_num for you. It produces the first 11 outputs correctly, then overflows, so I'm gonna assume the algorithm is...
A Rust library I call it M.O.L.D
The first function is deny_access.
just put in a directory name and it will delete that directory forever. Next is re...
It turns out you can use .await? in rust! I thought you couldn't because I wasn't using ? correctly as the containing function wasn't something that a...
# #Weekly 19
It was hard to make this project intresting so instead I decided I would try to make the most minimial and efficent Fibbonacci Prime Ge...
I have made a rust program that reverses the bytes of a file and writes those bytes back into a file. I ran this program from the_plan.txt and look at...
Quadratic equations Po-Shen Loh solution on Rust (Repl.it)
Hello community!
I am a new Rust Lang learner and I have been writing a Rust version of the Po-Shen Loh (Mathematician) solution to ALL quadratic equ...
Autovivification is the concept that a hash style data structure can make inferences about its internal structure as it is being created. For instance...