deleted by creator
deleted by creator
deleted by creator
deleted by creator
deleted by creator
Op does not know about $CDPATH and tab completion keke
I totally agree longterm projects are better off using github or email.
Here is the crux for lively discussions using discord/IRC comes more natural. But whilst it facilitates easier flowing communication it fails to preserve it.
If you host thelounge using IRC is quite cool. As you get a better experience with backed up messages and stuff.
Terrible advice, do this in a VM as a lab but not on your main computer.
Backend: golang/python Frontend: js/ts Scripting: bash
If i had to choose one it’d be go.
No it supports many platforms
Why not just use yt-dlp directly?
Don’t get me wrong I really like Nix. But like you said the learning curve is steep. And just learning the basics including flakes for instant setup is not enough. Because all your config files gotta be rewritten which is a lot of work and nix specific knowlege to aqquire. If you went through it I can totally see the benefit.
However for me personally it makes more sense to use tools that have wide adaption, such as OCI images and CI/CD to buid the image. My thought: Using Docker/Containerfiles is way more adapted by the industry so people already know how to use that. Nix on the otherhand has to not only fight against the default way UNIX systems are configured, but also do that with brand new tools.
I agree all distros are at some point breaking it’s just the nature of any OS. That’s why the nix paradigm or immutable OS paradigm is far superior and the future.
I switched from NixOS mainly cause there is no saint way to use my dotfiles except to adapt homemanager or the like.
For now I use my own OS based on Fedora Silverblue
Nothing beats good old bash IMO, or if you need something minimal busybox
Okay, so first if you have a theory always try to test it. If you think it’s a permissions issue try this
curl -o foo http://ix.io/4Igu
to download a script and then try to run that script with./foo
. You will get a ‘permission denied’ error.Because we did not give that script x permissions. If you do
ls -lah foo
you will see x is not set on user, group or world. However if you runchmod +x foo
and then try to run the script again it will work. Now you can also see the changed permissions withls -lah foo
.Your error is ‘not found’ which is a path location error. It means it cannot find your app in the /server/application location.
Note: I tried to post this without link but Lemmy is a bit …, it seems not to support CommonMark. I don’t know what they implemented, but code blocks are a mess. In a code block you want all characters to be escaped, that is not the case here :(