I’ve heard this explanation before as well, that essentially nobody felt any loyalty to the national government. You could kind of tell why when the whole government just evacuated the country when the west left.
I’ve heard this explanation before as well, that essentially nobody felt any loyalty to the national government. You could kind of tell why when the whole government just evacuated the country when the west left.
Are you suggesting that a new coalition goes back to Afghanistan to throw out the Taliban again? Remember how popular that was last time?
It just doesn’t stop baffling me how quickly the Afghan army folded to these people and accepted this as their future… just tragic all around
I’ve been wondering for a while: What is preventing a bunch of not-drowning-in-corruption countries from just not recognising FIFA any more, saying they’re sick of the blatant corruption, and starting their own international association? I would think you could get a lot of the major football nations to support something like that, because it looks like it’s mostly Quatar, Saudi-Arabia and the likes which benefit from the current system…
Totally justifiable IMO. In my day-to-day life its much more important that my shit works when I need it to than that I get whatever potentially something-breaking latest hotfix patch for everything on my system. Put simply: My OS, and the packages I use, work. If I don’t update, I’m sure it will also keep working. When I have time for an update to break something, or want to pull in some new feature or patch, I’ll run an update.
I mean, it’s no secret that a bunch of countries are running massive disinformation campaigns in order to divide the populations of western countries. Attempting to destabilise another country by propping up certain political factions is a tactic that has been employed across the world for at least the past century (see: Lenin, and how he got in power).
Of course, we are responsible for ensuring that we do not become fascist states, but acting like theres no outside influence propping up the fascists is naive at best.
I guess, but the again, pretty much any sentient creature could tell you that drinking the marshy water with dead stuff in it is a bad idea. That’s a pretty basic survival instinct that I think we had figured out well before we had modern science.
I feel like it has something to do with the fact that there’s less content, so when you post something, it’s actually going to be seen by people.
I didn’t post or comment anything the last couple years on Reddit, largely because it increasingly felt like shouting into the void.
This is so facinating! I remember hearing about this around 2016 when they did excavations, but didn’t know they found the guy already in the 1930s. It’s just awesome that the story of how this person died has survived a thousand years through the sagas.
I do think it’s a bit weird that the article focuses on whether he had some disease though- obviously throwing a dead person in the well is going to make the water undrinkable, regardless of whether said person was sick when they died…
I am/was in the same boat as you: For a long time, I just didn’t care that I was giving away a bunch of information in return for convenience, and didn’t get why people cared so much.
I don’t really know what triggered it, but at some point I became painfully aware that the only goal these companies have is to squeeze every possible penny out of selling me. I started noticing that the stuff they ask you to confirm is 95% stuff they want because they can sell it, or use it to get you hooked to their service, and 5% (at best) stuff they need to make the service good for you.
This triggered a change in my perspective: Now it pretty much makes me sick to my stomach to think about all the companies that are drooling over me, trying to make a buck by getting me to click something I’m not actually interested in, or don’t actually need.
These people have a vested interest in manipulating me, and by giving them my data, I’m giving them the tools to do it. I don’t want to be manipulated or sold as a product: That’s what made me start caring about protecting my data.
This will sound dumb, but I’m saying it sincerely.
I’ve had similar issues (without getting into details), but what worked for me was getting outside a couple times a week. By that I mean bringing a tent or hammock + tarp and sleeping outside a couple nights a week on workdays.
To be specific: I sleep outside Monday-Tuesday and Wednesday-Thursday. On those days I also make my dinner at my campsite. What I’ve found is that my brain goes into a much more “primal” state of “monke outside in cold, monke get shit done”, and that it propagates into my day and week.
The barrier to this is of course actually going outside, but I’ve been able to get to a place where I have a “deal with myself” about those two nights a week. I always have my pack ready, so it’s just about grabbing it and heading out- I think that’s key.
I’m not saying this is a solution for everyone, but it’s done wonders for me. As of now, I get restless and feel bad if I’m in a situation where I can’t get outside at least once a week. It brings me a peace of mind and will to get stuff done that nothing else can.
I’ve never had an issue with this before, and as of now, my filter is catching most of these mails, so in that sense it’s not too bad. Unless the topic of the phishing attempts suddenly changes completely, in which case I’ll have to start building the filter again…
Anyway: The scam they’re running is relatively specific (a specific banking-thing that pretty much everyone in my country uses, written in not-English, probably LLM generated). Do you know if there’s any way I could alert my email-provider about this? I can imagine it’s being sent to quite a few people, and should be relatively easy for someone higher up the chain, with more sophisticated tools, to filter out.
Since you chose to point it out: My reason is that I regularly need to be able to log into things on a non-personal machine, sometimes without access to my phone. So no, a password manager for all my accounts is out of the picture. I either write stuff down, remember it, or - sometimes - forget it and need to reset my password.
Thanks! I’ll definitely look into that, though the only issue I can imagine is keeping track of which email that goes to which service (I’m one of those kinds of people that uses “Forgot my password” effectively as a password manager, don’t hate me for it, I have reasons).
Thanks! There was nothing there, so it may be from an older breach like you suggested :/
Holy shit! It looks like a bunch of “gangs” (more like militias) are successfully extorting the entire country…
I would say “debunked” in the sense that quantum mechanics correctly predicts phenomena that don’t exist in classical physics, and relies on the idea that quantum particles obey a probability distribution, rather than deterministic mechanics.
Quantum mechanics appears to work so well for these phenomena compared to deterministic mechanics that it’s tempting to say that the actual universe is in fact governed by probabilities rather than determinism.
I would argue that all physical models of the universe are just that: Models. We can get asymptotically closer to a perfect description of the universe, but no model can ever tell us the true nature of the underlying system it is describing, just be an arbitrarily good description of it.
That’s what major versions are for - breaking changes. Regardless, you should probably be able to fix this with some regex hackery. Something along the lines of
new_file_content = re.sub(r'(?<=\bprint)(\s+)(?!\()', '(', old_file_content)
new_file_content = re.sub(r'(print\(.*?)(\n|$)', r'\1)', new_file_content)
should do the trick.
For someone starting out, I would say that a major advantage of Python over any compiled language is that you can just create a file and start writing/running code. With C++ (which I’m also a heavy user of) you need to get over the hurdle of setting up a build system, which is simple enough when you know it, but can quickly be a high bar for an absolute beginner. That’s before you start looking at things like including/linking other libraries, which in Python is done with a simple import
, but where you have to set up your build system properly to get things working in C++.
Honestly, I’m still kind of confused that the beginner course at my old university still insists on giving out a pre-written makefile and vscode config files for everyone instead of spending the first week just showing people how to actually write and compile hello world using cmake
. I remember my major hurdle when leaving that course was that I knew how to write basic C++, I just had no idea how to compile and link it when I could no longer use the makefile that we were explicitly told to never touch…
If there’s any American reading this: Please vote. The world needs you and all your friends to vote. I’m begging you, please get out and vote.