

I think it also comes down to the fact most people aren’t going to label the transaction “illegal drugs”. But it does make it easier to track payments and build cases against people (or oppress people depending on the government/police).
I think it also comes down to the fact most people aren’t going to label the transaction “illegal drugs”. But it does make it easier to track payments and build cases against people (or oppress people depending on the government/police).
Yep, bind mount the data and config directories and back those up. You can test a backup by spinning up a new container with the data/config directories.
This is both easy and generally the recommended thing I’ve seen for many services.
The only thing that could cause issues is breaking changes caused by the docker images themselves, but that’s an issue regardless of backup strategy.
Not sure how much I trust Trump, but yeah Mike Lee (who introduced the bill) is someone who just likes introducing bills. The fact no one else joined him means this article and conversation is about all he could expect to actually happen.
Really you should have it direct to a clone of the site, but with fake accounts pushing whatever agenda you want.
I don’t expect DHS pushback (policy wise), but I do suspect they won’t get all the money Trump was asking for.
There is also a lot of belief that the BBB won’t get settled before July 4th. Given that it’s still getting passed back and forth between the house and senate and they only have next week.
This may be more of an opinion, but Trump hasn’t really done anything too crazy when it comes to money (the biggest line I think he crossed was moving some defense funds around for his wall in his first term).
As for the starting a war without congress. That’s a tricky one. Technically the US has given a lot of emergency powers to the President so that he could potentially drag the US into a war, but to sustain it would require acts of Congress.
From my recollection, and I could be wrong, the major issue is that passing the budget has gotten intertwined a bit with the Big Beautiful bill. This is largely due to issues around tax breaks and other legislation in the BBB having budget impacts. So I had thought that the general consensus was the BBB would need to pass before there was a chance of the budget going forward, but I may have some of those facts backwards.
That budget hasn’t been passed yet to my knowledge. Not to mention the president’s budget request never makes it through, as the house and senate always have their own priorities.
It’s cause he can’t dictate that. Tariffs are just income to pay bills, congress sets budgets and even they aren’t too happy with a budget that’s increased spending. So it’s even likely his increases to ICE DHS that he requested won’t make it through.
He could try to siphon money from elsewhere, but that’d just get caught up in the courts (and he’d probably loose as congress owns the purse).
Yeah, it feels like Iran would be more like the end of Vietnam in terms of public opinion.
I also don’t think Iran is going to do anything to make war more appealing (especially given they can just focus efforts on Israel).
Yeah, that would be my recommendation too. Anything else will produce a worse experience (laggy and slow) and more complexity to get setup/maintain.
Yeah, I thought the big problem was mixing good and bad morrgages together to make the securities look like a higher quality mixed with somewhat unrestrained lending. So you had securities with high ratings containing junk mortgages passed around as a financial asset. When mortgages started to default, all those “high quality” assets began to sour.
Essentially securities are just an asset vehicle and have no intrinsic issues, it was how mortgage securities were being packaged that was an issue.
I mean, this has always been true, the drones only close the gap by miles. The big issue with the drone attack was Ukraine ability to sneak explosives deep into Russian territory. The delivery mechanism of drones may make it more accurate, but it could have been rockets/mortars and the effect would have been the same.
Yeah, I was going to say that TV wasn’t much of a news source to begin with. The real issue is that social media for news is probably worse - now everyone can be spoonfed the news they want.
Some of the commands I use a lot for debugging containers, in case you go down that route:
docker run --rm -it --entrypoint bash <image_name>
docker exec -it <container_name>
Once you know how to use docker/containerization it’ll be the only way you want to deploy applications. Most popular applications will also have good guides on how to setup/config the container, but sometimes you’ll need to read up on docker and Linux to figure things out.
Given how long this plane was in service (over 10 years), it’s going to be harder to prove fault is on Boeing here.
My guess is that it was an actual accident with no one really at fault, or it was some issue with maintenance on the aircraft. But I’m not aerospace engineer.
It’s actually gotten worse. The management of CNN changed recentlyish and has been pushing CNN more to the right. I think it was to increase viewership, but ultimately just means the quality (not that it was very high to begin with) has dropped.
I love the dichotomy of calling them riots and then the only people causing any chaos or harm are the police.
Edit: Specifically calling out the news video that autoplays on their site.
Looks like there is a config and cache location in their docker scripts. The easiest way to make a docker application portable is to bind mount the config and cache. That way you have access to the actual files and could copy them to your windows partition.
If you’re already using a volume for that data, I think it becomes a bit trickier. I know technically you can move or copy volumes, but I’ve never tried. Although you could still bind mount a random directory and still copy the files out.