ma1w4re

joined 10 months ago
[–] ma1w4re@lemm.ee 3 points 11 hours ago

Fuck yeah that kind of shit, I love it, let's go πŸ˜–πŸ”«

[–] ma1w4re@lemm.ee 9 points 1 day ago (2 children)

Someone should make a script that generates the sticker with updated version numbers 😡😡😡

[–] ma1w4re@lemm.ee 3 points 1 week ago

But it's fun though

[–] ma1w4re@lemm.ee 1 points 3 weeks ago (1 children)

That's IF the would be even able to pull the kernel. I know how government grants work here. 70% chance that the money gets stolen and work is outsourced to some bloke who doesn't know what git is.

[–] ma1w4re@lemm.ee 10 points 3 weeks ago (3 children)

When it fails I'm gonna laugh a lot.

[–] ma1w4re@lemm.ee 14 points 3 weeks ago (1 children)

I'm not gonna use this shit regardless. Even if it remains the only option for an OS in Russia, I'm gonna fucking smuggle a proper Linux distro in.

[–] ma1w4re@lemm.ee 83 points 1 month ago (1 children)

OH NO, I hope the fork will continue for a bit otherwise I'm so cooked πŸ₯ΆπŸ₯ΆπŸ₯Ά

[–] ma1w4re@lemm.ee 8 points 1 month ago (1 children)

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

[–] ma1w4re@lemm.ee 5 points 1 month ago (2 children)

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

[–] ma1w4re@lemm.ee 3 points 1 month ago

And then the bus fell on its side, amen brother πŸ™

[–] ma1w4re@lemm.ee 20 points 1 month ago (2 children)

Omfg I was also enlightened by this

[–] ma1w4re@lemm.ee 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: next β€Ί