• 0 Posts
  • 39 Comments
Joined 9 months ago
cake
Cake day: December 16th, 2023

help-circle
  • I think I remember a site like that existing in the 2010s, where you had to apply to join and it only let in equal numbers of genders.

    It was the 2010s so the waiting list for dudes joining was way longer than the one for women. It was like trying to get in a dance club.



  • WalnutLum@lemmy.mltoMemes@lemmy.mlZen Z
    link
    fedilink
    arrow-up
    2
    ·
    19 days ago

    Yea that’s kind of what I was thinking when I said eventually handwriting will go the same way.

    If people never encounter it and do all their writing on keyboards, it’ll eventually be a useless skill as well.


  • WalnutLum@lemmy.mltoMemes@lemmy.mlZen Z
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    19 days ago

    From a practicality standpoint, a round clockface is easier to create a mechanical drive system for.

    You can create a digital mechanical face (see: Flipboard style numerical displays) but they usually require more gears and are more susceptible to wear and tear than the gears of a round clock face.

    The simplest designs for mechanical digital displays actually just take 24 hour and 60 minute/second circular displays and hide the other numerals as the clock face spins around. Technically this I suppose counts as both analog and digital?

    Example:

    Image

    As for electronic displays? Nah not much of a reason to use a round display unless again, you have an electric-mechanical drive and want to save on gears and parts.


  • WalnutLum@lemmy.mltoMemes@lemmy.mlZen Z
    link
    fedilink
    arrow-up
    4
    arrow-down
    2
    ·
    19 days ago

    It floors me just how many people in this thread feel like analog clock reading is a useless/outdated skill.

    But I’m of the opinion that there’s no such thing as a truly outdated and useless skill, so I’m not sure I have the capability to empathize with those people…





  • You can use nix alongside guix, it’ll just double-up the dependencies on disk:

    services (append (list (service nix-service-type))
                        %base-services)))
    

    Services are, in guix terms, any configuration change to a computer, so creating your own service 99% of the time is just extending etc-service-type and creating a variable interface to fill in the config file text yourself

    Creating a service as in a daemon of some kind uses shepherd and involves extending shepherd-service-type or home-shepherd-service-type with your service description, depending on whether the service runs in root or user space.

    Shepherd service configurations aren’t actually part of the guix spec(https://www.gnu.org/software/shepherd/manual/shepherd.html#Defining-Services), but still use Guile, so you can interoperate them super easily.

    It’s important in guix to understand lisp pretty thoroughly, and knowing how to program lisp is still a very useful skill to have so I’d recommend learning it even if you never touch guix.


  • I use guix because, while it has a small community, the packaging language is one of the easiest I’ve ever used.

    Every distro I’ve tried I’ve always run into having to wait on packages or support from someone else. The package transformation scheme like what nixos has is great but Nixlang sucks ass. Being able to do all that in lisp is much preferred.

    Plus I like shepherd much more than any of the other process 0’s