Custom java machine probably
ma1w4re
OH NO, I hope the fork will continue for a bit otherwise I'm so cooked 🥶🥶🥶
Can confirm same result when searching through searx instances, result provided by google.
List of files/pages that a website owner doesn't want bots to crawl. Or something like that.
But I love both vim and milk 🥺🥺🥺
alias vim=nvim
alias vi=nvim
alias nano=nvim
alias emacs=nvim
alias code=nvim
export EDITOR=nvim
export VISUAL=nvim
export PAGER=nvim
And then the bus fell on its side, amen brother 🙏
Omfg I was also enlightened by this
Little addendum to the last part of About Fragmentation section, since I don't want to leave it unfinished and make people struggle if they follow my advices:
$HOME/.local/opt is a "usual" (there are few more, I prefer this one) location for pre-built (downloaded) and built-locally apps that you don't want to install system-wide.
For example:
- I downloaded neovim binaries because I didn't have time to build em (lazy ass), but at least I did it from their git repository.
- I untarred the archive using
tar xvf nvim<press TAB>
, or right clicked on the archive in a GUI file manager and clicked decompress. - moved nvim-linux-x64 directory into .local/opt, and renamed it to nvim (usually done in one command, if using terminal -
mv nvim-linux-x64 $HOME/.local/opt/nvim
) - Changed dir into .local/opt/nvim and found the executable, in our case something like ./bin/nvim.
- I link that executable into a directory for binary files that lies on the PATH (system checks PATH it to find shit), like this -
ln -s /home/<my nickname>/.local/opt/nvim/bin/nvim /home/<my nickname>/.local/bin/nvim
this command requires absolute paths and creates a SYMBOLIC link (you can read up on that if you're interested). GUI file managers usually have functionality for creating symlinks, right click on file to find out. - Some distros include .local/bin to path by default, while others don't. Simple way to do so is open your .bashrc or .zshrc that's located in $HOME in a text editor, and somewhere close to the end of file write
export PATH="$HOME/.local/bin:$PATH"
- I close and reopen my terminal. Nvim is now installed, by hand.
Something like that. It's all done just for organization and quality of life.
How is being born in Russia makes one complicit in "Russian aggression" wtf? I didn't have a fucking choice in this matter. Now I'm fucking worried that someone will have a bright idea of blocking Russians from using Linux, I might just kill myself at that point. Honestly, I'd rather die than lose my main and most beloved hobby.