

Then, nobody says “megagram” - it’s “ton”. So there are quirks to remember.
We absolutely should, though… That and megameters, for car mileage. We always round off to the nearest thousand kilometer anyway.
Then, nobody says “megagram” - it’s “ton”. So there are quirks to remember.
We absolutely should, though… That and megameters, for car mileage. We always round off to the nearest thousand kilometer anyway.
Well something about 200 kms away will take 2 hours to get there on the highway going 100 km/h…
It’s not as neat as 1 mile = 1 minute at 60mph, but it’s still pretty easy to do the mental math.
I’m 35 and my daughter is 15. When I’ll be 37, 16-year-olds will litterally be younger than my actual kid. This is all kinds of fucked up.
Adrienne Cowan from Seven Spires and Melissa Bonny from Ad Infinitum
Saw them last year with Kamelot, it was an amazing show. I didn’t know them before but I’m a fan now!
pass probably isn’t for you then, unless you find a wrapper or something that lets you put all in one file. I’ve switched to keepassxc as well, I could never get the browser integration to work with pass.
No, only the file contents are encrypted. The file names and folder structure is visible to anyone who has access to the files.
The files themselves can contain a ton of stuff if you want, but the convention is to put the password on the first line and that’s what “pass -c my/file” will copy.
Yeah, my experience with Aqara has been like that: flawless out of the box, pairs quickly with no issues, reports state correctly, all good. Then after a random while (at least a few hours, but within a day) they just drop off the network never to be seen again until I re-pair them.
I even got an Aqara smart plug just to act as a router and pair the Aqara stuff through it, it was better but this time it dropped off after a few weeks. Might’ve been the battery though, it was a temperature sensor in -20°C.
Running a bunch of services here on a i3 PC I built for my wife back in 2010. I’ve since upgraded the RAM to 16GB, added as many hard drives as there are SATA ports on the mobo, re-bedded the heatsink, etc.
It’s pretty much always ran on Debian, but all services are on Docker these days so the base distro doesn’t matter as much as it used to.
I’d like to get a good backup solution going for it so I can actually use it for important data, but realistically I’m probably just going to replace it with a NAS at some point.
In the near future: Journalists use AI to turn 1 or 2 sentences into a full article. Meanwhile, readers use AI to summarize long articles into 1 or 2 sentences.
Coming at this from the JS world… Why the heck would 2 projects share the same library? Seems like a pretty stupid idea that opens you up to a ton of issues, so what, you can save 200kb on you hard drive?
I’m no Python expert either and yeah, from an outsider’s perspective it seems needlessly confusing. easy_install
that’s never been easy, pip
that should absolutely be put on a Performance Improvement Plan, and now this venv
nonsense.
You can criticize javascript’s ridiculous dependencies all you want (left-pad?), but one thing that they absolutely got right is how to manage them. Everything’s in node_modules
and that’s it. Yeah, you might get eleven copies of left-pad on your system, but you know what you NEVER get? Version conflicts between projects you’re working on.
I’ve always wondered if vegetables from a farm that uses horse-drawn tills instead of tractors would be vegan… It’s a real question, but everyone I ask thinks that I’m trolling.
There’s also a Kirkland near Montreal, so it could be Canada. But as it’s already been mentioned, it has nothing to do with location in this case.
The store nearest me will deliver whatever you want for a $30 flat rate. I have a minivan so I can still carry a lot of stuff myself but for that price it lets me avoid messing with removing my seats so it’s worth it
Funnily enough, in my town there used to be a Future Shop, and then a Best Buy sprung up in the new commercial district, but apparently couldn’t compete because it closed 2 years later. Then about a year later Best Buy bought Future Shop and they re-branded the existing Future Shop to Best Buy.
Yeah, ToysRUs is alive and well in Canada. I have no idea that the bottom-right one is.
Gen Alpha’s main influence for slang is Cocomelon.
For self-hosting purposes, Docker = lightweight disposable VMs that are configured via docker-compose.yml
. All important data should be in “volumes”, which are just shared folders between the host and the container.
The end result is that you can delete and re-create containers at any time and they should just pick up where they left off from the data that’s in these volumes.
Each individual published image has some paths they want to use for that; everything is usually specified in their example docker-compose files.
If you’re not a dev, don’t even try to understand Dockerfiles, it’s not for you.
It’s not quite as point-and-click, but I’m using Docker for that because Yunohost kept messing up updates. Most server apps will have some instructions on how to run them in docker, especially a docker-compose.yml
file, so you don’t have to rely on the Yunohost team to package said app.
The way I do it is that I put each suggested compose file in their own file, and import them in my main docker-compose.yml file like this:
version: '3'
include:
- syncthing.yml
Then just run docker compose pull && docker compose up -d
every time you change something or want to update your apps, and you’re good to go.
Software updates in particular are waaaaaayyy easier on Docker than Yunohost.
I’m gonna have to disagree here, it’s always a guessing game of how many layers of abstraction they’ve used to seemingly avoid writing any implementation code… Can’t put the code related to “bicycles” in the
Bicycle
class, no, that obviously goes inWheeledDeviceServiceFactoryBeanImpl
that’s in the ‘utils’ package.