Installing the printer driver for the Brother QL-1110NWB on Gentoo Linux can be a bit tricky, but thanks to a helpful ebuild written by James Cherti, the process becomes a breeze. The ebuild automates the whole process of downloading and installing the appropriate driver for the Brother QL-1110NWB on Gentoo Linux.
Brother QL-111NWB Driver installation on Gentoo
Create the file /etc/portage/repos.conf/motley-overlay.conf containing:
The following code snippet will allow you to apply the Tango Dark color scheme to the Vim’s built-in terminal and ensure that the terminal’s color scheme remains consistent, even if you change the Vim color scheme with the ‘:colorscheme’ command.
The snippet uses autocmd to ensures that the Vim terminal’s color scheme remains Tango Dark.
For more information about Vim’s built-in terminal:
The following Vim script (VimL) code snippet can be used to replace the full path of a home directory in a string with a tilde (“~”). This can be useful as a way to shorten the path to a file or directory, making it more readable.
" Language: Vim script" Author: James Cherti" License: MIT" Description: A function that replaces the home directory " with a tilde (e.g. '/home/user/file.txt' will " be replaced with '~/file.txt')." URL: https://www.jamescherti.com/vim-script-replace-the-home-directory-with-a-tilde/function! ReplaceHomeWithTilde(path)abortletl:path = fnamemodify(a:path, ':p')
letl:path_sep = (!exists('+shellslash') || &shellslash) ? '/' : '\'letl:home = fnamemodify('~', ':p')
ifl:path[0:len(l:home)-1] ==# l:homereturn'~' . l:path_sep . l:path[len(l:home):]
elseifl:path == l:homereturn'~' . l:path_sependifreturnl:pathendfunctionCode language:Vim Script(vim)
#!/usr/bin/env python# Author: James Cherti# License: MIT# URL: https://www.jamescherti.com/python-read-the-shebang-line-of-a-script/"""Read the shebang line of a script."""import sys
import os
import shlex
from pathlib import Path
from typing import Union
classShebangError(Exception):"""Error with the method read_shebang()."""defread_shebang(script_path: Union[Path, str]) -> list:"""Return the shebang line of a file.
>>> shebang("file.sh")
['/usr/bin/env', 'bash']
"""with open(script_path, "rb") as fhandler:
line = fhandler.readline().strip().decode()
if len(line) > 2and line[0:2] == '#!':
shebang_split = shlex.split(line[2:].strip())
ifnot Path(shebang_split[0]).is_file():
raise ShebangError(f"the shebang '{shebang_split}' does not exist")
ifnot os.access(shebang_split[0], os.X_OK):
raise ShebangError(f"the shebang '{shebang_split}' is not ""executable")
return shebang_split
raise ShebangError("the shebang line was not found")
if __name__ == "__main__":
try:
print(read_shebang(sys.argv[1]))
except IndexError:
print(f"Usage: {sys.argv[0]} <file>", file=sys.stderr)
sys.exit(1)Code language:Python(python)
#!/usr/bin/env python# Author: James Cherti# License: MIT# URL: https://www.jamescherti.com/python-calculate-the-size-of-a-directory-and-its-sub-directories/"""Calculate the size of a directory and its sub-directories."""import os
from pathlib import Path
from typing import Union
defget_size(path: Union[Path, str], include_dirs_size=True) -> int:"""Return the size of a file or a directory in bytes."""
path = Path(path)
size = 0if path.is_dir():
list_paths = path.glob("**/*")
elif path.is_file():
list_paths = [path] # type: ignoreelse:
list_paths = [] # type: ignorefor cur_path in list_paths:
ifnot include_dirs_size and cur_path.is_dir():
continueifnot cur_path.is_symlink():
size += cur_path.stat().st_size
return sizeCode language:Python(python)
The Vim plugin vim-easysession, written by James Cherti, offers a convenient and effortless way to persist and restore Vim editing sessions. It can significantly increase productivity and save a lot of time for users who frequently switch between different projects and those who frequently open and close the Vim editor.
In addition to its automatic session management capabilities, the Vim plugin Easysession also offers a variety of useful Vim commands that allow users to save, switch, list and delete sessions manually.
Easysession features
Save and restore the session “main”, which includes various settings such as the font, background, and color scheme (The &guifont, &background, and the color scheme are also part of the session file that is generated by Easysession)
Auto-complete the Vim commands :EasySessionLoad and :EasySessionRemove
Specify the directory where the session files are located: let g:easysession_dir = expand('~/.my_vim_sessions')
Save the session: :EasySessionSave
Switch to a different session: :EasySessionLoad SESSION_NAME
List the available sessions: :EasySessionList
Delete a session with: :EasySessionRemove SESSION_NAME
The Vim plugin Easysession can be installed with Vim’s built-in package manager (Vim 8 and higher):
mkdir -p ~/.vim/pack/jamescherti/start
cd ~/.vim/pack/jamescherti/start
git clone --depth 1 https://github.com/jamescherti/vim-easysession
vim -u NONE -c "helptags vim-easysession/doc" -c qCode language:JavaScript(javascript)
The plugin can also be installed with any third-party plugin manager such as Pathogen or Vundle.
Conclusion
The Vim plugin Easysession provides an easy and effortless way to persist and restore Vim editing sessions. Its automatic session management capabilities, manual commands, auto-complete feature, and its ability to specify the directory for saves session are all valuable features that make it easy to manage Vim editing sessions.
If you are looking for a way to manage and organize your Vim session more efficiently, the Easysession Vim plugin is an excellent option to consider.
Vim’s popularity is largely due to its ability to increase productivity through efficient navigation and editing techniques. One such technique is HJKL navigation, which allows using the H, J, K, and L keys to move the cursor left, down, up, and right. This method of navigation may seem strange at first, but it is actually a very efficient way to navigate through text and can greatly increase productivity when using Vim.
In addition to that, the HJKL navigation can help reduce wrist strain, as it allows moving the cursor without having to reach for the arrow keys, which are located in a position that can cause wrist to bend and flex in an unnatural position.
However, HJKL navigation can be hard to learn at first, because it requires using unfamiliar key combinations to move the cursor. One way of making it easier to learn HJKL navigation is by using the Vim plugin Hjklmode, written by James Cherti. You can use the Vim plugin to force yourself to rely on HJKL navigation to move around the text.
One of the key features of the Vim plugin Hjklmode is its ability to disable certain keys that require moving the hand away from the Touch Typing position, which can disrupt typing flow. These keys include: Backspace, Insert, Delete, Home, End, Page Up and Page Down, Arrows.
In addition to disabling certain keys, the Vim plugin Hjklmode also adds key mappings for Alt+h, Alt+j, Alt+k, Alt+l to Insert Mode, Command Mode, and Terminal Mode, which allow moving the cursor even in those modes.
Overall, the Hjklmode Vim plugin is a great tool for those looking to learn the HJKL navigation to increase their efficiency and productivity. Whether you are a beginner or an experienced Vim user, the Hjklmode Vim plugin can help you break the habit of moving your hand away from the home row/Touch Typing position.
Configuring XFCE 4 programmatically is useful if you wish to have the same XFCE 4 settings on several computers.
The command-line tool jamescherti/watch-xfce-xfconf (previously named: monitor-xfconf-changes) will help you to create shell scripts that can configure XFCE 4 programmatically. It will display the xfconf-query commands of all the Xfconf settings that are being modified by XFCE 4 programs (like xfce4-settings-manager, thunar, ristretto, etc.).
The xfconf-query commands will be displayed by watch-xfce-xfconf on the terminal every time an XFCE 4 setting is changed (with xfce4-settings-manager, thunar, ristretto, etc.).
You can then use the xfconf-query commands to configure XFCE 4 programmatically.