mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-23 21:02:09 +00:00
Move resume to "about"
Define a redirect alias too. This also entails special xhtmlize behavior as redirects in Hugo don't use trailing slashes.
This commit is contained in:
parent
10259af99c
commit
33b3c5211a
3 changed files with 15 additions and 18 deletions
|
@ -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"
|
||||
|
|
|
@ -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<wbr />.one](https://seirdy.one/) | [seirdy<wbr />@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/<wbr />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<wbr />/~seirdy<wbr />/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<wbr />/~seirdy<wbr />/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.
|
||||
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue