The always enthusiastic and knowledgeable mr. @jasaltvik shared with our team an article on writing (good) Git commit messages: How to Write a Git Commit Message. This excellent article explains why good Git commit messages are important, and explains what constitutes a good commit message. I wholeheartedly agree with what @cbeams writes in his article. (Have you read it yet? If not, go read it now. I'll wait.) It's sensible stuff. So I decided to start following the
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
| #!/bin/bash | |
| # Automatically setup routing and DNS for a PiZero connected over a USB-network | |
| # Based off https://gist.github.com/lurch/ad939bbce48064cffdb215268eac9f62 | |
| # Need to have booted PI Zero with config.txt option "dtoverlay=dwc2" | |
| # and cmdline.txt parameter "modules-load=dwc2,g_ether" | |
| # TODO | |
| # Force PI to have fixed MAC address like e6:45:88:d0:85:46 | |
| # For now, edit cmdline.txt in the boot partition on the pi SD card, add:- | |
| # g_ether.dev_addr=e6:45:88:d0:85:46 |
This tutorial demonstrates how to use Google Apps Script to:
-
Create copies of the Google Sheet in the desired destination folder automatically at set intervals.
-
Append the time stamp with each backup file's name.
-
Adjust time trigger for backing up every day/hour/minute.