It uses Gemini on web or else it gets the hose again.
- 1 Post
- 11 Comments
hades@programming.devto
Programming@programming.dev•Reversing a string in Rust (for no reason)
1·6 months agoThat chars() call hides a lot of complexity, but also even that might not be correct depending on what exactly you mean by “reversing a string”.
hades@programming.devto
Programming@programming.dev•Reversing a string in Rust (for no reason)
7·6 months agoThank you for watching the video and answering the question that I had from just reading the title.
Reversing a UTF-8 string is super hard in any language, rust doesn’t really make it that much harder.
hades@programming.devto
Programming@programming.dev•Serverless Is An Architectural Handicap (And I'm Tired of Pretending it Isn't)
15·6 months agoJust an ad article. “Did you also encounter skill issues while building web applications? Try my platform.”
hades@programming.devto
Programmer Humor@programming.dev•Every goto in the Linux kernel / Just another day on the linux-kernel mailing list
11·7 months agobut how many COMEFROMs are there
hades@programming.devto
Programming@programming.dev•Recto: In Case Programming Isn’t Hard Enough
2·9 months agoimagine the diffs
hades@programming.devOPto
Programming@programming.dev•Handling of unlikely syscall errors
1·9 months agoUninitialized automatic variables. E.g. (in C/C++):
int get_time() { int time; syscall(/* something that fails */, &time); return time; }
hades@programming.devOPto
Programming@programming.dev•Handling of unlikely syscall errors
21·9 months agoRust seems to think panicking is better: https://github.com/rust-lang/rust/issues/115482
hades@programming.devOPto
Programming@programming.dev•Handling of unlikely syscall errors
2·9 months agoprobably the worst option for a library
Even worse than returning garbage? :)
hades@programming.devOPto
Programming@programming.dev•Handling of unlikely syscall errors
4·9 months agoInterestingly, Rust is what brought me to this rabbit hole. It does indeed panic in
now()[1], but the devs seem to be reluctant to provide thetry_now()variant[2].[1] https://doc.rust-lang.org/nightly/src/std/sys/pal/unix/time.rs.html#124 [2] https://github.com/rust-lang/rust/issues/115482

Computer science is just mathematics, you can do it with pen and paper. The actual IT jobs where you don’t have to touch windows are plentiful, although it might be a bit of a red flag if you’re vehemently refusing to touch some specific software (be it windows, or any other program, or programming language).