You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
Instantly share code, notes, and snippets.
☕
Coffee break.
Frestein ☁️
Frestein
☕
Coffee break.
God must be a painter. Why else would we have so many colors?
Please note, it's easier to just use a recovery flash drive/dvd disk!
I just wanted a new challenge, and I found it:
Info on target system
My friend has switched from Windows to Fedora. Somehow in the process, Windows
Bootloader went missing from EFI partition (I would love to know how did that
happen as much as you do or don't, but I wasn't supervising at the moment, so... no idea)
which file sytem to use for daily work? should we turn on btrfs compression?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A basic overview of how to manage dot-repeating in your Neovim plugin, as well as manipulate it to "force" what action is repeated.
Adding dot-repeat to your Neovim plugin
In Neovim, the . character repeats "the most recent action"; however, this is not always respected by plugin actions. Here we will explore how to build dot-repeat support directly into your plugin, bypassing the requirement of dependencies like repeat.vim.
The Basics
When some buffer-modifying action is performed, Neovim implicitly remembers the operator (e.g. d), motion (e.g. iw), and some other miscellaneous information. When the dot-repeat command is called, Neovim repeats that operator-motion combination. For example, if we type ci"text<Esc>, then we replace the inner contents of some double quotes with text, i.e. "hello world" → "text". Dot-repeating from here will do the same, i.e. "more samples" → "text".
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AMD FidelityFX Contrast Adaptive Sharpening v1.0.2 for mpv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The intended use-case for BaseDirectories is
to query the paths of user-invisible standard directories that have been defined according to
the conventions of the operating system the library is running on.