Skip Navigation

Posts
44
Comments
1629
Joined
3 yr. ago

Just your typical internet guy with questionable humor

  • Deleted

    Permanently Deleted

    Jump
  • mosquitos attracted to a suction

    I'll call that piece "fucking karma, bitch"

  • I fully expect this to become a move to hamper linux, or any non-windows desktop usage, because "we can't trust a user who has full access to their OS" or some other bullshit.

  • "All my successes are thanks to my superior intellect and skill! All my failures are the fault of bad serfs who didn't follow my vision!" - Every billionaire

    When you think about it, it's not too different from how some people treat the current crop of AI, so it makes sense that they're so hypnotized by the promises.

  • My dad showed me the opening paragraph of Don Quixote, from a (Brazilian) 1950s edition he got, which is apparently one of the better translations. It felt like I was trying to decipher some arcane scroll

  • Humanity has a penchant for making "taking some poison" part of social gatherings. This isn't exclusive to alcohol or tobacco, recreational drugs have been a social lubricant for millenia.

  • I wish that was a problem exclusive to the USA :(

    Pretty much the entirety of America (the continent) is suffering with that shit, too

  • Gotta love how the blog is nothing but "We're awesome, data leaks cannot happen with our architecture". Something about advertising too much is making up for lack of actual skill or something

  • Saw this today. It's amazing how these ai companies and the feds don't even bother hiding anymore

  • "What if we took Club Penguin but made it easy for pedos to communicate with children?" - David Baszucki, probably

  • Who do you think spends money on roblox? Kids? Fuck no, it's the pedos and their totally "E for everyone" games experiences and cosmetics

  • "Monkey form"? Now that's new. The idea of the entire validation being the same page that renders the form is interesting, I might try that with some pages

  • Because it doesn't always work with recent news and, as shown by dubyakay, it's not meant to bypass paywalls

  • People don't know what choosing a server entails, because it does matter and a lot of people aren't exactly helpful when they say "just pick any" or "it's like email"

    Server choice matters because:

    1. Server might federate with a limited number of other servers;
    2. Server might be blacklisted by some servers which you might want to interact with;
    3. Servers can be running different versions of software, so people might think about security;
    4. Servers can go offline
    5. Server choice can significantly impact how people perceive you. "Oh look, another tankie from ml"

    So, server choice matters and people coming in from corporate shit don't know how much they need to know to make an informed decision, thus giving up.

  • Nothing short of Luigi'ng all of them will make things better

  • Too late, I'm already rewriting everything in a docker kubernetes rancher node.js container

  • What add-on is that?

  • If it works the same, I'm all for it

  • 1 echo with 100 lines of html and a bunch of "value: " . $somevar . " ;"

  • Yeah, I'm currently kinda afraid to put it down and come back after 1+ week for fear of having no fucking clue what the fuck I was thinking. Won't be the first time, nor the last .

    It's kinda fun, despite some errors leaving me grunting a lot and taking my sweet time to actually fix, mostly related to PDO or SQL shenanigans. Took me over an hour to get a working select * from some_table order by ? Offset ? Limit ?; execute statement. Turns out I had to put the offset and limit variables as parts of the prepared statement's string, otherwise they'd be stringified or something - select * from some_table order by ? Offset '.$offset.' Limit '.$limit.';