/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

www.bobdc.com
| | willhaley.com
14.1 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.
| | shaneosullivan.wordpress.com
17.4 parsecs away

Travel
| | How to run a clean up script when your NextJS dev server is shut down
| | feorlen.org
16.4 parsecs away

Travel
| |
| | kdheepak.com
27.5 parsecs away

Travel
| [AI summary] The article provides scripts and configuration settings for seamless navigation between Emacs splits and Tmux panes using custom keybindings.