From 1cff99cbe3656637b58d0bb2b0086476aa49ac2e Mon Sep 17 00:00:00 2001 From: Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: nift --- .nift/404.info.json | 12 +++++ .nift/config.json | 21 +++++++++ .nift/e/index.info.json | 12 +++++ .nift/err.info.json | 12 +++++ .nift/index.info.json | 12 +++++ .nift/p/index.info.json | 12 +++++ .nift/sql/index.info.json | 12 +++++ .nift/tracked.json | 44 +++++++++++++++++ .nift/w/index.info.json | 12 +++++ .nift/wf/index.info.json | 12 +++++ 404.html | 25 +++++++++- 404.tpl | 2 + README | 7 +-- e/index.html | 25 +++++++++- e/m.htm | 3 -- err.html | 24 ++++++++++ err.tpl | 2 + gen | 19 -------- gh/index.html | 1 - gh/m.htm | 4 -- gh/sql/index.html | 1 - gh/sql/m.htm | 4 -- gh/w/index.html | 1 - gh/w/m.htm | 4 -- gh/wf/index.html | 1 - gh/wf/m.htm | 4 -- h/index.html | 1 - h/m.htm | 3 -- index.html | 25 +++++++++- index.tpl | 2 + m.htm | 15 ------ p/index.html | 27 ++++++++++- p/index.tpl | 4 ++ p/m.htm | 5 -- sql/index.html | 39 ++++++++++++++- sql/index.tpl | 16 +++++++ sql/m.htm | 16 ------- tpl/foot.tpl | 3 ++ tpl/head.tpl | 5 ++ tpl/main.tpl | 17 +++++++ w/index.html | 118 +++++++++++++++++++++++++++++++++++++++++++++- w/index.tpl | 95 +++++++++++++++++++++++++++++++++++++ w/m.htm | 96 ------------------------------------- wf/index.html | 43 ++++++++++++++++- wf/index.tpl | 20 ++++++++ wf/m.htm | 20 -------- 46 files changed, 648 insertions(+), 210 deletions(-) create mode 100644 .nift/404.info.json create mode 100644 .nift/config.json create mode 100644 .nift/e/index.info.json create mode 100644 .nift/err.info.json create mode 100644 .nift/index.info.json create mode 100644 .nift/p/index.info.json create mode 100644 .nift/sql/index.info.json create mode 100644 .nift/tracked.json create mode 100644 .nift/w/index.info.json create mode 100644 .nift/wf/index.info.json create mode 100644 404.tpl delete mode 100644 e/m.htm create mode 100644 err.html create mode 100644 err.tpl delete mode 100755 gen delete mode 100644 gh/index.html delete mode 100644 gh/m.htm delete mode 100644 gh/sql/index.html delete mode 100644 gh/sql/m.htm delete mode 100644 gh/w/index.html delete mode 100644 gh/w/m.htm delete mode 100644 gh/wf/index.html delete mode 100644 gh/wf/m.htm delete mode 100644 h/index.html delete mode 100644 h/m.htm create mode 100644 index.tpl delete mode 100644 m.htm create mode 100644 p/index.tpl delete mode 100644 p/m.htm create mode 100644 sql/index.tpl delete mode 100644 sql/m.htm create mode 100644 tpl/foot.tpl create mode 100644 tpl/head.tpl create mode 100644 tpl/main.tpl create mode 100644 w/index.tpl delete mode 100644 w/m.htm create mode 100644 wf/index.tpl delete mode 100644 wf/m.htm diff --git a/.nift/404.info.json b/.nift/404.info.json new file mode 100644 index 0000000..3b28f63 --- /dev/null +++ b/.nift/404.info.json @@ -0,0 +1,12 @@ +{ + "last-built": "05:29:09 Tuesday February 04 2025", + "name": "404", + "title": "Error", + "template": "tpl/main.tpl", + "dependencies": [ + "./404.tpl", + "tpl/foot.tpl", + "tpl/head.tpl", + "tpl/main.tpl" + ] +} \ No newline at end of file diff --git a/.nift/config.json b/.nift/config.json new file mode 100644 index 0000000..492b724 --- /dev/null +++ b/.nift/config.json @@ -0,0 +1,21 @@ +{ + "config": { + "content-dir": "./", + "content-ext": ".tpl", + "output-dir": "./", + "output-ext": ".html", + "script-ext": ".py", + "default-template": "tpl/main.tpl", + "backup-scripts": true, + "build-threads": -1, + "paginate-threads": 4, + "incremental-mode": "modified", + "root-branch": "m", + "output-branch": "m", + "lolcat-default": false, + "lolcat-cmd": "nift lolcat-cc -f", + "terminal": "", + "unix-editor": "vi", + "windows-editor": "notepad" + } +} diff --git a/.nift/e/index.info.json b/.nift/e/index.info.json new file mode 100644 index 0000000..fe60100 --- /dev/null +++ b/.nift/e/index.info.json @@ -0,0 +1,12 @@ +{ + "last-built": "05:29:09 Tuesday February 04 2025", + "name": "e/index", + "title": "Error", + "template": "tpl/main.tpl", + "dependencies": [ + "./e/index.tpl", + "tpl/foot.tpl", + "tpl/head.tpl", + "tpl/main.tpl" + ] +} \ No newline at end of file diff --git a/.nift/err.info.json b/.nift/err.info.json new file mode 100644 index 0000000..9799941 --- /dev/null +++ b/.nift/err.info.json @@ -0,0 +1,12 @@ +{ + "last-built": "05:29:09 Tuesday February 04 2025", + "name": "err", + "title": "Error", + "template": "tpl/main.tpl", + "dependencies": [ + "./err.tpl", + "tpl/foot.tpl", + "tpl/head.tpl", + "tpl/main.tpl" + ] +} \ No newline at end of file diff --git a/.nift/index.info.json b/.nift/index.info.json new file mode 100644 index 0000000..87c8ae8 --- /dev/null +++ b/.nift/index.info.json @@ -0,0 +1,12 @@ +{ + "last-built": "05:32:59 Tuesday February 04 2025", + "name": "index", + "title": "Home", + "template": "tpl/main.tpl", + "dependencies": [ + "./index.tpl", + "tpl/foot.tpl", + "tpl/head.tpl", + "tpl/main.tpl" + ] +} \ No newline at end of file diff --git a/.nift/p/index.info.json b/.nift/p/index.info.json new file mode 100644 index 0000000..64abcc9 --- /dev/null +++ b/.nift/p/index.info.json @@ -0,0 +1,12 @@ +{ + "last-built": "05:29:09 Tuesday February 04 2025", + "name": "p/index", + "title": "Projects", + "template": "tpl/main.tpl", + "dependencies": [ + "./p/index.tpl", + "tpl/foot.tpl", + "tpl/head.tpl", + "tpl/main.tpl" + ] +} \ No newline at end of file diff --git a/.nift/sql/index.info.json b/.nift/sql/index.info.json new file mode 100644 index 0000000..93e575e --- /dev/null +++ b/.nift/sql/index.info.json @@ -0,0 +1,12 @@ +{ + "last-built": "05:29:09 Tuesday February 04 2025", + "name": "sql/index", + "title": "SQL", + "template": "tpl/main.tpl", + "dependencies": [ + "./sql/index.tpl", + "tpl/foot.tpl", + "tpl/head.tpl", + "tpl/main.tpl" + ] +} \ No newline at end of file diff --git a/.nift/tracked.json b/.nift/tracked.json new file mode 100644 index 0000000..3fa5604 --- /dev/null +++ b/.nift/tracked.json @@ -0,0 +1,44 @@ +{ + "tracked": [ + { + "name": "404", + "title": "Error", + "template": "tpl/main.tpl" + }, + { + "name": "e/index", + "title": "Error", + "template": "tpl/main.tpl" + }, + { + "name": "err", + "title": "Error", + "template": "tpl/main.tpl" + }, + { + "name": "index", + "title": "Home", + "template": "tpl/main.tpl" + }, + { + "name": "p/index", + "title": "Projects", + "template": "tpl/main.tpl" + }, + { + "name": "sql/index", + "title": "SQL", + "template": "tpl/main.tpl" + }, + { + "name": "w/index", + "title": "Website", + "template": "tpl/main.tpl" + }, + { + "name": "wf/index", + "title": "WinForms", + "template": "tpl/main.tpl" + } + ] +} \ No newline at end of file diff --git a/.nift/w/index.info.json b/.nift/w/index.info.json new file mode 100644 index 0000000..e8bc7e0 --- /dev/null +++ b/.nift/w/index.info.json @@ -0,0 +1,12 @@ +{ + "last-built": "05:36:13 Tuesday February 04 2025", + "name": "w/index", + "title": "Website", + "template": "tpl/main.tpl", + "dependencies": [ + "tpl/foot.tpl", + "tpl/head.tpl", + "tpl/main.tpl", + "./w/index.tpl" + ] +} \ No newline at end of file diff --git a/.nift/wf/index.info.json b/.nift/wf/index.info.json new file mode 100644 index 0000000..6399617 --- /dev/null +++ b/.nift/wf/index.info.json @@ -0,0 +1,12 @@ +{ + "last-built": "05:29:09 Tuesday February 04 2025", + "name": "wf/index", + "title": "WinForms", + "template": "tpl/main.tpl", + "dependencies": [ + "tpl/foot.tpl", + "tpl/head.tpl", + "tpl/main.tpl", + "./wf/index.tpl" + ] +} \ No newline at end of file diff --git a/404.html b/404.html index 4cc0d8c..e8188b1 100644 --- a/404.html +++ b/404.html @@ -1 +1,24 @@ -
Click here to go home
+ +Made by PORTER SWANSTROM
+Click here to go home
diff --git a/README b/README index 1d637c8..1e611da 100644 --- a/README +++ b/README @@ -1,12 +1,9 @@ -/ - index -/h - home +/ - home /e - error -/gh - GitHub -/gh/w - website GitHub -/gh/wf - WinForms GitHub /i - images /p - projects /s - CSS styles +/sql - SQL /w - website /wf - WinForms diff --git a/e/index.html b/e/index.html index 5f67107..b2f646d 100644 --- a/e/index.html +++ b/e/index.html @@ -1 +1,24 @@ -Click here to go home
+ +Made by PORTER SWANSTROM
+Redirecting in 5s
diff --git a/err.html b/err.html new file mode 100644 index 0000000..e8188b1 --- /dev/null +++ b/err.html @@ -0,0 +1,24 @@ + + + + + +Click here to go home
+ +Made by PORTER SWANSTROM
+Click here to go home
diff --git a/gen b/gen deleted file mode 100755 index 31acfa4..0000000 --- a/gen +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env sh -# generate site -find -name "m.htm" -exec sh -c ' - title=$(head -n1 ${1%/*}/m.htm | cut -d, -f1) - subdir=$(head -n1 ${1%/*}/m.htm | cut -d, -f2) - redirect=$(head -n1 ${1%/*}/m.htm | cut -d, -f3) - (cat h.htm; tail -n+2 ${1%/*}/m.htm; cat f.htm) >${1%/*}/index.html - sed -i "s,Made by PORTER SWANSTROM
Made by PORTER SWANSTROM
Made by PORTER SWANSTROM
Made by PORTER SWANSTROM
This site is currently still being built, read the log to see what's been done so far
Made by PORTER SWANSTROM
This site is currently still being built, read the - log to see what's been done so far
diff --git a/index.html b/index.html index cdbe45e..b248175 100644 --- a/index.html +++ b/index.html @@ -1 +1,24 @@ -Made by PORTER SWANSTROM
This site is currently still being built, read the + log to see what's been done so far
+ +Made by PORTER SWANSTROM
+This site is currently still being built, read the + log to see what's been done so far
diff --git a/m.htm b/m.htm deleted file mode 100644 index f3159cd..0000000 --- a/m.htm +++ /dev/null @@ -1,15 +0,0 @@ -Index,./,h -Made by PORTER SWANSTROM
Made by PORTER SWANSTROM
+w (HTML, CSS)
Website
wf (C#)
WinForms
sql (SQL, PLSQL)
SQL
w (HTML, CSS)
Website
wf (C#)
WinForms
sql (SQL, PLSQL)
SQL
This project is for archiving SQL that I wrote for my college classes. None of this is that complex, though some notable code is:
This script generates tables filled with example data for a ski resort DB. As well as a few views and indexes to demonstrate working with these tables
Contains tons of PLSQL queries
The source code is here, get it with:
git clone http://github.com/porterswanstrom/sql
Made by PORTER SWANSTROM
This project is for archiving SQL that I wrote for my +college classes. None of this is that complex, though some notable code is:
+ +This script generates tables filled with example data for a +ski resort DB. As well as a few views and indexes to +demonstrate working with these tables
Contains tons of PLSQL queries
The source code is + +here, get it with:
+git clone http://github.com/porterswanstrom/sql+ +
Made by PORTER SWANSTROM
+This project is for archiving SQL that I wrote for my +college classes. None of this is that complex, though some notable code is:
+ +This script generates tables filled with example data for a +ski resort DB. As well as a few views and indexes to +demonstrate working with these tables
Contains tons of PLSQL queries
The source code is + +here, get it with:
+git clone http://github.com/porterswanstrom/sqldiff --git a/sql/m.htm b/sql/m.htm deleted file mode 100644 index 20c91ca..0000000 --- a/sql/m.htm +++ /dev/null @@ -1,16 +0,0 @@ -SQL,../ -
This project is for archiving SQL that I wrote for my - college classes. None of this is that complex, though some notable code is:
- -This script generates tables filled with example data for a - ski resort DB. As well as a few views and indexes to - demonstrate working with these tables
Contains tons of PLSQL queries
The source code is - here, get it with:
-git clone http://github.com/porterswanstrom/sqldiff --git a/tpl/foot.tpl b/tpl/foot.tpl new file mode 100644 index 0000000..8ab170f --- /dev/null +++ b/tpl/foot.tpl @@ -0,0 +1,3 @@ +
Made by PORTER SWANSTROM
+This site started as something interesting for me to work on during my break after the Fall 2023 semester ended. It's turned out to be a fantastic excuse to learn HTML, CSS, and Git
I programmed a shell script to automatically generate the header and footer of each page. This gives me most of the convenience and consistency of an SSG, while still keeping the fine-tuned control of HTML for the main page content
There's now sitemap navigation which is nice for jumping to a specific page, it's also great for documenting the purpose of each page. I also added a photo of myself to the header, making it less empty looking. The header photo also works good as a favicon. Another thing I did was adding background images, one for dark mode and one for light mode. I'm not sure how long I'll end up keeping the backgrounds, but they're fun for the time being
I redid the header and made the CSS look nicer. There's also been lots of minor improvements like having newlines in the correct spots and lots of rewording. This site is now in a fairly stable state, so most important changes will be from either adding new pages or totally redesigning something
Every page has been moved to its own directory so that this site can use URL slugs without relying on a framework or web server. Now the URL of every page looks much cleaner. There is also an error page now so when someone tries going to a page that doesn't exist like this one, they're sent to an error page and then redirected to the homepage page after a few seconds
There's now a page for the various WinForms that I've made throughout my classes in college. I also changed this site's theme quite a bit since the last log
I got the domain name porterswanstrom.com and created two A records, one for plain porterswanstrom.com and another for w.porterswanstrom.com. the latter is setup to auto-redeploy everytime a change is made to this site, so that the changes can be tested before being deployed to porterswanstrom.com
I figured out how to get the spacing and font size to work right on mobile, so now this site looks great on mobile
I designed a light mode for this site and added CSS to set the theme depending on whether someone is using dark mode or light mode
This site has some color now, it's currently dark mode with green links, a lot of redish orange headers, and a few purple headers
I started this site on the 6th and so far the only pages are the homepage, projects page, and about page. I also started to add some basic CSS and successfully got a working header and footer
The source code is here, get it with:
git clone http://github.com/porterswanstrom/w
Made by PORTER SWANSTROM
This site started as something interesting for me to work +on during my break after the Fall 2023 semester ended. It's +turned out to be a fantastic excuse to learn HTML, CSS, and +Git
+ +I programmed a shell script to automatically generate the +header and footer of each page. This gives me most of the +convenience and consistency of an SSG, while still keeping +the fine-tuned control of HTML for the main page content
+ +There's now sitemap navigation which is nice for jumping to +a specific page, it's also great for documenting the purpose +of each page. I also added a photo of myself to the header, +making it less empty looking. The header photo also works +good as a favicon. Another thing I did was adding background +images, one for dark mode and one for light mode. I'm not +sure how long I'll end up keeping the backgrounds, but +they're fun for the time being
+ +I redid the header and made the CSS look nicer. There's +also been lots of minor improvements like having newlines +in the correct spots and lots of rewording. This site is +now in a fairly stable state, so most important changes +will be from either adding new pages or totally redesigning +something
+ +Every page has been moved to its own directory so that +this site can use URL slugs without relying on a framework +or web server. Now the URL of every page looks much cleaner. +There is also an error page now so when +someone tries going to a page that doesn't exist like +this one, they're sent to an +error page and then redirected to the +homepage page after +a few seconds
+ +There's now a page for the various + WinForms that +I've made throughout my classes in college. I also changed +this site's theme quite a bit since the last log
+ +I got the domain name porterswanstrom.com and created two +A records, one for plain porterswanstrom.com and another for +w.porterswanstrom.com. the latter is setup to auto-redeploy +everytime a change is made to this site, so that the changes +can be tested before being deployed to porterswanstrom.com
+ +I figured out how to get the spacing and font size to work +right on mobile, so now this site looks great on mobile
+ +I designed a light mode for this site and added CSS to set +the theme depending on whether someone is using dark mode or +light mode
+ +This site has some color now, it's currently dark mode +with green links, a lot of redish orange headers, and a few +purple headers
+ +I started this site on the 6th and so far the only pages +are the homepage, + projects page, and +about page. I also started to add some basic +CSS and successfully got a working header and footer
+ +The source code is +here, +get it with:
+git clone http://github.com/porterswanstrom/w ++ +
Made by PORTER SWANSTROM
+This site started as something interesting for me to work +on during my break after the Fall 2023 semester ended. It's +turned out to be a fantastic excuse to learn HTML, CSS, and +Git
+ +I programmed a shell script to automatically generate the +header and footer of each page. This gives me most of the +convenience and consistency of an SSG, while still keeping +the fine-tuned control of HTML for the main page content
+ +There's now sitemap navigation which is nice for jumping to +a specific page, it's also great for documenting the purpose +of each page. I also added a photo of myself to the header, +making it less empty looking. The header photo also works +good as a favicon. Another thing I did was adding background +images, one for dark mode and one for light mode. I'm not +sure how long I'll end up keeping the backgrounds, but +they're fun for the time being
+ +I redid the header and made the CSS look nicer. There's +also been lots of minor improvements like having newlines +in the correct spots and lots of rewording. This site is +now in a fairly stable state, so most important changes +will be from either adding new pages or totally redesigning +something
+ +Every page has been moved to its own directory so that +this site can use URL slugs without relying on a framework +or web server. Now the URL of every page looks much cleaner. +There is also an error page now so when +someone tries going to a page that doesn't exist like +this one, they're sent to an +error page and then redirected to the +homepage page after +a few seconds
+ +There's now a page for the various + WinForms that +I've made throughout my classes in college. I also changed +this site's theme quite a bit since the last log
+ +I got the domain name porterswanstrom.com and created two +A records, one for plain porterswanstrom.com and another for +w.porterswanstrom.com. the latter is setup to auto-redeploy +everytime a change is made to this site, so that the changes +can be tested before being deployed to porterswanstrom.com
+ +I figured out how to get the spacing and font size to work +right on mobile, so now this site looks great on mobile
+ +I designed a light mode for this site and added CSS to set +the theme depending on whether someone is using dark mode or +light mode
+ +This site has some color now, it's currently dark mode +with green links, a lot of redish orange headers, and a few +purple headers
+ +I started this site on the 6th and so far the only pages +are the homepage, + projects page, and +about page. I also started to add some basic +CSS and successfully got a working header and footer
+ +The source code is +here, +get it with:
+git clone http://github.com/porterswanstrom/w +diff --git a/w/m.htm b/w/m.htm deleted file mode 100644 index 542aa0b..0000000 --- a/w/m.htm +++ /dev/null @@ -1,96 +0,0 @@ -Website,../ -
This site started as something interesting for me to work - on during my break after the Fall 2023 semester ended. It's - turned out to be a fantastic excuse to learn HTML, CSS, and - Git
- -I programmed a shell script to automatically generate the - header and footer of each page. This gives me most of the - convenience and consistency of an SSG, while still keeping - the fine-tuned control of HTML for the main page content
- -There's now sitemap navigation which is nice for jumping to - a specific page, it's also great for documenting the purpose - of each page. I also added a photo of myself to the header, - making it less empty looking. The header photo also works - good as a favicon. Another thing I did was adding background - images, one for dark mode and one for light mode. I'm not - sure how long I'll end up keeping the backgrounds, but - they're fun for the time being
- -I redid the header and made the CSS look nicer. There's - also been lots of minor improvements like having newlines - in the correct spots and lots of rewording. This site is - now in a fairly stable state, so most important changes - will be from either adding new pages or totally redesigning - something
- -Every page has been moved to its own directory so that - this site can use URL slugs without relying on a framework - or web server. Now the URL of every page looks much cleaner. - There is also an error page now so when - someone tries going to a page that doesn't exist like - this one, they're sent to an - error page and then redirected to the - homepage page after a few seconds
- -There's now a page for the various - WinForms that I've made throughout my classes in college. - I also changed this site's theme quite a bit since the last - log
- -I got the domain name porterswanstrom.com and created two - A records, one for plain porterswanstrom.com and another for - w.porterswanstrom.com. the latter is setup to auto-redeploy - everytime a change is made to this site, so that the changes - can be tested before being deployed to porterswanstrom.com
- -I figured out how to get the spacing and font size to work - right on mobile, so now this site looks great on mobile
- -I designed a light mode for this site and added CSS to set - the theme depending on whether someone is using dark mode or - light mode
- -This site has some color now, it's currently dark mode - with green links, a lot of redish orange headers, and a few - purple headers
- -I started this site on the 6th and so far the only pages - are the homepage, - projects page, and about page. I also - started to add some basic CSS and successfully got a working - header and footer
- -The source code is here, - get it with:
-git clone http://github.com/porterswanstrom/w -diff --git a/wf/index.html b/wf/index.html index 8df4c9e..e8927b5 100644 --- a/wf/index.html +++ b/wf/index.html @@ -1 +1,42 @@ -
This project is for archiving the various WinForms that I've made while in college. None of these are complex, but a few notable programs are:
This program lets a user move/take pieces on a chess board and save/load the state of the chess board via a save file. There are 3 boards the user can switch between in case multiple games need monitored simultaneously
A very basic text to HTML converter that only supports paragraphs, headers, and non-inline links
The source code is here, get it with:
git clone http://github.com/porterswanstrom/wf
Made by PORTER SWANSTROM
This project is for archiving the various WinForms that +I've made while in college. None of these are complex, but +a few notable programs are:
+ +This program lets a user move/take pieces on a chess board +and save/load the state of the chess board via a save file. +There are 3 boards the user can switch between in case +multiple games need monitored simultaneously
A very basic text to HTML converter that only supports +paragraphs, headers, and non-inline links
The source code is + +here, get it with:
+git clone http://github.com/porterswanstrom/wf+ +
Made by PORTER SWANSTROM
+This project is for archiving the various WinForms that +I've made while in college. None of these are complex, but +a few notable programs are:
+ +This program lets a user move/take pieces on a chess board +and save/load the state of the chess board via a save file. +There are 3 boards the user can switch between in case +multiple games need monitored simultaneously
A very basic text to HTML converter that only supports +paragraphs, headers, and non-inline links
The source code is + +here, get it with:
+git clone http://github.com/porterswanstrom/wfdiff --git a/wf/m.htm b/wf/m.htm deleted file mode 100644 index 9da6d82..0000000 --- a/wf/m.htm +++ /dev/null @@ -1,20 +0,0 @@ -WinForms,../ -
This project is for archiving the various WinForms that - I've made while in college. None of these are complex, but - a few notable programs are:
- -This program lets a user move/take pieces on a chess board - and save/load the state of the chess board via a save file. - There are 3 boards the user can switch between in case - multiple games need monitored simultaneously
A very basic text to HTML converter that only supports - paragraphs, headers, and non-inline links
The source code is - here, get it with:
-git clone http://github.com/porterswanstrom/wf-- cgit 1.4.1