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.
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.
I’m not a Java dev, but I know enough of it to fix simple bugs in the backends I work with. My main issue with it is that 99% of the code doesn’t seem to do anything. The clear, obvious place that looks like it handles the feature you’re looking for? None of it does anything! It just instantiates another class from God knows where to actually do the work. I swear I spend most of my time in Java projects just looking for the damn implementation in a sea of AbstractSingletonFactoryBean shit.
Israel & Gaza are litterally on the other side of the world, on a different continent. Don’t they teach you geography in school?
That’s not US politics. And the rule is temporary; the goal is just to get a breather after a months-long marathon of hearing about nothing else on Lemmy.
I’m not from the US and my Lemmy feed has been absolutely FLOODED with US political news for MONTHS. Yesterday’s vote was the bushel that broke the camel’s back, and I definitely understand non-political communities not wanting to be even more flooded with US politics than they already are.
Go complain about your broken country in politics-oriented communities, please, and let us talk about other, less despair-inducing subjects.
My grandmother used to have one. I never realized how it worked before that video, but I was always fascinated by the fact that the bread would lower itself
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.
You might be right, but our southern neighbours also have a Senate and it doesn’t seem to help…
I am one. I’m a pretty weak monarchist, though, it’s just that I look south and I’m glad that there’s a “higher level” looking over our politicians. Even if the GG nominations aren’t always ideal, at least in theory they aren’t beholden to popular opinion. The fact that they’re nominated and not elected ensures that they don’t have the legitimacy to push their own agenda either. So it’s a powerful position, but mostly symbolically and there would be a lot of backlash if some ambitious GG tried to use this power for anything other than extreme cases.
In my opinion, this is partly why our politics haven’t yet devolved to the point of getting a Donald Trump. You can say what you want about Trudeau, but at least the government doesn’t shut down every so often just because they can’t agree on a budget.
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.
Enel is currently doing exactly that with their electric car chargers (the Juicebox), they’ve decided to pull out from the North American market and just shut down the servers. Like WTF, at least open-source the thing…
They always force me to get the 80$ lenses… Still pretty cheap, but it ends up more around 100$ so I only change every couple years.
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.
Hay is basically cut grass, straw is the part leftover from harvesting wheat and taking the seeds. Both are baled, but they’re used for different things. Hay is food for any animals that eat grass like horses and cows, buy straw is not edible so it’s used as bedding.
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.
Owner of 2 pinecils here, there are buttons and a display that shows the current temperature and other stuff. I only just learned that there’s an app, it works more than fine on its own, out of the box.
I got that specific iron because I needed to power it from 12v, and it works very well on the USB PD power supply I already have for my laptop.
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.