PaX [comrade/them, they/them]

Very tired nerd who doesn’t know how to speak correctly

Ask me about floppa, Plan 9, or computer architecture or anything computers really (if you want)

The only zoomer qualified to operate an RBMK reactor

:cat-vibing:

If I don’t reply to you it’s probably cuz I’m too tired, sorry :(

  • 0 Posts
  • 14 Comments
Joined 3 years ago
cake
Cake day: July 15th, 2022

help-circle


  • PaX [comrade/them, they/them]@hexbear.nettoProgrammer Humor@lemmy.mlEDitor wars
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    1
    ·
    edit-2
    9 months ago

    If you like Unixy editors, highly recommend also looking into acme

    Russ Cox describes it in this video as more like an “integrating development environment” as in it works with your surrounding operating system rather than an “integrated development environment”

    Doesn’t shine as much on Unix as in Plan 9 though. Also no linter or formatter built into or distributed with acme but you probably could get your language’s usual tools to work pretty well with it



  • He rented all types of servers around the country in the cloud and designed a denial of service (DoS) attack

    doug-clap What a uniquely skilled individual!

    His feat did not go unnoticed. Over the next year he had meetings with officials from the United States Cyber Command, the branch of the armed forces dedicated to this field. He also met with officers from the Marines, the Space Operations Command and intelligence (NSA). Cáceres shared with them the keys to his successful operation and told them that, in his opinion, similar operations could be carried out with small commandos of two to four hackers. That would give them agility, autonomy and the ability to react.

    Me, a cyber-commando, dressing up in full tactical gear, ready for anything, for the trip from my gaming chair to my refrigerator to get beer while I watch my rented Azure servers send spam to a small country’s routers

    He tried, but failed. “To do anything you need authorization, which takes six months to get. And when you get it, what you wanted to do no longer works. That is the reality here in the U.S.: we have very, very good people working on our cyber defense, but they are hogtied. They can’t do anything, even though I know we have the resources to do a lot.”

    Smh our bureaucratic government won’t approve my request to start a war with the DPRK from my couch

    If he did this to any other small nation, especially a US-aligned one, he would be charged with a serious crime. The US can’t openly do electronic warfare but they can stand by and watch this clown do what basically amounts to cyber-terrorism, a least for a little while

    Anyway, now that he doxxed himself I hope the DPRK actually gives him something to fear lol

    Also

    And ever since he took down the internet in North Korea, he has also been approached by the National Security Agency (NSA). Everyone wanted to know how he did it.

    Lmao

    This is peak journalism, they obviously took him at his word






  • Programmers can trust language security features too much…

    Of course, they’re nice to have and really can make things easier to implement securely but it’s still very easy to introduce security problems or bugs into any code. This is just an unsolvable problem of writing imperative code. All imperative code will reliably have memory leaks (even in Java!) and security holes because no compiler can check to see if you thought of everything.

    And large and complex compilers/interpreters with these security features can end up introducing their own security problems or bugs in the process of implementing them.

    I’m just tired of people entirely dismissing languages like C because they don’t have these features. Especially when the operating systems their code runs on and their languages may even be implemented in C!




  • Sorry, I should have been more clear. I agree with you. I’m not talking about text-based interfaces and commands. I just mean the way Unix/POSIX handles “terminals” (devices that accept streams of characters according to a protocol established in the 70s) is an antiquated way of handling simple plain text streams. It made sense back then when there was a need to send commands to dumb terminals in-band with the plaintext but this doesn’t really make sense these days when your “terminal” is actually just a program pretending to be a dumb terminal running inside a window. When was the last time you used job control instead of opening another window?