ma1w4re

joined 9 months ago
[–] [email protected] 1 points 1 week ago (1 children)

Custom java machine probably

[–] [email protected] 83 points 2 weeks ago (1 children)

OH NO, I hope the fork will continue for a bit otherwise I'm so cooked 🥶🥶🥶

[–] [email protected] 6 points 2 weeks ago (6 children)

TikTok link

[–] [email protected] 8 points 2 weeks ago (1 children)

Can confirm same result when searching through searx instances, result provided by google.

[–] [email protected] -1 points 3 weeks ago (1 children)

This could be mistaken as "french"

[–] [email protected] 5 points 4 weeks ago (2 children)

List of files/pages that a website owner doesn't want bots to crawl. Or something like that.

[–] [email protected] 5 points 1 month ago

But I love both vim and milk 🥺🥺🥺

[–] [email protected] 40 points 1 month ago* (last edited 1 month ago) (1 children)

alias vim=nvim
alias vi=nvim
alias nano=nvim
alias emacs=nvim
alias code=nvim

export EDITOR=nvim
export VISUAL=nvim
export PAGER=nvim

[–] [email protected] 3 points 1 month ago

And then the bus fell on its side, amen brother 🙏

[–] [email protected] 20 points 1 month ago (2 children)

Omfg I was also enlightened by this

[–] [email protected] 3 points 1 month ago

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:

  1. 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.
  2. I untarred the archive using tar xvf nvim<press TAB>, or right clicked on the archive in a GUI file manager and clicked decompress.
  3. 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)
  4. Changed dir into .local/opt/nvim and found the executable, in our case something like ./bin/nvim.
  5. 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.
  6. 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"
  7. 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.

view more: ‹ prev next ›