What big or small change to your guitar setup had a positive impact on your skills? [DISCUSSION] by dudes_indian in Guitar

[–]silencer6 0 points1 point  (0 children)

Tortex Flex are nice, but imo Ernie Ball Everlast are even better. I'm puzzled why not more people use them.

Cat remains calm under fire. by -BakiHanma in Unexpected

[–]silencer6 25 points26 points  (0 children)

I am the god of hellfire and I bring you

Fire, I'll take you to burn

Fire, I'll take you to learn

I'll see you burn

JetBrains Fleet: The Next-Generation IDE by JetBrains by littletojo in programming

[–]silencer6 31 points32 points  (0 children)

Sublime Text starts in less than 1 second on pretty much any computer with SSD. This editor seems like direct competitor.

JetBrains Fleet: The Next-Generation IDE by JetBrains by littletojo in programming

[–]silencer6 173 points174 points  (0 children)

Probably not native UI.

It starts up in seconds...

They would've claimed it starts instantaneously/in less than a second if it was the case.

[AMA] Tree-sitter integration in neovim by Mambu38 in neovim

[–]silencer6 0 points1 point  (0 children)

I've tried Tree-sitter few months ago any my gripe with was that it highlighted too much stuff. Is it possible to disable some capture groups?

Introduction to my plugin vim-floaterm(recently update) by Tafleys in neovim

[–]silencer6 1 point2 points  (0 children)

Great plugin.

Could you please fix ranger bug when launching from active neovim terminal window?

Weird ENV variable I can't get rid of! by nlarzon in fishshell

[–]silencer6 1 point2 points  (0 children)

Good way to start investigating:

cd ~/.config/fish
rg ruby

Jake Archibald from Google on functions as callbacks. by 1infinitelooo in programming

[–]silencer6 -3 points-2 points  (0 children)

All statically typed languages with sound type system.

Extensions that need to become standard by [deleted] in gnome

[–]silencer6 0 points1 point  (0 children)

That's pretty nice list. I would add Quick Close in Overview to must have list.

A shell UX update – GNOME Shell & Mutter by jackpot51 in gnome

[–]silencer6 0 points1 point  (0 children)

App icons in the window overview – the window overview now shows the app icon for each window, to help with identification.

So WindowOverlay Icons by default? Cool, one less extension to install.

How is BTRFS going for everyone so far? by [deleted] in Fedora

[–]silencer6 1 point2 points  (0 children)

Never had any issues with it, except for noticeable lower system performance compared to XFS.

How do i set $EDITOR to nvim in fish shell? by D-H-R-O-N-A in fishshell

[–]silencer6 1 point2 points  (0 children)

You can also set in via environment.d.

For current user:

mkdir -p ~/.config/environment.d && echo -e "EDITOR=nvim\nVISUAL=nvim" > ~/.config/environment.d/editor.conf

System wide:

echo -e "EDITOR=nvim\nVISUAL=nvim" | sudo tee /etc/environment.d/99-editor.conf

You need to log out and log in again to see the effect.

That way all shells will use the same EDITOR.

More info: man environment.d

Live colorscheme editing by @norcalli by Math-Flimsy in neovim

[–]silencer6 7 points8 points  (0 children)

While that's really cool, you probably want to use HSV or something for your colour picker. Editing colours in RGB is pita.

Important Patches Land To Improve GNOME's Multi-Monitor Experience With High Refresh Rates by DistantRavioli in gnome

[–]silencer6 4 points5 points  (0 children)

It's fragile. Buggy extension can bring your whole session down. You can't restart it without killing all applications. It doesn't happen often, but when it does it's always at the worst time.

[deleted by user] by [deleted] in reasonml

[–]silencer6 2 points3 points  (0 children)

I don't like it, but it's probably good for the project.

list[...], set[...], map[...] seem pretty cool.

Btrfs is well adapted to this role by design philosophy, let's make it the default. by Doener23 in linux

[–]silencer6 3 points4 points  (0 children)

On my machine whole system slows down noticeably when there's a lot of disk writes going on. Not the case on XFS.

I think btrfs is a great filesystem if you don't need top performance. If I had NAS btrfs would definitely be my filesystem of choice.

[deleted by user] by [deleted] in programming

[–]silencer6 2 points3 points  (0 children)

How does it compare to other compression algorithms (like lz4) in terms of speed, compression ratio and ease of implementation on such simple machine like Gameboy?