- 0 Posts
- 6 Comments
felsiq@lemmy.zipto Programming@programming.dev•How a Single Line Of Code Could Brick Your iPhone7·5 months agoMore W’s for security by obscurity and closed source software in general /s
felsiq@lemmy.zipto Programming@programming.dev•I always feel better about myself when I see huge companies pull off shit like this2·10 months agoQuestion for you or anybody else using voyager who sees this: is your username the same color as OP’s? I assumed there’d be different colors (like ik red is for the instance admin) but yours looks the same color as the OP’s and now I’m questioning if I’m even more colorblind than I realized lmao
Also, seconding the ‘thank you’s, you’ve made a really great app and I really appreciate all the work you’ve done to get it to this point!Edited to add: thank you everybody, turns out I’m just colorblind lol
I like to pick a fun project, pick a language I don’t know / wanna learn better, and then just go for it. Don’t be discouraged if somebody’s already made it - nothing says your learning project has to be useful in the real world, tho it’s kinda nice if you think of something that can be. If your project seems intimidatingly hard, remember the programmer workflow of breaking it down into manageable pieces and tackling those. If it doesn’t seem hard enough to teach you anything, I sometimes like to write it without using any external code or libraries (or a minimum of them; if it’s something like a GUI program I’ll use direct vulkan bindings instead of like Qt). This is also one of the few areas I get some use out of LLMs, cuz bullying ChatGPT or a local equivalent into giving me huge and tailored lists of program ideas can be really helpful. Either way my main advice is just to pick something that interests you and have fun with it; things don’t have to be worthwhile to other people to be worthwhile to you.
felsiq@lemmy.zipto Programming@programming.dev•What languages/frameworks for small, very low usage apps on limited hardware?3·1 year agoTo add to this, with rustup you can add different build targets than the current system - could let you build the binary on a more powerful pc and then just scp it over.
Worse in the sense of more errors, sure, but as you go you’ll pick up more of the rust patterns of thinking and imo it’s very worth it. It’s an odd blend and can be a bit verbose but I definitely prefer it to a pure OO or pure functional style language personally