I’m a software engineering developer from Ottawa, Ontario, Canada.

  • 3 Posts
  • 28 Comments
Joined 1 year ago
cake
Cake day: June 6th, 2023

help-circle




  • Lambda@lemmy.catoScience Memes@mander.xyzColours of Blood
    link
    fedilink
    English
    arrow-up
    17
    ·
    17 days ago

    Whenever I see this image I always wonder 2 things:

    1. What makes hemoglobin more efficient?
    2. Why do we even need these fancy molecules to transport oxygen? Can’t we produce some kind of biological ampule that holds some pure O2 for consumption by the various processes that need it? We have dedicated organelle structures for similar tasks (i.e. mitochondria)





  • If you read the readme, this looks like it’s specifically for when you don’t know the correct tld or spelling of the site you’re looking for. Google searches often censor sites of borderline legality, but they’ll usually still have Wikipedia articles with accurate links.

    This specifically only redirects .idk domains as a search helper. Could it possibly work better as a browser extension? Maybe. :)



  • My question when I see responses like this is: what genuinely useful new safety features have been added since Ada? It’s ancient and has distinct types, borrow checking (via limited types), range types, and even fixed point types. I’ve always wondered what niche Rust is targeting that Ada hasn’t occupied already. It feels like devs decided that safety was important, c/c++ are too unsafe, need a new language; without ever having looked to see if such a language exists?






  • Yeah, that’s pretty much what I was thinking too. The combination of a c API and a JVM API (and maybe .NET if you’re in Microsoft land?) Hits most FFI available in languages I’ve seen. I can’t think of any language I’ve used that couldn’t Interop with either a c library (.a or .so) or JVM library (.jar). However I’ve never used any .NET system seriously, so I don’t know about them.

    FWIW I regularly remake the same API based game whenever I start a new job working in a new environment to test that my environment is “up to snuff” with my development methodologies. I’ve never needed to port more than API.a and API.jar to play around in any language. I’ve ported that system to at least 100 languages over the years, and while some have more friction than others, and often the c/JVM paradigm doesn’t line up well with the target language, it is always effective.