Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

Neurodivergent devs: what languages actually *click* for your brain?

Uncategorized
42 14 0

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    5 Posts
    27 Views
    @Dendrobatus_Azureus my wet dream. HaikuOS rebasing on DragonFlyBSD (a HaikuBSD 😈 ), leveraging Hammer2 and kernel-level message-parsing/LWKT, and a more modern kernel and system design.
  • 0 Votes
    1 Posts
    9 Views
    do you have art? do you want to put it on a website, that *you* own, for cheap-as-free?im writing a program for that! you just drag and drop your art into a folder, and run "galleryify", and it generates html for each image, and adds everything to a thumbnail gallery. you can group with tags and style everything however you want, too.it outputs static html, so you can upload it to neocities or nekoweb or basically any free web host. the tradeoff for being cheap-as-free is that there's no server-side interactions (e.g. no comment section).i need testers! if this sounds good then please comment and let me know your level of comfort with art and with html.https://nycki93.github.io/eleventy-image-gallery/if you just wanna know "the stack", this is made with NodeJS and Eleventy. if that doesn't mean anything to you, dont worry about it.EDIT: wow, a lot of you said you'd be interested in testing! Okay, I've just put some usage instructions up on this page, please try it out and let me know how it goes!https://github.com/nycki93/eleventy-image-gallery/#website #art #code #programming #html #heycohost #eleventy
  • 0 Votes
    1 Posts
    6 Views
    Sometimes I wander into wonderful rabbit holes.This week's adventure, "What’s the fastest way to multiply two 32-bit numbers on an ARM Cortex-M0 CPU?"If you're thinking Karatsuba multiplication (https://en.wikipedia.org/wiki/Karatsuba_algorithm), you’re wrong.While Karatsuba offers a lower asymptotic complexity (around O(n^1.58)), it only pays off when used recursively on larger integers.On the Cortex-M0, Karatsuba runs much slower than the plain naïve multiply. It turns out, simplicity wins at this scale.Godbolt Source:https://godbolt.org/z/4rP7bnv6r#programming #math
  • 0 Votes
    12 Posts
    17 Views
    @silverpill @scott @phnt sounds good - like I said, the licensing is totally up to you!personally, I prefer permissive licenses over copyleft stuff in all my projects. for me, it's a lot of extra work + research time that isn't on the codebase...note that, in Rust, it's sometimes *a lot* of extra work, so do be mindful that you might limit adoption and widespread usage. if that's what you're aiming for (in terms of corporate/private usage), it's probably a good pick! :Dyou might also provide a dynamically linked MIT wrapper w/ `cargo-add-dynamic`. just saves everyone some time lol https://crates.io/crates/cargo-add-dynamic