diff --git a/config.toml b/config.toml index 29c43dd..830e905 100644 --- a/config.toml +++ b/config.toml @@ -70,13 +70,6 @@ disableKinds = ["taxonomy", "term"] url = "/meta/" weight = 40 - [[menu.main]] - identifier = "resume" - name = "Resume" - title = "resume" - url = "/resume/" - weight = 50 - [[menu.main]] identifier = "Support" name = "Support" diff --git a/content/resume/index.md b/content/about/resume.md similarity index 94% rename from content/resume/index.md rename to content/about/resume.md index 14ed797..32ce452 100644 --- a/content/resume/index.md +++ b/content/about/resume.md @@ -3,24 +3,23 @@ date: "2021-01-23T12:21:38-08:00" keywords: intern, python, golang, go, lua, moonscript, shell, bash, zsh, posix, java, haskell, C, influxdb, influxdata, chronograf, grafana, kapacitor, numpy, scipy, pandas, jupyter, docker, podman, buildah, skopeo, kubernetes, openshift, cloud native, physics, jenkins, git, gitlab, github, linux, bsd, red hat, fedora, debian, ubuntu, opensuse, suse title: Rohan Kumar description: "Detail-oriented, committed, self-motivated, OSS enthusiast proficient in Python, Go, Linux/UNIX systems, and cloud-native computing looking for an internship." +aliases: + - "/resume/" disableMeta: true --- [https://seirdy.one](https://seirdy.one/) | [seirdy@seirdy.one](mailto:seirdy@seirdy.one) Detail oriented, committed, self-motivated, open-source enthusiast proficient in Python, Go, Linux/UNIX systems, and cloud-native computing looking for an internship. -Education: Lewis and Clark College ----------------------------------- +## Education: Lewis and Clark College Bachelor of Arts, Major in Math and Computer Science. Fall 2018 - Spring 2023 (expected) -Certifi­cations {#certifications} -------------------- +## Certifi­cations {#certifications} CompTIA Security+ (SY0-601), Dec. 2021. Verification available upon request. -Work Experience ---------------- +## Work Experience ### June-August 2019: Software Engineering Intern, SAP Ariba, Palo Alto @@ -30,8 +29,7 @@ Developed an anomaly detection and seasonal forecasting tool in Go (Golang) to s Worked with a remote team on YAML-based data serialization and validation of data streamed in from Redfish and Selenium test suites to ensure compliance with a schema. Developed Redshift and Selenium tests for Cisco Intersight's APIs and user interface. Used Python. -Technical Skills ----------------- +## Technical Skills - Cloud-native technologies: Docker Podman, Buildah, Skopeo, Kubernetes, OpenShift 4. - Operating systems: Linux, BSD, Windows, macOS. Able to adapt to any UNIX-like environment. @@ -41,13 +39,14 @@ Technical Skills - Python: Familiar with math and data science libraries such as the SciPy stack, Jupyter notebooks, and Pandas. - Other tools: Git, Continuous Integration/Delivery (Jenkins, GitLab CI, Travis CI), Nginx. -Portfolio ---------- +## Portfolio Git repositories mirrored across [Sourcehut](https://sr.ht/~seirdy), [GitHub](https://github.com/Seirdy), and [GitLab](https://gitlab.com/Seirdy). Selected projects: + [Clogstats: sr.ht/~seirdy/clogstats](https://sr.ht/~seirdy/clogstats) : Gathers IRC channel activity statistics from WeeChat logs and performs time-series analysis and forecasting on them. It can quantify, rank, and chart chatting activity over time and display forecasts. It can also detect anomalous increases in activity. Written in Python with NumPy and Pandas. [MOAC: sr.ht/~seirdy/MOAC](https://sr.ht/~seirdy/MOAC/) : Analyze password strength given physical limits to computing, and generate secure passwords. Computes theoretical limits to a brute-force attack limited by given physical quantities (mass, energy, power, temperature, etc.) and generates passwords to withstand them. This provides a future-proof understanding of password strength. Extensively tested. Written in Go. + diff --git a/scripts/xhtmlize.sh b/scripts/xhtmlize.sh index c18d856..dca15c9 100644 --- a/scripts/xhtmlize.sh +++ b/scripts/xhtmlize.sh @@ -8,12 +8,18 @@ set -e -u output_dir="$1" script_dir="$(dirname "$0")" +temp_resume="$(mktemp)" + +# I have an alias for a redirect. I also define the redirect in Nginx, but this is there for the envs.net/~seirdy mirror. Hugo aliases don't have trailing slashes; this will trip up xmllint. +sed -i -E -e 's#<((link|meta) .*)">#<\1" />#' "$output_dir/resume/index.html" +mv "$output_dir/resume/index.html" "$temp_resume" { printf '\t' && sed -e '7q;d' "$output_dir/index.html" } >"$output_dir/tmp.css" cleanup() { rm -f "$output_dir/tmp.css" + mv "$temp_resume" "$output_dir/resume/index.html" } trap cleanup EXIT @@ -21,4 +27,3 @@ export XMLLINT_INDENT=' ' export OUTPUT_DIR="$output_dir" find "$output_dir" -type f -name '*.html' -exec sh "$script_dir/xhtmlize-single-file.sh" {} \; find "$output_dir" -type f -name '*.xml' -exec xmllint --noblanks --encode UTF-8 --noent {} --output {} \; -# done