How To List All Tags With The Message In git
1 2 |
git tag -n git tag -n3 |
Use Case: Export Apple Reminders from MacOS application to cleaned plain text, i.e. remove unwanted spaces, blank lines and square brackets PROCEDURE Click on a single item in the MacOS Reminders app list Select All (either Command-a or use Edit->Select All) Copy (either Command-c or use Edit->Copy) Open Terminal Run cleanme Paste the copied reminders […]
As always, YMMV…
1 2 3 4 5 6 7 8 9 |
#!/bin/bash # Usage: eject [fullpath to mount point] DISK="${1:-/Volumes/YourUSBFlashDriveName/}" df -h "$DISK" > /dev/null 2>&1 if [ $? -eq 0 ]; then diskutil unmountDIsk `diskutil list "$DISK" | grep ^/dev/` else echo Volume $DISK is not mounted...skipping. fi |
Our health-related website is finally live to the public! A long time coming, but worth the effort. The site is FREE, and will handle many health-related tracking tasks quite easily. Naomi and I have worked incessantly to make the site worthy of use. We think it is ready for prime-time. Now let’s see what the […]