/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

techtldr.com
| | crespo.business
4.3 parsecs away

Travel
| | I ran into Gary Bernhardt's dotfiles for the first time around 2015, a few years into my career. His 500 line vimrc and intricate git helpers (which I immediate...
| | fuller.li
4.5 parsecs away

Travel
| |
| | willhaley.com
2.5 parsecs away

Travel
| | See here an example of a custom Linux mount script, written in Python, that can be used to mount disks with /etc/fstab. The mount script is installed at /usr/bin/mount.my-command and is executable. #!/usr/bin/env python3 import sys import subprocess device = sys.argv[1] mount_point = sys.argv[2] options = sys.argv[4] # Any customization could be done here to the `mount` command that is run. mount_command = ['mount', '-o', options, device, mount_point] output = subprocess.run( mount_command, capture_output=True ) if output.returncode != 0: print("error mounting") print(output.stderr.decode('UTF-8')) sys.exit(output.returncode) See here how the custom script can then be used in /etc/fstab like any "normal" mount.
| | anishathalye.com
27.9 parsecs away

Travel
| Your dotfiles will most likely be the longest project you ever work on. For this reason, it is worthwhile to organize your dotfiles project in a disciplined manner for maintainability and extensibility.