Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)T

thetaT [none/use name]

@ thetaT @hexbear.net

Posts
0
Comments
55
Joined
2 yr. ago

  • bedroom-worthy hat

  • no m'lady, the fedora stays ON.

  • there's one anime website that I found out about that I feel like is a hidden gem that absolutely noone knows about.

    https://www.miruro.tv/

    no ads, sleek ass design, it's been up for like AGES, the source code to their operation is public, super reliable, idk what else to say

  • tutanota is pretty good

  • make this functionality into a plugin that you publish under a different account, that way you can have this functionality while maintaining plausible deniability

  • who needs archives when you have bazinga startups and record shareholder profits

  • not everything needs to be a dockerized web app for god's sake. just use Nicotine+

  • as a communist, I am very excited for the future of GNOME. let the gosplanning begin. >;)

  • lots of social reactionaries in the comments of that video, sad to see :(

  • if you really looked into Guix, it would proboably be at the top of this tierlist

  • unfortunately no, but you could implement it as a ReVanced patch if you really wanted this functionality.

    edit: wait nvm its in the revanced settings, you can set whatever custom playback speeds you want to appear in the menu

  • thing is, i'd proboably have forked over the money for YouTube Premium by now if my only issue with the YouTube app was ads. its not. the app is genuinely unusable for me if I don't apply the tweaks I need, especially the one to disable Shorts functionality.

    rather than allow users to make these tweaks, google would go on a witch hunt for these apps because it would be unprofitable to allow users to avoid the brainrot that is Shorts, or the many another "features" they've bogged the app down with.

  • Yes. It can. But I believe some other Schemes can actually do this better, and the Scheme->JavaScript implementation for Guile is beyond, beyond unfinished.

    You'll proboably have a better time with Guile Hoot, which compiles Scheme to WASM. It's also unfinished, but it's much more complete and currently making a lot of progress. It's meant to allow Goblins, an actor-based decentralized framework by the same people that made ActivityPub (Spritely Institute), to run on the web.

    Also Guile's lead developer, and Hoot's project lead, Andy Wingo, may or may not be a Marxist - reading his blog, and watching some of his talks, I've noticed some references to Hegel and Lenin, but I'm not quite sure on this. He's also called out sexism at various developer conferences he's been to, from GNU Hackers' meetings to FOSDEM.

    Did I mention Guile is a GNU Project?

  • I like Guile with its compiler tower. You can use multiple languages on the same VM, even using libraries from one language on another, which is fucking cool. The core language for Guile is Scheme, and it supports standards from R4RS-R7RS, along with plenty of built-in SRFIs, some implemented out-of-tree and many of its own Guile-specific extensions.

    For the compiler tower, so far we've got the aforementioned ballin' Scheme implementation, Emacs Lisp, an unfinished JavaScript implementation that doesn't even fully implement ES3, Brainfuck, Python, wonky Lua, and Guile-specific Clojure. Hopefully there's more to come and there's some I missed.

    While the main purpose for the compiler tower is to lower a language into the IR (Tree-IL) (although you can lower a language into another language too, which then itself can be lowered into IR), which gets lowered to more verbose IR (CPS), then bytecode - we can also raise IR through decompilation. For example, Guile-JavaScript compiles Scheme to IR, then decompiles the IR and raises it to JavaScript.

    Then there's also Guile Hoot, which I believe lowers the IR into WASM. In theory, when its complete, the above languages could work with Hoot and he compiled to Hoot, but I'm not entirely sure on this.