From acfbf0bc8895a9669df0e7a5a6f7a1a652643b33 Mon Sep 17 00:00:00 2001 From: askiiart Date: Wed, 20 Nov 2024 08:41:44 -0600 Subject: [PATCH 1/4] add resume --- feed.xml | 6 ++++- resume.html | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++ resume.md | 46 ++++++++++++++++++++++++++++++++ run.sh | 1 + sitemap.xml | 1 + 5 files changed, 129 insertions(+), 1 deletion(-) create mode 100644 resume.html create mode 100644 resume.md diff --git a/feed.xml b/feed.xml index 735ed45..e08aa69 100755 --- a/feed.xml +++ b/feed.xml @@ -5,7 +5,11 @@ Benjamin Zimmerman's webfolio The feed for my webfolio, I guess https://engl-webfolio.askiiart.net - Tue, 12 Nov 2024 15:46:22 +0000 + Wed, 20 Nov 2024 14:41:23 +0000 + + Resume + https://askiiart.net/resume.html + \ No newline at end of file diff --git a/resume.html b/resume.html new file mode 100644 index 0000000..9a49379 --- /dev/null +++ b/resume.html @@ -0,0 +1,76 @@ + + + + + Resume + + + + +

Resume

+

Benjamin Zimmerman
+ [email redacted for public release]
+ [phone redacted for public release]

+

Summary

+

I'm a tech nerd in high school and college, I run a + programming club, and I'm fluent in several programming + languages, with a portfolio of past projects to back me up.

+

Skills and other traits

+ +

Academics

+ +

Organizations and + hobbies

+ +

Portfolio

+ +

References available upon request

+ + + diff --git a/resume.md b/resume.md new file mode 100644 index 0000000..b179884 --- /dev/null +++ b/resume.md @@ -0,0 +1,46 @@ +# Resume + +Benjamin Zimmerman\ +[email redacted for public release]\ +[phone redacted for public release] + +## Summary + +I'm a tech nerd in high school *and* college, I run a programming club, +and I'm fluent in several programming languages, with a +portfolio of past projects to back me up. + +## Skills and other traits + +- Fluent in Rust, Python, Java, Bash, and C++ +- Quick learner + - Particularly in computer science and programming topics +- Proficient with Windows and Linux +- Skilled with Docker and containerization +- Experience with multithreading + +## Academics + +- Associate of Applied Science in Programming, degree anticipated 2025 + - Tarrant County College Northeast Campus, Hurst, Texas + - Current GPA 3.0 + - 73 credits completed +- High school, diploma anticipated 2025 + - Collegiate Academy of Birdville, Haltom City, Texas + - Current GPA 99.9 +- Fixing computers as a side business for more than half a decade. + +## Organizations and hobbies + +- Cofounder and current vice president of the [TCCD CompSci and Coding Club](https://tccdcode.club). +- Hobby system administrator of more than a dozen services on my own server. + +## Portfolio + +- [Parcut (Pacman Repo Cleanup Tool)](https://git.askiiart.net/askiiart/parcut) +- [Disk Read Benchmark](https://git.askiiart.net/askiiart/disk-read-benchmark) +- [Updog](https://git.askiiart.net/askiiart/updog) + - An extensible uptime monitor +- [My website](https://askiiart.net) + +References available upon request diff --git a/run.sh b/run.sh index 698e26a..ef8615f 100755 --- a/run.sh +++ b/run.sh @@ -5,3 +5,4 @@ SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd) cd $SCRIPT_DIR ./md2html.sh ./generate-rss.sh +./generate-sitemap.sh \ No newline at end of file diff --git a/sitemap.xml b/sitemap.xml index e7fb793..0849004 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1,3 +1,4 @@ https://engl-webfolio.askiiart.net/index.html +https://engl-webfolio.askiiart.net/resume.html From 7bbe3d807b8c80860d2273c2eeaac16ee61f9a25 Mon Sep 17 00:00:00 2001 From: askiiart Date: Wed, 20 Nov 2024 08:44:44 -0600 Subject: [PATCH 2/4] fix css on other devices --- style.css | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/style.css b/style.css index 0c776b7..acbdfe9 100755 --- a/style.css +++ b/style.css @@ -82,28 +82,6 @@ code { .force-word-wrap pre code { white-space: normal; word-wrap: break-word; - } - -@media (max-device-width: 1200px) { - h1 { - line-height: 1.2; - font-size: 40px; - } - - h2 { - line-height: 1.2; - font-size: 30px; - } - - body { - font-size: 20px; - } -} - -@media print { - body { - max-width: none - } } footer { @@ -148,3 +126,25 @@ img { background-color: #047baa; color: #fff; } + +@media (max-device-width: 1200px) { + h1 { + line-height: 1.2; + font-size: 40px; + } + + h2 { + line-height: 1.2; + font-size: 30px; + } + + body { + font-size: 20px; + } +} + +@media print { + body { + max-width: none + } +} \ No newline at end of file From 091994c72f0963b47ba11badb8be0b548736b6a8 Mon Sep 17 00:00:00 2001 From: askiiart Date: Wed, 20 Nov 2024 08:44:55 -0600 Subject: [PATCH 3/4] add resume to navbar --- feed.xml | 2 +- index.html | 1 + resume.html | 1 + template.html | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/feed.xml b/feed.xml index e08aa69..55d10dd 100755 --- a/feed.xml +++ b/feed.xml @@ -5,7 +5,7 @@ Benjamin Zimmerman's webfolio The feed for my webfolio, I guess https://engl-webfolio.askiiart.net - Wed, 20 Nov 2024 14:41:23 +0000 + Wed, 20 Nov 2024 14:43:51 +0000 Resume https://askiiart.net/resume.html diff --git a/index.html b/index.html index bd7ae4a..92dbf98 100644 --- a/index.html +++ b/index.html @@ -8,6 +8,7 @@

Webfolio

diff --git a/resume.html b/resume.html index 9a49379..68a8011 100644 --- a/resume.html +++ b/resume.html @@ -8,6 +8,7 @@

Resume

diff --git a/template.html b/template.html index 9a48ba0..793e3e2 100755 --- a/template.html +++ b/template.html @@ -8,6 +8,7 @@ $body$ From b04bda2eaac61d28e2131d9b145720a9cba37bb9 Mon Sep 17 00:00:00 2001 From: askiiart Date: Wed, 20 Nov 2024 08:49:15 -0600 Subject: [PATCH 4/4] misc small updates --- index.html | 4 +++- index.md | 4 +++- resume.html | 1 + template.html | 1 + 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 92dbf98..c6057f0 100644 --- a/index.html +++ b/index.html @@ -8,11 +8,12 @@

Webfolio

-

Helloooooo

+

About Me

I'm Benjamin Zimmerman, and this is my webfolio for Business and Technical Writing. The code is available here @@ -24,6 +25,7 @@

+

This site has some stuff, read it if you want.