• 0 Posts
  • 13 Comments
Joined 1 year ago
cake
Cake day: February 19th, 2025

help-circle
  • lmr0x61@lemmy.mltoProgramming@programming.devWhy I love NixOS
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    3 days ago

    Yeah, that paragraph is where I stopped reading lol

    Blog post aside, NixOS is fantastic. Once you get the Nix DSL down, it makes everything so smooth once you know how to configure your system. The learning curve for me came not from the packages, but learning how to set up system/program configurations using configuration.nix, instead of the standard config files. But once you get that down, you can rebuild essentially the exact same system from a single file. I use it for my worker nodes on my server cluster, and it makes setup of new nodes a dream. Definitely recommend.







  • lmr0x61@lemmy.mltoProgrammer Humor@programming.devChipotleGPT
    link
    fedilink
    English
    arrow-up
    32
    arrow-down
    1
    ·
    8 days ago

    To completely deflate the joke, it looks like the text output was stripped of its new lines, spaces/tabs, and backticks, because I think the code would be valid if allowed those elements in a Markdown context, e.g.:

    ```python
    
    def reverse_linked_list(l):
        # …
        return prev
    
    \```
    

    (backslash included to show triple backtick)