Felix Schoeller

Results 88 issues of Felix Schoeller

Bash allows you to evaluate commands inside the parameters for another command, like this (assuming a calc command) `calc "1 + $(calc '1 + 2')"` this could be pretty cool...

While trying to optimize the memory usage of my code, i noticed, that there seems to be a memory leak when calling reqwest::get() ```rust use reqwest; use std::error; fn main()...

If you assign a runtime variable inside a `#run` directive, it triggers an assert and crashes the compiler ``` @entry fn main() { var i = 0 #run( i =...