27 lines
774 B
Typst
27 lines
774 B
Typst
// Imports
|
|
#import "@preview/brilliant-cv:2.0.3": cvSection, cvSkill, hBar
|
|
#let metadata = toml("../metadata.toml")
|
|
#let cvSection = cvSection.with(metadata: metadata)
|
|
|
|
|
|
#cvSection("Kenntnisse")
|
|
|
|
#cvSkill(
|
|
type: [Sprachen],
|
|
info: [Deutsch (flüssig) #hBar() Englisch (fast flüssig)],
|
|
)
|
|
|
|
#cvSkill(
|
|
type: [generelle IT],
|
|
info: [Container (Docker, Kubernetes) #hBar() Linux Systeme (Debian, NixOS, Archlinux) #hBar() POSIX-Shell #hBar() allgemeine Cybersicherheit],
|
|
)
|
|
|
|
#cvSkill(
|
|
type: [Programmieren],
|
|
info: [allgemeine Begrifflichkeiten & Konzepte (Server-Client Modell, primitive Datentypen etc.) #hBar() Python #hBar() Rust #hBar() Nix (siehe NixOS)],
|
|
)
|
|
|
|
// #cvSkill(
|
|
// type: [Personal Interests],
|
|
// info: [Swimming #hBar() Cooking #hBar() Reading],
|
|
// )
|