From cd360661b3d7b462d8fec24f418df6221c129c33 Mon Sep 17 00:00:00 2001 From: shockrah Date: Wed, 5 Feb 2020 19:37:44 -0800 Subject: [PATCH] switched order of projecst/ experience sections also added more projects --- config.toml | 17 +++++++++++------ layouts/index.html | 27 +++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 6 deletions(-) create mode 100644 layouts/index.html diff --git a/config.toml b/config.toml index 57f4a38..3e439ff 100644 --- a/config.toml +++ b/config.toml @@ -115,27 +115,32 @@ theme = "sada" [[params.projects.list]] title = "Homebrew Operating system" url = "https://gitlab.com/shockrah/jankos" - description = "x86 based operating system written from scratch using C, x86 assembly, and built with GNU Make." + description = "x86 based operating system written from scratch using C, x86 assembly, and built with GNU Make. Written for personal academic purposes." [[params.projects.list]] title = "Freechat - A Decentralized Chat Platform" url = "https://gitlab.com/shockrah/freechat" - description = "Built with a Rust backend(Rocket) serving a restful API, SQL database, and an official app built with ElectonJS for connecting to a server." + description = "Web based chat server built with Rust. Endpoints are served on a restful API, which often hooks into an SQL database. Testing is also handled using Cargo's built in testing configuration features." [[params.projects.list]] title = "ESP8266 Promiscuous Wifi Detection" url = "https://gitlab.com/shockrah/wifi-sens" - description = "Library which allows for wifi sniffing using some hidden features of the controller." + description = "Wifi scanning via an ESP-8266 and Arduino. Built using reverse engineered Xtensa library features in C." [[params.projects.list]] - title = "Bash Generated Blog" + title = "Static Site Generator in Bash" url = "https://gitlab.com/shockrah/shockrah-city" - description = "Personal blog built automatically built through shell scripts and markdown." + description = "Personal blog built automatically built through shell scripts and markdown. All content can be built via a static site generator written in pure Bash script." [[params.projects.list]] title = "DWM Shell Scripts" url = "https://gitlab.com/shockrah/shell-scripts" - description = "Collection of shell scripts for those running DWM" + description = "Linux based shell scripts which are used to improve a user's experience with tiling window managers like DWM or i3WM." + + [[params.projects.list]] + title = "OBS Stream Song Extension" + url = "https://gitlab.com/shockrah/obs-song-name" + description = "Chrome extension written to pull in the name of a song currentl playing on Youtube or Soundcloud to a local server written in Rust. Both are deployed to Gitlab for easy download via a continuous depolyment pipeline using docker." # Skills section diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..b70ae49 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,27 @@ + + + {{ partial "head.html" . }} + + + {{ partial "header.html" . }} +
+
+ {{ partial "education.html" . }} +
+ {{ partial "language.html" . }} +
+ {{ partial "hobby.html" . }} +
+ +
+ {{ partial "project.html" . }} + {{ partial "experience.html" . }} + {{ partial "skill.html" . }} +
+
+ + {{ partial "footer.html" . }} + +