Compare commits
2 commits
e40757b5fb
...
97a222d350
Author | SHA1 | Date | |
---|---|---|---|
97a222d350 | |||
2f2cfe5139 |
2 changed files with 17 additions and 16 deletions
|
@ -2,6 +2,7 @@
|
|||
title = "CV"
|
||||
template = "page.html"
|
||||
path = "cv"
|
||||
aliases = ["CV"]
|
||||
+++
|
||||
|
||||
{% section() %}
|
||||
|
@ -13,7 +14,7 @@ path = "cv"
|
|||
| Linux | NixOS, Arch Linux, Debian, RHEL |
|
||||
| Monitoring | Grafana + (Prometheus, Telegraf, InfluxDB), VictoraMetrics, Zabbix |
|
||||
| DevOps / Automation | Ansible, Terraform, Vagrant, Git, Jenkins |
|
||||
| Networking | VPN (Wireguard, OpenVPN), Routing (RIP, OSPF, BGP) |
|
||||
| Networking | VPN (IPSec, Wireguard, OpenVPN), Routing (RIP, OSPF, BGP) |
|
||||
| Virtualization | KVM/QEMU, Proxmox, Docker |
|
||||
| Security | Server-Hardening, Security Best Practices, Vulnerability Assessment, Encryption, GPG, LUKS, TLS |
|
||||
| Scripting & Programming | Rust, Python, JavaScript, Shell, HTML, CSS, Nix |
|
||||
|
@ -24,20 +25,17 @@ path = "cv"
|
|||
|
||||
## Certifications
|
||||
|
||||
### Linux Professional Institute
|
||||
|
||||
- LPIC-1 (valid until 2028-02-13)
|
||||
|
||||
### FreeCodeCamp.org
|
||||
|
||||
- Data Analysis with Python
|
||||
- Scientific Computing with Python
|
||||
- Quality Assurance
|
||||
- Data Visualization
|
||||
- Back End Development and APIs
|
||||
- Front End Development Libraries
|
||||
- JavaScript Algorithms and Data Structures
|
||||
- Responsive Web Design
|
||||
- CompTIA Security+
|
||||
- Linux Professional Institute LPIC-1
|
||||
- Various FreeCodeCamp.org Certifications
|
||||
- Data Analysis with Python
|
||||
- Scientific Computing with Python
|
||||
- Quality Assurance
|
||||
- Data Visualization
|
||||
- Back End Development and APIs
|
||||
- Front End Development Libraries
|
||||
- JavaScript Algorithms and Data Structures
|
||||
- Responsive Web Design
|
||||
|
||||
{% end %}
|
||||
|
||||
|
|
|
@ -16,7 +16,10 @@
|
|||
src = ./.;
|
||||
nativeBuildInputs = [ pkgs.zola ];
|
||||
buildPhase = "zola build";
|
||||
installPhase = "cp -r public $out";
|
||||
installPhase = ''
|
||||
mkdir -p $out/var/www
|
||||
mv public $out/var/www/cherrykitten.dev
|
||||
'';
|
||||
};
|
||||
defaultPackage = self.packages.${system}.website;
|
||||
devShell = pkgs.mkShell {
|
||||
|
|
Loading…
Add table
Reference in a new issue