commit fdffac250f52f70d1812d8a4c443f151e740bf7e Author: askiiart Date: Wed Mar 22 15:37:47 2023 -0500 Intial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fd4dfe0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +repo/ +archives/ +media/ diff --git a/.well-known/matrix/server b/.well-known/matrix/server new file mode 100755 index 0000000..4f1a9aa --- /dev/null +++ b/.well-known/matrix/server @@ -0,0 +1 @@ +{ "m.server": "matrix.askiiart.net:443" } diff --git a/askiiart.gif b/askiiart.gif new file mode 100755 index 0000000..45e3cfb Binary files /dev/null and b/askiiart.gif differ diff --git a/index.html b/index.html new file mode 100755 index 0000000..d8d9266 --- /dev/null +++ b/index.html @@ -0,0 +1,74 @@ + + + + + askiiart's site + + + +

askiiart’s site

+

I’m a hobby programmer, and co-founder and vice president of the TCCD CompSci and Coding Club. This is my site.

+ + + + +

Cool Stuff

+ + + diff --git a/index.md b/index.md new file mode 100755 index 0000000..a49ea1f --- /dev/null +++ b/index.md @@ -0,0 +1,43 @@ +# askiiart's site + +I'm a hobby programmer, and co-founder and vice president of the TCCD CompSci and Coding Club. This is my site. + +## Personal links: + +- [Gitea](https://git.askiiart.net/askiiart) (my main git thing) +- [GitHub](https://github.com/askiiart) +- [Codeberg](https://codeberg.org/TCCD-CompSci-and-Coding-Club/) (rarely used, aside from club stuff) +- [Mastodon](https://infosec.exchange/@askiiart) +- [Hacker News](https://news.ycombinator.com/user?id=askiiart) +- Discord: [askiiart#5353](https://discord.com/users/552658564368302092) +- Email: [dev@askiiart.net](mailto:dev@askiiart.net) + +## Site Links + +- [Gitea](https://git.askiiart.net/) +- [The archives](/archives/) + - If there's something I should add to the archives, contact me on Discord. + - Additionally, there's [this section](/archives/iso-and-stuff/Windows/) of the archives with nearly every piece Windows installation media there is - even server, IoT, and embedded versions. Get your Windows ISOs here! +- [My yum repo](https://askiiart.net/repo/) + - A yum repo for stuff I add. I'll probably make it into an NVIDIA 470 driver repo because [NVIDIA is a pain](https://www.youtube.com/watch?v=IVpOyKCNZYw). +- [Element](https://element.askiiart.net/) + - It's element, the Matrix client +- [LibReddit](https://libreddit.askiiart.net/) + - A Reddit frontend +- [Nitter](https://nitter.askiiart.net/) + - An ad-free Twitter frontend +- [Composerize](https://composerize.askiiart.net/) + - Convert docker run to docker compose. +- [Invidious](https://invidious.askiiart.net/) + - A privacy-focused, ad-free YouTube frontend +- [Status](https://status.askiiart.net/) + - The status page for all the publicly accessible stuff. +- [Bibliogram](https://bibliogram.askiiart.net/applysettings/3bb4944d6d346268ae9bd84f42bc9a51) + - An alternative frontend to Instagram + +## Cool Stuff + +- [StreetPass for Mastodon](https://streetpass.social/) + - Basically Nintendo StreetPass, but for Mastodon +- [Best Motherf**king Website](https://bestmotherfucking.website/) + - A fantastic looking, satirical website, mocking things including but not limited to: "5MB background video\[s\] of hipsters poking at their iPhones" diff --git a/md2html.py b/md2html.py new file mode 100755 index 0000000..f8e5093 --- /dev/null +++ b/md2html.py @@ -0,0 +1,13 @@ +import os +from glob import glob + +# pandoc --data-dir /big-stuff/files/websites/personal-site/html --template template.html -t html -o index.html index.md +os.chdir('/big-stuff/files/websites/personal-site/html') +md_files = glob('*.md') +md_files_no_ext = [] + +for item in md_files: + md_files_no_ext.append(item[:-3]) + +for item in md_files_no_ext: + os.system(f'pandoc --data-dir /big-stuff/files/websites/personal-site/html --template template.html -t html -o {item}.html {item}.md') diff --git a/style.css b/style.css new file mode 100755 index 0000000..a6a8608 --- /dev/null +++ b/style.css @@ -0,0 +1,20 @@ +@media{ + body {color:#eee;background:#060606} + a:link {color:#80c47b} + a:hover, a:visited:hover {color:#6bb794} + a:visited {color:#80c47b} +} +body{ + margin:1em auto; + max-width:100em; + padding:0 .62em; + font:1.0em/1.35 sans-serif +} +h1,h2,h3 { + line-height:1.2 +} +@media print{ + body{ + max-width:none + } +} diff --git a/template.html b/template.html new file mode 100755 index 0000000..53b448e --- /dev/null +++ b/template.html @@ -0,0 +1,11 @@ + + + + + askiiart's site + + + + $body$ + +