I blow hot air.

  • 0 Posts
  • 30 Comments
Joined 1 year ago
cake
Cake day: July 6th, 2023

help-circle

  • You probably already know this, or are talking about another language, but JavaScript is inherently single threaded, so unless you’re running blocking I/O in parallel, you won’t actually see any performance boost. Service workers get their own thread though.




  • Vent@lemm.eetoProgramming@programming.devProgramming Sucks
    link
    fedilink
    arrow-up
    15
    ·
    edit-2
    7 months ago

    Oh, it’s drag-and-drop only with no keyboard support whatsoever. Changing a variable is hidden beneath 12 menus, and it uses a proprietary IDE that locks up after every click. Looks great in screenshots though!

    You can 100% fire all your developers!*

    *As long as your business users have loads of free time and the skillset of developers.










  • The article is not talking about async processing. It’s talking about the process scheduler and thread blocking. It even has a section titled “Real-time Scheduling” that talks specifically about the process scheduler.

    It’s simply not possible to fit the author’s definition of real-time without using something like an RTOS, and the author seems to understand that. The main feature of an RTOS is a different scheduler implementation that can guarantee cpu time to events. The catch is that an RTOS isn’t going to handle general purpose usecases like a personal computer very well since it requires purpose-built programs and won’t be great at juggling a lot of different processes at the same time.


  • This is a ridiculous definition of “real-time”. To accomplish this you’d need to subvert the kernal’s scheduler, otherwise you’ll always end up with “unbounded” response times since a single program can’t control what else is running or which clock cycles are allocated to it. What you end up with is an OS that only runs one process per thread.

    I’m tempted to abandon using Windows, macOS and Linux as the main platforms with which I interact.

    Yeah, okay buddy. And I’m tempted to stop eating and sleeping because I’d like the extra free time.