diff options
Diffstat (limited to 'build/website')
-rwxr-xr-x | build/website/about/source/compile | 3 | ||||
-rw-r--r-- | build/website/about/source/resume.ms | 66 | ||||
-rw-r--r-- | build/website/about/source/resume.pdf | bin | 0 -> 18644 bytes | |||
-rw-r--r-- | build/website/projects/dotfiles.html | 53 |
4 files changed, 122 insertions, 0 deletions
diff --git a/build/website/about/source/compile b/build/website/about/source/compile new file mode 100755 index 0000000..9078e19 --- /dev/null +++ b/build/website/about/source/compile @@ -0,0 +1,3 @@ +#!/bin/sh + +tbl resume.ms -T pdf | groff -ms -T pdf > resume.pdf diff --git a/build/website/about/source/resume.ms b/build/website/about/source/resume.ms new file mode 100644 index 0000000..f70b4af --- /dev/null +++ b/build/website/about/source/resume.ms @@ -0,0 +1,66 @@ +.fam T +.nr PS 10p +.nr VS 15p +.ds CH +.defcolor headingcolor rgb 0.5f 0.5f 0.5f +.defcolor linecolor rgb 0.6f 0.6f 0.6f + +.de heading +. nf +. ps 14 +. B "\\$1" +\h’0n’\v’-1.2n’\ +\m[headingcolor]\ +\l’\\n(.lu\(ul’\ +\m[default] +. ps 10 +. sp -.2 +. fi +.. + +.ce 2 +.ps 18 +.B "Preston S. Pan" +.ps 10 +preston@nullring.xyz +.TS +tab(;) nospaces; +l rx. +Main Road 66; +Victoria, 66788;T{ +.I "+12 42 99 666" +T} +Wonderland;T{ +.I "https://prestonpan.tech" +T} +.TE + +.heading "Summary" +.LP +I'm a student in Victoria that is experienced with anything related +to software, mathematics, physics, and anything regarding sysadmining. +I also play the piano and have been for 11 years. + +.heading "Professional Experience" +.TS +tab(;) nospaces; +rW15|lx. +\m[default]2019 - today\m[linecolor];T{ +.B "Development Engineer at Creative Pros" +\(en Awesometown, Wonderland +.br +Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium +doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore +veritatis et quasi architecto beatae vitae dicta sunt explicabo. +.sp .5 +T} +\m[default]2010 - 2019\m[linecolor];T{ +.B "Professional Expert at Dreamworx" +\(en Somefareaway, Neverland +.br +Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed +quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. +.sp .5 +T} +.TE +\m[default] diff --git a/build/website/about/source/resume.pdf b/build/website/about/source/resume.pdf Binary files differnew file mode 100644 index 0000000..b3fdeb8 --- /dev/null +++ b/build/website/about/source/resume.pdf diff --git a/build/website/projects/dotfiles.html b/build/website/projects/dotfiles.html new file mode 100644 index 0000000..1dbaa8d --- /dev/null +++ b/build/website/projects/dotfiles.html @@ -0,0 +1,53 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <meta name="description" content="My personal website."> + <meta name="author" content="Preston Pan"> + <link rel="stylesheet" type="text/css" href="/css/style.css" /> + + <link rel="icon" type="image/png" href="/img/favicon.png"> + <title> +Dotfiles + </title> +</head> +<body> + <div class="nav" class="justcenter"> + <a href="/index.html" class="justleft">Home</a> | + <a href="/about/" class="justleft">About</a> | + <a href="/about/contact.html" class="justleft">Contact</a> + | <a href="./index.html">Back</a> + <hr> + </div> + + <div class="content"> +<h1>Dotfiles</h1> +<p> + My dotfiles are dracula themed and are inspired by <a href="https://lukesmith.xyz">Luke Smith's</a> + <a href="https://github.com/LukeSmithxyz/voidrice/">voidrice</a> dotfiles. All the builds of suckless + software are original builds, and there is a decent amount of originality in my dotfiles as well. +</p> + +<p> + I will make an install script for my dotfiles and suckless builds at a later date, probably for common distributions like + Arch, Void, and Debian specifically. Included are two wallpapers, one made by the folks that make + <a href="https://draculatheme.com"> the dracula theme</a>, and one of them was a picture taken by + <a href="https://kaistevenson.com">Kai Stevenson</a>. I trust that you'll figure out which one's which. +</p> + +<p>You can get the dotfiles here:</p> +<code>git clone git://prestonpan.tech/dotfiles_dracula.git</code> + +<p>And given a certain suckless program, you can clone my version like this:</p> +<code>git clone git://prestonpan.tech/[suckless_program]_dracula.git</code> + +<p> + If you still have problems getting the copies of the software, you can + <a href="https://git.prestonpan.tech">browse my git frontend</a> for the software + names. +</p> + </div> +</body> +</html> |