All that follows is from the original repo README.md file. It may be obsolete.
Important: The content below this notice is from the original repository's README.md file and may no longer be current or accurate.
<!-- Progress Marker !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> | |
<div style="border: 3px solid red; padding: 10px; margin: 10px; font-weight: bold; font-size: large;text-align: center;"> | |
<span>Attention! The remainder of this document is original README.md content from other projects.</span> | |
</div> | |
<!-- Progress Marker !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> |
cd ~/GitHub | |
╭─mark@Marks-Mac-Mini ~/GitHub | |
╰─$ git clone https://github.com/TryGhost/eleventy-starter-ghost.git blog-eleventy-ghost | |
Cloning into 'blog-eleventy-ghost'... | |
remote: Enumerating objects: 774, done. | |
remote: Counting objects: 100% (11/11), done. | |
remote: Compressing objects: 100% (10/10), done. | |
remote: Total 774 (delta 5), reused 3 (delta 1), pack-reused 763 | |
Receiving objects: 100% (774/774), 914.18 KiB | 3.94 MiB/s, done. | |
Resolving deltas: 100% (471/471), done. |
Resources used in the creation of this site can be found in a OneTab at https://www.one-tab.com/page/iyQVdlpSRICO67Mue7Cb_Q. In particular, I found A Deep Dive Into Eleventy Static Site Generator to be especially helpful!
# Contents of ~/gitconfig/hooks/pre-commit | |
# Replace `last_modified_at` timestamp with current time in the specified TZ for .md edits only | |
# Note that this file should exist on your workstation as `~/gitconfig/hooks/pre-commit` and the file must be executable! | |
git diff --cached --name-status | egrep -i "^(A|M).*\.(md)$" | while read a b; do | |
cat $b | sed "/---.*/,/---.*/s/^last_modified_at:.*$/last_modified_at: $(TZ=CST6CDT date "+%Y-%m-%dT%H:%M:%S")/" > tmp | |
mv tmp $b | |
git add $b | |
done |
echo "This is my /var/tmp/startup_script.sh to auto run during boot" > /var/tmp/script.out | |
echo "The time the script run was --> `date`" >> /var/tmp/script.out | |
# See ~/Desktop/README.md Set inotify capacity for Paperless-ng | |
# | |
cat /proc/sys/fs/inotify/max_user_watches # default is 8192 | |
sudo sysctl fs.inotify.max_user_watches=1048576 # increase to 1048576 | |
echo "Parameter for inotify increased, max_user_watches=1048576" >> /var/tmp/script.out | |
# Start Paperless-ng |
This is just a test, and the results are showing me that additions or updates to this list are NOT pulled into my blog at run-time. The fetch of these gists must be a compile-time activity. |
sudo rm -rf LCD-show | |
git clone https://github.com/goodtft/LCD-show.git | |
chmod -R 755 LCD-show | |
cd LCD-show | |
sudo ./LCD5-show |
<?xml version="1.0" encoding="UTF-8"?> | |
{# Digital_Grinnell_MODS_Master.twig Revision 17 | |
A copy of this file lives as a Gist at https://gist.github.com/SummittDweller/de551b7583bf7022401e8b4a5320a201 | |
This TWIG template for IMI import is intended to serve as a general-purpose | |
starting point for MODS import into Digital Grinnell. | |
The canonical copy of this Twig is part of a 4-tab Google Sheet named |
Last login: Tue Feb 25 16:54:13 2020 from 173-18-136-80.client.mchsi.com | |
[centos@summitt-services-droplet-01 ~]$ docker exec -it isle-apache-dg bash | |
root@01d77bea4bd2:/# cd /var/www/html/sites/all/modules/islandora/islandora_multi_importer/ | |
root@01d77bea4bd2:/var/www/html/sites/all/modules/islandora/islandora_multi_importer# git remote -v | |
origin https://github.com/DigitalGrinnell/islandora_multi_importer (fetch) | |
origin https://github.com/DigitalGrinnell/islandora_multi_importer (push) | |
root@01d77bea4bd2:/var/www/html/sites/all/modules/islandora/islandora_multi_importer# git status | |
HEAD detached at 78c06b7 | |
Changes not staged for commit: | |
(use "git add <file>..." to update what will be committed) |