Skip to main content

Posts

Correcting nearsightedness

·3 mins
Allegedly there is a way to correct nearsightedness, and for what I have read, the methodology and the reasoning seem convincing.

Benchmarking external command execution time

·2 mins
Bash is a command interpreter used in system scripts for calling external commands, so I wanted to compare the speed of Bash to the speed of other interpreted languages by doing a simple test.

Benchmarking arithmetic in different languages

·3 mins
This simple benchmark compares the speed at which different languages are able to sum values: ∑ i = 0 10000 i Unsurprisingly, the Rust implementation was the fastest.