It’s a fork bomb. It exponentially forks processes in the background in an attempt to consume all CPU cycles.
- 0 Posts
- 16 Comments
Skyhighatrist@lemmy.cato Technology@lemmy.world•Nginx core developer quits project in security dispute, starts “freenginx” forkEnglish5·1 year agoYour spoiler tag works fine on the web client. That is the supported way to do spoilers on Lemmy. However, Sync, if you use that doesn’t support Lemmy spoilers and only supports reddit spoilers. Unfortunately no matter what spoiler method you use, it will not work for someone, somewhere. There is no unified spoiler markup across the fediverse, but there really should be.
Skyhighatrist@lemmy.cato Technology@lemmy.world•Why Charging Your Gadgets Over 80% Is Such a Bad Idea | iFixit NewsEnglish11·1 year agodeleted by creator
Skyhighatrist@lemmy.cato Technology@lemmy.world•Spotify just changed their TOS, giving them unprecedented rights to create "derivative works" from audiobooksEnglish7·1 year agoI saw this getting traction on Tik Tok a few days ago warning rightsholders they have until, I think, Mar 5th to pull their content from the platform.
Skyhighatrist@lemmy.cato Technology@lemmy.world•Your AI Girlfriend Is a Data-Harvesting Horror ShowEnglish7·1 year agoKrieger (The character int he GIF) built himself a virtual girlfriend. https://youtu.be/lMbq_Oar7gA
Skyhighatrist@lemmy.cato Programmer Humor@lemmy.ml•and when it sucks, devs get all credit6·1 year agoIn every dev job I’ve ever held it’s been me or one of the other devs doing demos (usually me though). Granted I haven’t worked on anything truly high profile that a demo would be An Event.
Skyhighatrist@lemmy.cato Technology@lemmy.world•Microsoft stole my Chrome tabs, and it wants yours, tooEnglish3·1 year agoIt’s shitty for sure, and I definitely think Chrome needs to die, or at least have better competition. Sadly, not enough users are using non-chromium browsers, that they don’t see a problem with using chrome only features. It sucks, and it’s going to lead (is leading) to the further enshitification of the web. I’m doing my part by using Firefox, and any web application I develop is guaranteed to work in Firefox.
Skyhighatrist@lemmy.cato Technology@lemmy.world•Microsoft stole my Chrome tabs, and it wants yours, tooEnglish36·1 year agoThey won’t answer, because they can’t answer.
For me, I’ve noticed a few websites that complain that firefox “is an out of date browser, you should use something more modern”. My bank’s website does that, but still works fine as far as I’ve been able to tell.
Skyhighatrist@lemmy.cato Technology@lemmy.world•Microsoft stole my Chrome tabs, and it wants yours, tooEnglish261·1 year agoBut what, practically, is the difference? If more and more websites use shit that only works in Chrome or Chromium based browsers, the effect is the same. The web doesn’t work as well for Firefox users.
Skyhighatrist@lemmy.cato Technology@lemmy.world•Stop using Opera Browser and Opera GXEnglish6·1 year agoYeah the surprise in this thread is surprising to me. I’ve considered Opera to be untrustworthy for years now.
Skyhighatrist@lemmy.cato Technology@lemmy.world•Middle school removes bathroom mirrors to stop kids from making TikToksEnglish2·1 year agoBloody Mary.
Skyhighatrist@lemmy.cato Technology@lemmy.world•Scientists Use WiFi to See Through People's WallsEnglish1·1 year agoSadly lots of features are not working on kbin, or less specifically various services in the fediverse. One example is spoilers. Last I checked there is no consistent spoiler syntax that works across the fediverse, and so spoilers are dangerous territory. Hell, even some apps don’t handle spoilers appropriately just for Lemmy.
Skyhighatrist@lemmy.cato Technology@lemmy.world•Jeff Bezos plays down AI dangers and says a trillion humans could live in huge cylindrical space stationsEnglish5·1 year agoSo an O’Neil cylinder exploits rotation to simulate gravity. When set up properly it feels just like gravity we’re used to here on earth. That should at least help curb the effects of microgravity. Radiation shouldn’t be much of a problem as people would be living on the inside of the cylinder with meters of material between them and outer space.
Skyhighatrist@lemmy.cato Technology@lemmy.world•Salesforce Signals the Golden Age of Cushy Tech Jobs Is OverEnglish1·1 year agoAre you using a VPN?
Strange, I just tried and got the vi suggestion. And, googling vi gave me an emacs suggestion. So shade all around!
That’s really only native compiled languages. Many popular languages, such as C#, Java, etc. Lie somewhere in between. They get compiled to intermediary byte code and only go native as the very final step when running. They run in a runtime environment that handles that final step to execute the code natively. For .NET languages that’s the CLR (Common Language Runtime).
For .Net the process goes like this:
- You write the code
- Code is compiled to MSIL
- At runtime when the MSIL is executing a JIT (just-in-time) compiler translates the MSIL into native code.
- The native code is executed.
Java has a similar process that runs on the JVM. This includes many, many languages that run on the JVM.
JavaScript in the browser goes through a similar process these days without the intermediary byte code.Correction, JS in modern browsers also follow this process almost exactly. a JIT compiler compiles to bytecode which is then executed by the browser’s JS engine. Historically JS has been entirely interpreted but that’s no longer the case. Pure interpreted languages are pretty few and far between. Most we think of as interpreted are actually compiled, but transparently as far as the dev is concerned.Last, but certainly not least, Python is also a compiled language, it’s just usually transparent to the developer. When you execute a python program, the python compiler also produces an intermediary bytecode that is then executed by the python runtime.
All that being said, I welcome any corrections or clarifications to what I’ve written.
The tooltip for fedipact says: “Agreed to block all communications (their blocklist is private)”
To me that says, they’ve agreed but it’s not confirmed that they’ve gone through with it because the blocklist is private. Blocked on the other hand says “All communications are blocked”