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/)FH
featured [he/him] @ featured @lemmygrad.ml
Posts
0
Comments
86
Joined
3 yr. ago
  • As somebody else mentioned, using a computer and just taking calls there would work and give you solid control over microphone activation etc. If you really want the landline experience, look into adding a USB handset to that setup. It’ll just act like a mic and headphone from your computer but in the classic phone form factor

  • Professional audits happen for big projects, and hobbyists audit the programs they use frequently. In addition, some projects adhere to the reproducible builds guidelines, which ensures the packages you’re receiving are identical to the upstream repo. There’s more work to be done in formalizing and automating these processes but this isn’t a major issue by any means

  • Just make sure they know anything they put on these big tech platforms are there forever, regardless of what claims they make about “disappearing messages” etc. Do your best to guide them towards encrypted services for their own protection. As much as I hate this, iPhones are a decent recommendation in the US since almost every young person uses iMessage as the default, and that has end to end encryption available. Work to inform them on the dangers of corporate spying and profiling, as well as data leaks and security, and let them have some sovereignty over their platforms. Keeping an eye on them is good; isolating them from important modern social circles isn’t. Inform and educate first and foremost

  • I love cold brew for convenience and just to switch up my coffee routine. I can make a week's worth of coffee in my cold brew jar, with minimal effort or time, and the result is coffee that's less bitter, smoother, and stronger than most hot brewing methods. I wouldn't heat up cold brew, the cold coffee experience is part of why I'm making it.

  • I wonder if there’s any sort of alternative, community weather system that is run for the public good. I’m envisioning an open source ecosystem where people buy commodity weather instruments (barometers, thermometers, anemometers) and then connect them to a program which feeds them to a larger decentralized network. Then people could make visuals of the conglomerate data to see low pressure and high pressure areas, track storms, etc. If that backbone existed you could also create a distributed computational model like we see in projects like ‘folding from home’ in order to create forecast maps. Just spitballing but if anybody knows of programs that do any part of this I’d love to hear about them

  • Well there are compatibility layers but they aren’t perfect. I’ve tried nix-ld, nix-alien, and nix-autobahn and each does work but not necessarily in all cases. I found this to be most common with scripts.

    For example, I tried to install the discord mod Vencord using these solutions, but even with the compatibility shell I could not get past the first prompt.

    Another issue I had was network authentication. An organization I’m in has a secure network requiring a web portal to sign in, and it uses a python script to get hardware details and install a certificate. This does not work even with FHS compatibility layers. I manually installed all of the python packages it wanted, which got it to launch and immediately crash. On traditional distros, it just works

    I’m rambling but yes these tools exist and they may make everything rosy for you, but be aware of their own limitations because they didn’t solve much for me

  • I wanted to love nixos but it has many shortcomings that aren’t immediately obvious but can really stump you. No FHS compatibility seems fine but certain programs require it and don’t have nix native workarounds. Additionally, the documentation is really not good. I used it for a while but it got in the way too much; now I use a fedora variant and use regular Nix for dev packages using nix-direnv. Gives me the nix features while also having a fully compliant and functional base system

  • I think you’re better off finding tools which work for your particular language, application, workflow etc. For me I use nix and direnv to create directory based declarative package sets that load upon cd’ing to a project’s folder. This allows me to have exact versions of the packages I need regardless of system packaging or versions used in other projects. Some people prefer spinning up containers for this role, often using tools like distrobox. If the language you’re working in has good version management tooling then you can also just use that