diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 032b115..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,42 +0,0 @@ -pipeline { - agent { docker { image 'httpd' } } - stages { - stage('build') { - steps { - sh 'echo "building"' - sh 'id' - sh "cd scripts ; bash -x ./build-website.sh" - sh "su - root -c apachectl restart" - } - } - stage('test') { - steps { - sh 'echo "testing"' - input "Testing complete. Proceed to deployment?" - } - } - stage('deploy') { - steps { - sh 'echo "deploying"' - } - } - } - post { - always { - echo 'This will always run' - } - success { - echo 'This will run only if successful' - } - failure { - echo 'This will run only if failed' - } - unstable { - echo 'This will run only if the run was marked as unstable' - } - changed { - echo 'This will run only if the state of the Pipeline has changed' - echo 'For example, if the Pipeline was previously failing but is now successful' - } - } -} diff --git a/blog/.data.json b/blog/.data.json new file mode 100644 index 0000000..740b3b2 --- /dev/null +++ b/blog/.data.json @@ -0,0 +1,87 @@ +{"data":[ + { + "title":"The First Entry", + "published_date":"Thu, 20 Jun 2019 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-000" + }, + { + "title":"The Migration", + "published_date":"Wed, 07 Aug 2019 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-001" + }, + { + "title":"Configuring Dynamic DNS Records", + "published_date":"Thu, 29 Aug 2019 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-002" + }, + { + "title":"? Matched Expression Does Not Match in Perl", + "published_date":"Wed, 18 Sep 2019 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-003" + }, + { + "title":"The SBC Change", + "published_date":"Mon, 02 Mar 2020 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-004" + }, + { + "title":"A Hit of Kubernetes", + "published_date":"Thu, 21 May 2020 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-005" + }, + { + "title":"Optimizing Web Pages and File Sizes", + "published_date":"Fri, 22 May 2020 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-006" + }, + { + "title":"Some Website Design and CSS", + "published_date":"Mon, 08 Jun 2020 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-007" + }, + { + "title":"Git and Bash The Site", + "published_date":"Thu, 02 Jul 2020 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-008" + }, + { + "title":"A Birth In The Family", + "published_date":"Sun, 26 Jul 2020 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-009" + }, + { + "title":"Programming Anxiety", + "published_date":"Thu, 13 Aug 2020 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-010" + }, + { + "title":"LXC and Friends", + "published_date":"Thu, 20 Aug 2020 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-011" + }, + { + "title":"Migrating Everything to Proxmox - Part 1", + "published_date":"Mon, 30 Nov 2020 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-012" + }, + { + "title":"A Brief Goodbye to CentOS", + "published_date":"Wed, 09 Dec 2020 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-013" + }, + { + "title":"A Walk Along The Side", + "published_date":"Tue, 27 Jul 2021 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-014" + }, + { + "title":"A Taste of Progress", + "published_date":"Sat, 23 Oct 2021 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-015" + }, + { + "title":"Fighting With The Past", + "published_date":"Sat, 29 Mar 2022 00:00:00 +0800", + "guid":"https://www.clementchiew.me/blog/blog-016" + } +]} diff --git a/blog/.rss.item.template b/blog/.rss.item.template new file mode 100644 index 0000000..cfff709 --- /dev/null +++ b/blog/.rss.item.template @@ -0,0 +1,10 @@ + +TITLE +https://www.clementchiew.me/blog/blog-CURRENTINT +clementchiew95@disroot.org (Clement Chiew) + +$item + +PUBDATE +GUID + diff --git a/blog/.rss.template b/blog/.rss.template new file mode 100644 index 0000000..aa27781 --- /dev/null +++ b/blog/.rss.template @@ -0,0 +1,15 @@ + + + My Little Spot + https://www.clementchiew.me + + en-us + PUBDATE + PUBDATE + https://www.rssboard.org/rss-specification + Some random bash scripts + clementchiew95@disroot.org (Clement Chiew) + clementchiew95@disroot.org (Clement Chiew) + $itemlist + + diff --git a/blog/content--01 b/blog/content--01 index f452b25..c21a5dc 100644 --- a/blog/content--01 +++ b/blog/content--01 @@ -4,6 +4,7 @@