Plutus, Haskell, Nix, Purescript, Swift/Kotlin. laser-focused on FP: formality, purity, and totality; repulsed by pragmatic, unsafe, “move fast and break things” approaches


AC24 1DE5 AE92 3B37 E584 02BA AAF9 795E 393B 4DA0

  • 4 Posts
  • 469 Comments
Joined 1 year ago
cake
Cake day: June 17th, 2023

help-circle






  • Maybe you’re just in a bad mood because I really didn’t make a big thing about it. Just thought it was odd that you’d lie about it. You’d have to have either lied (or misremembered if your panties are still bunched up) because this has been company policy since the first Apple Store opened in like 2001.

    I’ve been going to Apple stores since they opened. In fact, in a brand new Apple Store back in like 2007, I wanted to demo the software “Shake” for my company. I distinctly remember an employee installing it for me (since they wouldn’t be stupid enough to leave admin access open).






  • demesisx@infosec.pubtoLinux@lemmy.worldxxx
    link
    fedilink
    English
    arrow-up
    17
    ·
    edit-2
    8 days ago

    I’m genuinely curious why you’d want to do that. Mine is timed to coincide with the circadian rhythms of the GPS coordinates and those are provided as hard-coded values in my config. I suppose the only optimization I could imagine is a script where it would get my IP then correspond that with GPS coordinates so I could have circadian screen coloring wherever I go with my laptop.

    My point is, it’s a setting that I don’t turn off because that would defeat the purpose of the app.








  • I do this on NixOS. I have a NAS at home where I store most of the files I work on. My computers are internally immutable and almost all the files that change reside solely on the NAS as NFS shares. All of my computers are configured to auto-mount one of its folders at boot. NixOS sees that as an internal drive.
    Then, simply navigate to the project folder where I have a flake and a .envrc file containing the command use flake .which will make direnv use Nix to provision the dependencies automatically. Whenever I save, those changes are reflected on all computers.

    I like to also version control everything using git and this method allows that transparently.

    The only part that I am missing is getting the permissions to align between all computers accessing that same folder. Sometimes I have to create a temp folder that uses rsync to keep up with any changes. If anyone has any pointers, I’m all ears. It rarely gets in my way but does rear its head sometimes. Otherwise, this setup is perfect when I’m at home.