Well if you need something to work with Fortran…
Well if you need something to work with Fortran…
The whitespace doesn’t bother me at all, but holy hell! Any time I’m trying to understand a Python program/library that’s anything above a couple thousand lines of code, I instantly feel a burning hate for dynamic typing.
I love Python for scripting- in large part because of dynamic typing. IMO it’s just not a language made for building large infrastructures.
Sorry, but I honestly don’t get it. I I were to point out the crown jewel of open source, it’s gcc. gcc is the backbone and survival condition for so much modern industry that it’s not even remotely funny.
Take away gcc, and the world will likely burn for a substantial amount of time until people start making in-house or proprietary alternatives.
Being a phd. myself, I would say it seems likely that the person in question wasn’t aware of the research/sweeps that had been done, and was searching through literature with the express purpose of finding out what kind of work had been done on the subject, when they came across this data.
The way I usually find out about a research campaign is by reading articles from said campaign. It’s very rare that I’ll need to reach out to the authors to ask for more data than what is available in their publications.
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.
Don’t do that in Norway either - just bad luck if the holidays happen to land on a weekend. On the other hand, we have five weeks of paid vacation, and holidays are not counted into those, I’m not sure how that’s done in other countries?
The whole “maybe if the homework can be done by a machine then its not worth doing” thing is such a gross misunderstanding. Students need to learn how the simple things work in order to be able to learn the more complex things later on. If you want people that are capable of solving problems the machine can’t do, you first have to teach them the things the machine can in fact do.
In practice, compute analytical derivatives or do mildly complicated addition by hand. We have automatic differentiation and computers for those things. But I having learned how to do those things has been absolutely critical for me to build the foundation I needed in order to be able to solve complex problems that an AI is far from being able to solve.
Right… Im not even able to keep track of the months anymore…
I’m honestly just thinking that at some point they must have pushed it too far. The media is calling this a “retaliation strike” but fail to mention that the missile exchanges with Iran started when Israel “assassinated” a Hamas top in Iran using a bomb last year, with a bunch of collateral casualties.
Like… what does it take to convince all their neighbours to start a ground war in Israel, and for the west to simultaneously look the other way? It looks like they’re trying their best to find out.
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.
They might have to deal with her actually upholding the ultimatum that’s been put forward regarding letting aid into Gaza.
They might even see her take make a stand and actually stop or restrict weapons exports and stop tip-toeing once she’s safely elected.
I’m not making any promises, but those are all at least hypothetical possibilities if she’s elected. Not so much if Trump is.
Sees like Israel is banking 100 % on trump winning the election. They know full well that the US won’t put anything behind their demands just weeks before the election, and if Trump wins, all demands will be thrown out the window.
My guess is that they’re thinking they can keep pushing it for a couple more weeks, and if Kamala wins, they’ll deal with that then.
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.
*Breaks the law
*Is convicted
*Refuses to pay fines
*Stops receiving funds
*shockedpikachu.jpg
At this point I really can’t understand what is driving Orban anymore. He obviously must have known this would happen, and is likely doing it on purpose so that he can point at the EU as the “bad guy” back home, but like… what does he gain from this? Isn’t it better to just get a shitload of free money from the EU that you can funnel to your friends and family than to not do that? If he legitimately dislikes the EU he can just leave.
Maybe he’s just sticking around as long as he can grab cash? It kind of seems like he’s going for the “see how far you can push it before you’re kicked out” play. Essentially trying to find out how much of an obstructing, law-breaking, corrupt asshole he has to be before the rest of the EU finally has enough and kicks him out, at which point he can peace out to some safe-haven (I’ve heard there are spare rooms in some of Putins palaces).
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…
I’m not quite sure what assumptions you’re talking about, but I do want to hear what you have to say.
What you’re answering to is about opposing external hostile forces, that wasn’t what I was talking about. I’m talking about internal criminal environments that are dispersed in the population and make a living off anything from fabricating documents or scamming people to trafficking or smuggling. Just like modern organised criminal environments, these are not groups you can “wage war” against.
My question is related to how these will be dealt with if not by involuntary imprisonment/re-education/some other involuntary and enforced way of preventing them from exploiting society?
Ok, I’m only really having issue with the “which shouldn’t be hard” part. What makes you think that violent response from an anarchist society would be more effective than the police/justice system in a modern state?
These groups exist today, and it turns out that making them crumble by arresting (or, in some countries, executing) their members is a significantly non-trivial task. That’s when you have an organised force opposing them, which doesn’t need to deal with internal disputes the way an anarchistic force would need to.
Wow, you really must be an actual idiot. I’m honestly kind of impressed.