Some middle-aged guy on the Internet. Seen a lot of it, occasionally regurgitating it, trying to be amusing and informative.

Lurked Digg until v4. Commented on Reddit (same username) until it went full Musk.

Was on kbin.social (dying/dead) and kbin.run (mysteriously vanished). Now here on fedia.io.

Really hoping he hasn’t brought the jinx with him.

Other Adjectives: Neurodivergent; Nerd; Broken; British; Ally; Leftish

  • 0 Posts
  • 161 Comments
Joined 6 months ago
cake
Cake day: August 13th, 2024

help-circle




  • palordrolap@fedia.iotoProgrammer Humor@programming.devErrors
    link
    fedilink
    arrow-up
    23
    arrow-down
    1
    ·
    4 days ago

    Urge to analyse… rising…

    My first guess would be to take out that semicolon on line 264. JavaScript will often happily take a new line as end of statement if it makes sense to do that, so in theory, that semicolon is not needed. And it might be a Greek question mark your prankster colleague put in your code when you weren’t looking.

    And then I’d be tracing parentheses, curlies, quotes and so on, because that error could be the point the parser gave up trying to make sense of the code rather than where the error actually is.

    And if that didn’t find it, I’d put in a deliberate error at an earlier, known line to see where the parser thinks that error is. If it’s offset by 20 lines, then I know the original error is probably offset by a similar amount.




  • Ah, misleading use of terminology that indicates one thing, but will win in court even if it actually means, or can later be said to mean, another.

    I hope those involved in helping companies win these lawsuits choke on bones from food sold as boneless. Because that won a court case after “boneless” was redefined as a cooking method.

    I don’t want them to choke to death. Just a little lesson, you know?



  • I remember making one of those.

    It had a faux URL bar at the top of both the left and right frame and used a little JavaScript to turn each side into its own functioning browser window. This was long before browser tabs were a mainstream thing. At the time, relatively small 4:3 or 5:4 ratio monitors were the norm, and I couldn’t bear the skinny page rendering at each side, so I gave it up as a failed experiment.

    And yes I did open it inside itself. The loaded pages were even more ridiculously skinny.



  • If the British civil service, even operating under previous administrations, can put together a multi-functioning government domain that runs reasonably well without JavaScript, there’s no reason Google can’t continue to do the same with a ducking web search.

    The former works better with JavaScript, that’s true, but it works OK without and that’s the point.

    Then again, the civil service were ordered to do it largely out of spite because the government didn’t want to give the plebs any excuse for not being able to use the site.

    I’m not sure how to get Google to lose the need for scripting in the same way.




  • The example picture at the top of the article is weird.

    The window title reads “nano” but the software running in the window is Pico, Nano’s now deprecated (and strangely-licenced) spiritual parent. Or it’s Nano hacked to have a Pico header which, while somewhat fitting with the theme, that would be even more weird.


  • One take I saw on it was that he has no case because the local authority were not responsible for the harm caused to him, such as it is.

    Sure, he feels aggrieved because of the local authority’s refusal to accede to his demands to search the landfill, but that’s secondary. Had he never pursued it they would not have had to say no.

    In his shoes, I’d be sick to my stomach every single day, but I might have given up sooner nonetheless. I’m pretty sure that due to sheer bloodymindedness he’s now in deep with various financial backers who were hoping for a return when he succeeded… and now he owes them money.

    Basically, if this doesn’t stop him, I’m not sure he’ll ever stop trying.



  • TL;DR Only if you misunderstand the intent of the word “delete”.

    In the sense of getting rid of the sites themselves, sure, that’ll never happen.

    And in the sense that once you’re known to them you’ll never be forgotten, at least not without a massive lawsuit that you’ve little chance of winning, yes.

    But you can ask Meta to delete your account(s) and everything visibly associated with you to the point that you no longer have a presence on any of their sites, and that’s what this article is about.

    One of the reasons Meta has been creating fake AI-based accounts is because so many people are doing this and they don’t like it and want to make it look like their site is still active. Which is an excellent reason to delete your accounts, even if they weren’t also doing a bunch of other heinous things.

    And you can delete the apps from your phone. You should delete your accounts first though.



  • Sometimes, programs that need to start up an editor will honour the $EDITOR environment variable, which should contain the name of, or full path to, a user’s preferred editor.

    It’s not set by default though, and a lot of things will naturally default to vi or even ed. Something to be set in a .profile, .bashrc or similar.

    $VISUAL is another variable that is used for similar purposes.

    The resemblance to certain two letter commands is not entirely a coincidence.