One way to contribute to FOSS is to improve bad documentation. You are correct, of course, and lazy devs write bad code if they do not cultivate good documentation - imho.
- 0 Posts
- 21 Comments
raspberriesareyummy@lemmy.worldto Fuck AI@lemmy.world•MIT Study Finds AI Use Reprograms the Brain, Leading to Cognitive Decline0·11 days agoThank you for saving me from typing that.
I was probably on a different continent ^^ Also, the biggest problem explaining math is not making it understandable, but having a motivated learner. Most students that have a bad teacher in school, or are somehow not motivated in school to begin with, will also not be motivated to focus on easier explanations. Technically a basic interest in math should be fostered / encouraged in kids from an early age, and at the latest in elementary school. If that does not work out, many students will have a hard time with it.
You are welcome.
% really just means
*1/100
- it doesn’t matter where you apply that factor:6% of 50 = 6% * 50 = 6/100 * 50 = 6*50/100 = 6 * 50/100
wasn’t paying attention - my bad.
- great use case for a mobile device /s
- lithium ion batteries are really nothing to feel comfortable around
- wasting energy is wasting energy
So - no, it’s now expensive electronic scrap, sadly. While my shiftphone easily lasts 24 hours with regular use and 3+ days on standby.
it’s been 3 years or so but I may have bought a pinephone pro because the simple one was out of stock? Plus convergence package, plus shipping, plus outrageous money transfer fees - German banks are basically thieves when it comes to international transfers outside the EU.
Pinephone battery usage (with postmarketOS) is atrocious. I bought one and it’s been collecting dust in a drawer ever since the first 3-4 times the battery drained from 100 to 0 within 24 hours on stand-by. :( My fastest wasted 700ish EUR ever.
raspberriesareyummy@lemmy.worldto linuxmemes@lemmy.world•After 2 years on Lemmy, I finally installed it this weekend.0·19 days agoI had two different ones for a while and was suffering from occasional network dropouts that would force me to restart networking, and would sometimes take minutes to recover (DHCP discover) - eventually I had enough and bought a repeater + connected via cable. Interestingly enough, the “dropouts” would not allow new connections, but existing connections would remain active mostly. So it was definitely a driver issue.
raspberriesareyummy@lemmy.worldto linuxmemes@lemmy.world•After 2 years on Lemmy, I finally installed it this weekend.0·19 days agoTo save yourself some headache on the wifi front, I recommend - at least for non-Laptops - getting a repeater and hooking your computer up via Ethernet cable. Yes, WiFi does work, but it can be a major PITA.
raspberriesareyummy@lemmy.worldto Mildly Infuriating@lemmy.world•Modern Windows in a nutshellEnglish0·23 days agoNot sure if joking…
Seconded :) why stress out over missed flights - if it’s the airlines fault, they will also rebook you & get you a hotel if needed. Happens…
Rushing to get out past the people in rows between you and the exit makes the suffocation last longer for everyone, though.
So? Decelerate your life a bit.
raspberriesareyummy@lemmy.worldto Gaming@lemmy.world•A small moment in gaming historyEnglish0·1 month ago“Automated” systems act by rules, configured by people. Think again.
raspberriesareyummy@lemmy.worldto Gaming@lemmy.world•A small moment in gaming historyEnglish0·1 month agoWhy do you think that firing someone over this is the correct response?
because someone who bans an account because it has the word “gay” in the name should not work in a position where they can ban accounts.
raspberriesareyummy@lemmy.worldto Games@lemmy.world•GOG’s Freedom To Buy Campaign Gives Away Controversial Games For Free To Protest CensorshipEnglish5·1 month agoBeing a DIK is definitely worth playing.
raspberriesareyummy@lemmy.worldto Games@lemmy.world•GOG’s Freedom To Buy Campaign Gives Away Controversial Games For Free To Protest CensorshipEnglish10·1 month agoYou should: Being a DIK is a masterpiece. The erotic content is really just one aspect of a topnotch visual novel. Great story arcs. DrPinkCake absolutely knows their stuff!
there is not a single product that you require for sustenance that is exclusively available from these two options. Just don’t!
Been there, found undefined behavior where there should not be any. Imagine a function that takes a bool param with the following code, but neither branch gets executed:
if (b) doStuffForTrue(); if (!b) doStuffForFalse();
In a function that is passed an uninitialized bool parameter, in gcc compiler, both branches can get executed even when b is const. Reason: uninitialized bool in gcc can have values of a random integer, and while if(b) {} else ({} is guaranteed to execute only one branch, bool evaluations of a bool value take a “shortcut” that only has defined behavior with an initialized bool.
Same code with an uninitialized integer works as expected, btw.