From f3904c4a2c798d316983ddf07afcb8ae5b371d98 Mon Sep 17 00:00:00 2001 From: Jay Moore/NQ4T Date: Sun, 15 Jan 2023 06:15:32 +0000 Subject: [PATCH 1/4] Delete symlink --- images | 1 - 1 file changed, 1 deletion(-) delete mode 120000 images diff --git a/images b/images deleted file mode 120000 index c1b49b1..0000000 --- a/images +++ /dev/null @@ -1 +0,0 @@ -/var/www/nq4t-static/images \ No newline at end of file From 5e9f5cd341418527c2b343afb3ddef2717dcc8eb Mon Sep 17 00:00:00 2001 From: Jay Moore/NQ4T Date: Sun, 15 Jan 2023 06:16:20 +0000 Subject: [PATCH 2/4] Delete script --- composepage.sh | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100755 composepage.sh diff --git a/composepage.sh b/composepage.sh deleted file mode 100755 index 813ed2b..0000000 --- a/composepage.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash -# nq4t.com page composer -# by: Jay/nq4t - -# usage: ./compose.sh [category] [title] -# example: /compose.sh Tech MY AWESOME POST TITLE NO YOU DON'T NEED TO ENCLOSE IT! -# run in the root of your site files/repository -# assumes categories are directories in root - -# Variables and category argument -category=$1 -pd=$(date +'%Y-%m-%d') -pt=$(date +'%T') -file=blog$$.md -# Ditch the category argument -shift 1 -# Read everything else as title. -title=$@ -t=${title,,} -t=${t// /-} -fd=$(date +'%Y/%^b/%d') -# Let's write the front matter to our temp file. -printf -- "---\ntitle: $title\nlayout: page\ndate: $pd $pt\ncategory: ${category^}\nexcerpt_separator: \n---\n\n" >> $file -# Write the post in whatever editor you want. -nano + $file - -# Move the file to category/_posts replacing spaces with hyphen -mv $file pages/_posts/$pd-${t// /-}.md -# Display some output to verify it's done. -printf "\nPage $title categorized in $tag: pages/_posts/$pd-$t.md\n\n" From e7591a588c507ad04277f42bafc59c83efa256f1 Mon Sep 17 00:00:00 2001 From: Jay Moore/NQ4T Date: Sun, 15 Jan 2023 06:16:34 +0000 Subject: [PATCH 3/4] delete script --- composepost.sh | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100755 composepost.sh diff --git a/composepost.sh b/composepost.sh deleted file mode 100755 index a0f8042..0000000 --- a/composepost.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash -# nq4t.com blog post composer -# by: Jay/nq4t - -# usage: ./compose.sh [tag] [title] -# example: /compose.sh blog MY AWESOME POST TITLE NO YOU DON'T NEED TO ENCLOSE IT! -# run in the root of your site files/repository -# assumes categories are directories in root - -# Variables and category argument -tag=$1 -pd=$(date +'%Y-%m-%d') -pt=$(date +'%T') -file=blog$$.md -# Ditch the category argument -shift 1 -# Read everything else as title. -title=$@ -t=${title,,} -t=${t// /-} -fd=$(date +'%Y/%^b/%d') -# Let's write the front matter to our temp file. -printf -- "---\ntitle: $title\nlayout: post\ndate: $pd $pt\ntags: ${tag^}\nexcerpt_separator: \n---\n\n" >> $file -# Write the post in whatever editor you want. -nano + $file - -# Move the file to category/_posts replacing spaces with hyphen -mv $file blog/_posts/$pd-${t// /-}.md -# Display some output to verify it's done. -printf "\nPost $title tagged in $tag: blog/_posts/$pd-$t.md\n\n" From f994af84b4d240d94d58d96c458c69c8546863c8 Mon Sep 17 00:00:00 2001 From: Jay Moore/NQ4T Date: Sun, 15 Jan 2023 06:16:44 +0000 Subject: [PATCH 4/4] delete script --- devsite.sh | 3 --- 1 file changed, 3 deletions(-) delete mode 100755 devsite.sh diff --git a/devsite.sh b/devsite.sh deleted file mode 100755 index 184d302..0000000 --- a/devsite.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -bundle exec jekyll serve -H 0.0.0.0