

That’s fucking stupid and you know it.
That’s fucking stupid and you know it.
Funny joke but on a serious note: you don’t need any money to call emergency services from any landline in North America. Including pay phones! If you ever find yourself in an emergency, a pay phone nearby is a great resource. All mobile phones within cell range can also call emergency services even without a wireless plan— it just needs to be in range of a compatible signal tower, no matter the provider.
Goddamn, panic is doing Fever in full??
I will always recommend Ben Eater’s breadboard computer 6502 project for anyone who wants to know how it works. The 8-bit breadboard computer project as the next step too, to really dive into all the pieces. But the 6502 project is a nice entry point into hardware itself as well as the basic components of processor and memory. How and what the 1s and 0s are doing and how to make them do what you want them to do. Getting up to a working character display and serial input for a keyboard to type is such a satisfying process that takes only a few hours if you kinda know what you’re doing and a few days if you know nothing.
Can confirm the LTE models are totally worth it especially if you have AirPods and some music streaming service (or get a model with enough storage for your local songs). It’s amazing being able to just walk out of the house, still have music, notifications, the ability to call emergency services, directions, and even my 2FA unlocks when needed all on my wrist, all day. And unlimited data is only a $10 addon to my existing provider line.
It will still boil and the difference is single digit minutes at most.
That poll showing 80% of voters want manufacturing jobs to come back to America but 20% of voters would willingly choose to work a factory job says everything.
I love Actual. It’s fantastic and easy to use. I use off-budget accounts and weekly / monthly reconciliation just to keep the general value of these accounts at stable intervals.
I have a slight bone to pick with the PWA version of the site though. After a couple months of using the PWA front end to keep my budget and transactions accurate manually, I opened the site on my desktop browser and it completely lost all that work due to a sync issue. Apparently the PWA for weeks had not remained in sync and so all manual entries were not making back to the server. But the app works so well I never noticed because it kept just working. Supposedly there’s an alert saying it’s not synced with the server but it’s not prominent enough. So if you use that feature (the PWA) then be sure it’s syncing often.
What about one of those “under desk treadmills”?
Great project! Especially like the non-invasive pet tracking this affords.
I feel like a smaller, electromechanical version of this could also work well for people who might not need the IoT integration, it could be a nice expansion product on its own with just relays and a power circuit / classical logic circuits.
Hearing it from real people running the real companies we’re used to hearing about in reviews or even being a patron of, really helps bring the reality of what’s happening front and center. Its also fascinating seeing the insulation of the larger companies like Corsair and how different but also alike they speak about the uncertainty of the future.
Cold brew is
5 because the handle isn’t a fucking nightmare and won’t be distracting to eating but also I have that exact set and only use the larger ones unless I am forced to use the smaller ones. I picked the set for these reasons.
This is really a problem of human vs computer thinking.
F and f are two different characters, encoded differently. Ergo, File and file are different by raw bytes.
Some developers wish to make the interactions for the user more consistent and thus a case-insensitive filesystem is born. The problem is that this is such a low level place to make this decision.
A filesystem, as in the kernel level interactions for files, should be case-sensitive in that every character is a unique series of bits. But there’s nothing stopping a higher level api from helping users out. It would be sensible to have a case-insensitive desktop environment.
The low level functionality should remain intentional though.
If your app doesn’t respond to SIGTERM gracefully, you need to fix your app. The system did its job as documented.
New RPG tech tree just dropped.
Just a reminder that as long as you don’t need any kind of platform hosting or complex multi-user setup, git itself works fine on a remote machine as your server, even just on LAN. (As always, just setup an ssh key on the two machines so ssh commands are secure and don’t require passwords all the time)
> cd /my/repos > ssh user@10.x.y.z ‘mkdir /home/user/repos/new_repo.git && cd $_ && git init --bare’ > git clone user@10.x.y.z:/home/user/repos/new_repo.git