I think Nix is better used for things like servers instead of a daily driver PC. Having to fuck with config files for my laptop/desktop would be a nightmare that I refuse to go through. I’ve been playing with Nix on a home server and I’m loving it for that. With a limited scope on what actually needs to be installed it makes managing the configs possible.
- 3 Posts
- 54 Comments
chickenf622@sh.itjust.worksto
Ask Lemmy@lemmy.world•How do I keep getting downvotes from a post I deleted several days ago?
18·2 months agoI would guess the deletion hasn’t propagated to all server instances so it’s still showing up in those instances. I imagine that posts are truly deleted but just marked as such I the database. Therefore a down vote could still be attached to the now deleted post this incrementing the counter.
The good news is karma isn’t a thing here so don’t worry about getting extra down votes.
chickenf622@sh.itjust.worksto
linuxmemes@lemmy.world•Well I can see why people might not care
16·2 months agoExcuse me while I get really mad at you for not using Vim even though it doesn’t effect me in anyway.
Jokes aside, I’ve gone the route of just using an extension in VS code to give me the Vim key bindings. I can’t go back to non-modal text editors the muscle memory is too strong. I really should play around with emacs in “evil mode” at some point. Maybe I could get the best of both worlds then.
Edit: Vince -> Vim, Vince is a terrible text editor he doesn’t even understand my keystrokes when I type at him.
chickenf622@sh.itjust.worksto
Linux@lemmy.world•California’s AB 1043 Could Regulate Every Linux Command, and the Open Source World Is Too QuietEnglish
91·2 months agoAs is this bill is waaaay too broad. It seems the legislative body recognizes that so hopefully there will be a significantly narrower definition for what applications require age assurance. If you live in Cali call your state reps, and voice your concerns! I do like the idea of age verification via device attestation, way less invasive than uploading a pic of your ID to some chuckle-fuck 3rd party that is gonna get hacked. I would like no age verification being forced, but it looks like that is not gonna happen.
chickenf622@sh.itjust.worksto
Lemmy Shitpost@lemmy.world•the two party system is just one big party
316·2 months agoNah your overall meme is defeatist as fuck. Your saying no matter who you vote for the trolley will run ove everyone. I don’t disagree with the sentiment, but this bullshit dichotomy doesn’t help.
chickenf622@sh.itjust.worksto
Lemmy Shitpost@lemmy.world•the two party system is just one big party
569·2 months agoWe really need to stamp down on this “but both sides suck” bullshit. Yes the establishment Democrats suck, but this defeatist bullshit doesn’t help. I know it would be great to live in a country where there isn’t a two party system l. No hate towards you this subject just got me ramty as fuck.
Totally valid reason to not respond. Take care of yourself before you take care of someone else.
Hey if you didn’t have the emotional capacity for that good for you.
chickenf622@sh.itjust.worksto
Linux@lemmy.world•Learning fixes without looking everything up or having the answer given outrightEnglish
2·4 months agoThe place to start is searching “How to do x in Linux (or the name of the specific distro you’re using)?”. If you are trying to figure out how to do something with a specific program searching for “How to do x in {program} on Linux?”. I’ve been using Linux for years and still need to look up the syntax for commands or a reminder on how to do things. I would also focus on learning things that you actively need so you can apply what you learned immediately. I definitely agree with you that see what is actually installed can be a mess. There’s so many different installation methods that it’s nigh impossible to have a single unified interface. I would try to stick with one installation method as much as possible so most things are able to be listed in one spot.
For how to apply things it’s common to feel overwhelmed with the complexity of certain tasks. It’s important to try and break that down into smaller parts. An example of something I was recently dealing with was getting SSH access from an external network setup on a server that is running NixOS. There’s so many steps to take to get that setup, but each individual step is easy to do. I broke down the problem like this:
- Find the server’s local IP address. Easy to pull up on the machine itself or looking at the devices connected to my router.
- Ping that IP address from the computer I want to SSH from.
- Enable the SSH daemon on the server.
- In my case this was just settings a variable to true, but in most cases it would be installing if via a package manager (varies depending on the distro), but I run Fedora so I would run
sudo dnf install openssh openssh-server. I can find those package names by runningdnf search sshor “SSH server on fedora”. - Ensure the SSH daemon is enabled and running by running
sudo systemctl enable sshdandsudo systemctl start sshd
- In my case this was just settings a variable to true, but in most cases it would be installing if via a package manager (varies depending on the distro), but I run Fedora so I would run
- Try to SSH into the server from the computer I want to use.
- Create some SSH keys so I can do authentication via a private key file instead of a password (much more secure, and good practice).
I can go on, but each step I feel is simple to execute and doesn’t require knowledge from any subsequent step. As for how I know what the steps are, I am following some tutorials or docs online like this, digging through man pages, and personal experience.
chickenf622@sh.itjust.worksto
Linux@lemmy.world•Learning fixes without looking everything up or having the answer given outrightEnglish
2·4 months agoFirst always take notes of the steps you took to do something. If you were throwing shit at the wall then try and do it again using only the correct steps. I have saved my own ass by taking down notes. Include the commands (obviously), what they do, why you’re using them, the expected output, and errors you came across with their solutions.
Since you said you wanted man pages to be easier to parse, I’ll give you some advice on how to approach these, admittly, intimidating blocks of text. One skill I have learned is how to read those intimidating technical documents and actually get the information I need from them. A good practice is take a tool, a programming language, data format, etc. that you already know and look at the technical specifications. Since you already know how it works you should be able to understand the information in there, and learn how to parse out that data. RFC 2119 also gives some guidance on some of the word usage in those documents (it’s very limited), and is a nice short one to get used to reading stuff like that.
Another thing is I just try shit out to see what happens. Would probably be a good idea to do this on a machine you don’t care about reimaging, or make a backup of all the data you care about losing. I’m a very learn by doing kind of person and have learned a lot this way
Finally if you have the time and knowledge looking at source code can really give you an understanding of how a tool works. This is my absolute last resort, so don’t think you have to do this.
Edit: I wrote this assuming you’re ok with getting into the nitty gritty of Linux. Otherwise I would recommend switching to a more user friendly OS. It looks like you’re trying to set it up for gaming, this is a guess and I could be wrong. I have been using Bazzite for about 6 months now, and the only times I have issues with it is when I try to do power user stuff that isn’t gaming related (e.g. trying to install a build tool to build something from source code).
chickenf622@sh.itjust.worksto
No Stupid Questions@lemmy.world•Can mental health medication change nature of dreams?
11·7 months agoI’ve heard anecdotal evidence that the anti-malaria medication the US military uses that cause people to have recurring nightmares. If you’re taking a medicine that is supposed to effect the brain I don’t see any reason why it couldn’t effect your dreams.
chickenf622@sh.itjust.worksto
Lemmy@lemmy.ml•Bit concerned about the view votes option now available.English
3·7 months agoYeah it’s a mix of “fair enough” , and “are you really monitoring votes close enough to even find me?”. If I went out of my way to downvote everything then I would say the ban is 100% justified. At this point I can see the point of view, but also is it worth the effort, when I will probably block the community anyways?
chickenf622@sh.itjust.worksto
Lemmy@lemmy.ml•Bit concerned about the view votes option now available.English
6·7 months agoI’ve been banned from a few communities cause o reflexively downvote anything that’s AI generated.
chickenf622@sh.itjust.worksto
Selfhosted@lemmy.world•18% of people running Nextcloud don't know what database they are usingEnglish
7·8 months agoAh that would explain why I didn’t know. I have next to no experience with Apple devices.
chickenf622@sh.itjust.worksto
Selfhosted@lemmy.world•18% of people running Nextcloud don't know what database they are usingEnglish
4·8 months agoWell it does depend on your exact use case, but using a proper database is usually the better option for production. Now if this is just some little service you made for yourself use whatever you want.
chickenf622@sh.itjust.worksto
Selfhosted@lemmy.world•18% of people running Nextcloud don't know what database they are usingEnglish
15·8 months agoWait is APFS a new file system than NTFS? Guess I’m too busy on my Tiktoks and Nintendos to keep up to date
chickenf622@sh.itjust.worksto
linuxmemes@lemmy.world•Sex on the first date refers to sex on jan 1 1970
18·1 year agoThis fool doesn’t know that jet fuel can’t melt steel beams. Edit: apparently I needed this /s
chickenf622@sh.itjust.worksto
Asklemmy@lemmy.ml•Should we be able to see our karma totals on profile?
5·1 year agoI like it without a total count. I’m not worried if something I say gets heavily down voted (and usually it deserves it if it does happen). Plus you don’t get try hards who only care about making that number go up, and are just posting everywhere in pursuit of that goal rather than cause they thought it was worth posting.
chickenf622@sh.itjust.worksto
Ask Lemmy@lemmy.world•When talking to yourself, do you use the pronoun 'I' or 'you'?
4·1 year agoI think I mix them interchangeably. Much to the chagrin of my English teachers.
When I did them myself I would get them done by March at the latest. Now that I have a financial advisor that also does my taxes, I get the documents to them ASAP (assuming ADHD isn’t getting in my way), and they tend to have them filed around the time I would’ve gotten them filed. Also nice to see that I didy taxes pretty accurately as how much I owed/was owed were effectively the se amount. Really wish the tax system was simplified for at least regular W2 employees where the taxes are basically all boilerplate with some numbers filled in.