• 13 Posts
  • 537 Comments
Joined 2 years ago
cake
Cake day: June 6th, 2023

help-circle





  • Sometimes a Fey mood takes me and a fun idea grabs hold of me so hard that I program day and night for days until I run out of steam and wonder what made the idea so great.

    Usually though, my programming consists of patching things broken by a library update. Whoops there goes my desktop. Whoops there goes my dashboard. An hour here, an hour there.

    I’ve gotten into microcontrollers and zigbee devices these days, and this is turning into a gentle interest I can tinker with





  • Big Endian    Little Endian:
     
     "1010"         "1010"
      ||||           ||||
     [1248]         [8421]
    
     (sum the numbers 
      corresponding to a 1)     
    
     1+4=5          8+2=10
    

    Depending on whether the order of binary comes from the left (Big Endian) or from the right (Little Endian), the binary number of “1010” can equal 5 or 10


    (My original comment was buzzword nonsense though)





  • Different distirbutrions subscribe to different “key servers” (is that the right term?) to validate that the packages they’re getting have been signed by the right people, and not by Dick Dastardly and his crew. LibreWolf isn’t your typical Linux package, but probably on the same trustworthy level as some of “extra” packages found in other repos. My guess would be Mint subscribes to the key server where the LibreWolf dev’s key exists, and Ubuntu doesn’t because Ubuntu has a very Ubuntu™ way of doing things (I’m being a snob here).

    So I think if you really want to use LibreWolf, you will have to manually subscribe to the keyserver where the LibreWolf’s dev key is, or manually import the key yourself to validate the package.

    Anyway, welcome to the wacky races




  • Yes, we should all use rigid types. Name me one language you actually like writing quickly with that has types?

    Pyth-oh. Bash-oh. Lisp-oh. Perl-oh. Oh yeah… typed languages suck because of all the boiler

    Edit: Fine, Python / Lisp / Perl are all technically “typed” languages, but I ask you what’s point of throwing type errors at runtime. Javascript and Rust actually have it right here that the code is either going to run, or it simply isn’t. No pussyfooting letting it run first to throw complaints