I disagree. Python is not “esoteric” when making objects. The syntax is certainly easier than in Java.
I disagree. Python is not “esoteric” when making objects. The syntax is certainly easier than in Java.
As AMD, Intel, Tenstorrent, and other companies develop better hardware, more software developers will be inclined to design for these platforms, and Nvidia’s CUDA dominance could ease over time. Furthermore, programs specifically developed and compiled for particular processors will inevitably work better than software run via translation layers, which means better competitive positioning for AMD, Intel, Tenstorrent, and others against Nvidia — if they can get software developers on board. GPGPU remains an important and highly competitive arena, and we’ll be keeping an eye on how the situation progresses in the future.
I hope this plays out like this. Compete on the hardware and provide open source access to acceleration. If you provide the best value for the hardware, people will continue to buy it over your competitiors.
Heyyy its your super duper new project manager! I hope you are feeling a-mazing because you are my a-ce on the team. Anyways i need you to do things twice as fast, because we are running low on budget after sales promised another feature without extra billing and the CEO already signed off on it. Please make this happen somehow. If this project isn’t succesfull i’ll get fired and have to sell the house. But no pressure!
It is both.
Germany often sees reckless driving compared to its neighbouring countries in similair road conditions. Lack of enforcement and small penalties do play an imporant role in that. The infrastructure is similiar, but other countries actually enforce things like speed limits much more actively. At the end of the day if bad driving equals unsafe driving, the person shouldnt drive.
I’m in Germany
The rules for driving demand to keep at least enough distance to the vehicle before you, that you can safely perform an emergency break, if the vehicle should do so too.
In driving ed i learned that you need to keep at least 2seconds distance to the car in front of you, one second to react and one second to perform a similiar break maneuver like them. If your vehicle is heavier you need to increase that distance.
Whenever i drove like this the only result was people taking it as an invitation to swear in between the car in front of me and me. I want undercover cops in plain cars to just drive and record everyone violating the safe distance or takeing the space that is left as safe distance. We could resolve muncipal debt and drop the amount of deadly accidents by at least 50% this way.
in this process it is just normal to get runtime errors. Your expectation is too high imo.
So which is then? You want a one off script to just quickly crunch some numbers on a problem you still need to understand? Because that is where it is perfectly normal to get some errors and doodle around. That is the entire point of it.
Or you have a concise concept of what you are going to do, and how and why? Because that is what you do, when you program more than a “one off”.
Either you go to the store with a shopping list and you work through that list or you go browsing and see what comes up. But don’t expect to be as fast and have everything you needed, when you dont write your shopping list at home.
This is not the engineers fault though.
It is highly political projects, politicians offloaded their old friends and competitiors onto the boeards and other functions and in the case of the airport major planning was undertaken by a guy who is a technical drawer and not an engineer.
Most of these fuck ups could have been prevent, if the project management was done by project managers with an engineering background and if the owners side would have been represented by peoplewith a technical backgrounds.
Source: i have worked in civil engineering for public projects. We wasted 50% of the time explaining Politicians and MBA bros C-levels why they can’t start by building the roof and why replanning half the stuff is a bad idea, when we are already on the market with bids for contractors.
This is brilliant.
I meant in the sense, that if you had to install a new OS on a device, doing a beginner friendly linux distro is easier than bypassing TPM requirements and then dealing with the fallout of that in Windows 11.
I trust you not to ask your aunt to install an OS by herself.
That sounds a hell lot more complicated than installing a linux distro like mint or ubuntu.
90 weeks is more like 20 month and i could calculate that off of my head by knowing that a year has 52 weeks. I would have struggled more with days.
You could make this criticism about any date metric that it gets more or less easy to translate into a different metric.
Weeks are perfectly fine and most commonly used in the business context.
There is criminal, not civil courts, that were sucessfully drowned in the cum-ex robberies. They gave up on prosecuting people who stole billions from the federal budget, because they were unable to process the amount of files brought by the defense, before the statue of limitations expires.
So if even prosecuting theft of billions of Euros is subject to this tactic smaller civil cases can be too. And the court, because of their lack of technical understanding struggle to assess which files are relevant and which aren’t.
Yeah. This is going to be noticed in Tech blogs and news sites, but it wont make it to the mainstream news. Even if some mainstream newspaper might notice it and want to write a small article about it, they most likely will repeat the corporate response about some evil hacker messing with their product.
The problem is that it can still work in Germany to just pile the defendant under too many files to process with his ressources. This is not the case in stuff that courts understand, like say a traffic accident. But for anything technical/IT/IP related German courts are terribly incompetent and unable to create a fair case.
Especially regarding IP related things like streaming or torrenting movies, there is a myriad of ridiculous court decisions. The default unfortunately seems to be to just assume the corporation to be in the right, because it is a corporation and surely they must own the IP and lose a lot of money from the evil hackers.
i could see it as a difficult thing to get hired in the same position after burning things down when leaving.
you have the same problem with downloads though. In the end any download rate exceeding your disc write speed doesnt get you there faster.
ofc. you can write as you download, which makes things faster.
example:
i = 5.0//2
list[i]
throws an error because i is double and the list-index expects an integer.
so for it to work the code needs to look like this:
i = int(5.0//2)
list[i]
meanwhile this works:
i=5
i= ‘abcde’
Then help me understand please. What do you mean by “esoteric” in regards to oop in Python compared to a language better suited for it?