initial commit

This commit is contained in:
Geir Okkenhaug Jerstad 2024-06-18 09:46:06 +02:00
commit 0c0d14b8fb
958 changed files with 941435 additions and 0 deletions

0
posts/#hello.skr# Normal file
View file

30
posts/about.md Normal file
View file

@ -0,0 +1,30 @@
title: About
date: 2024-02-12 11:08
tags: Whoami
summary: About me
---
# About
Hello stranger,
This is a blog about my adventures into functional and procedual programming and system configuration + some politics maybe.
Topics covered are NixOs and general Linux/DevoPs stuff. Programming in C, Rust, Zig and Lisp.
Formally educated as a security professional. Self thaught Linux admin with special interrest in virtualization, contaniers, kubernetes and NixOS.
I love the Linux desktop <3 (running Sway and Emacs).
Currently looking to level up programming with Rust and C.
Looking to make cli applications, or platform engineering.
## Some quotes
Random assortment of quotes, might be inspirarional.
> "We choose to go to the Moon. We choose to go to the Moon... We choose to go to the Moon in this decade and do the other things, not because they are easy, but because they are hard; because that goal will serve to organize and measure the best of our energgoies and skills, because that challenge is one that we are willing to accept, one we are unwilling to postpone, and one we intend to win, and the others, too." - [John F. Kennedy](https://web.archive.org/web/20180315230845/https://er.jsc.nasa.gov/seh/ricetalk.htm)
> "Everybody has a plan until they get punched in the mouth." - Mike Tyson
> "when the going gets weird, the weird turn pro" - Hunter S. Thompson
> “When the rich steal from the poor its called business, when the poor resist its called violence” - Mark Twain
> “Im using Linux. A library that emacs uses to communicate with Intel hardware.” Erwin, #emacs, Freenode. Taken from Mastering Emacs by Mickey Peterseon

29
posts/about.md~ Normal file
View file

@ -0,0 +1,29 @@
title: About
date: 2024-02-12 11:08
tags: Whoami
summary: About me
---
# About
Hello stranger,
This is a blog about my adventures into functional and procedual programming and system configuration + some politics maybe.
Topics covered are NixOs and Guix. Rust, C, Go procedual Lisp, and very possibly some Haskell with a dash of Ocaml
Formally educated as a security professional, current struggelign to break into the buisiness. Self thaught Linux admin with special interrest in virtualization, contaniers and kubernetes,**. I love the Linux desktop <3 (running Sway and Emacs).
Currently looking to level up programming with Rust and C.
Looking to make cli applications, or i.e platform engineering.
## Some quotes
Random assortment of quotes, might be inspirarional.
> "We choose to go to the Moon. We choose to go to the Moon... We choose to go to the Moon in this decade and do the other things, not because they are easy, but because they are hard; because that goal will serve to organize and measure the best of our energies and skills, because that challenge is one that we are willing to accept, one we are unwilling to postpone, and one we intend to win, and the others, too." - [John F. Kennedy](https://web.archive.org/web/20180315230845/https://er.jsc.nasa.gov/seh/ricetalk.htm)
> "Everybody has a plan until they get punched in the mouth." - Mike Tyson
> "when the going gets weird, the weird turn pro" - Hunter S. Thompson
> “When the rich steal from the poor its called business, when the poor resist its called violence” - Mark Twain
> “Im using Linux. A library that emacs uses to communicate with Intel hardware.” Erwin, #emacs, Freenode. Taken from Mastering Emacs by Mickey Peterseon

31
posts/first.md Normal file
View file

@ -0,0 +1,31 @@
title: First post!
date: 2024-02-06 11:08
tags: hello
summary: hello
---
# Title
## Hello world!
This is **MarkDown** :-)
This is *code*
```guile
(use-modules (haunt asset)
(haunt site)
(haunt builder blog)
(haunt builder atom)
(haunt reader skribe))
(site #:title 'My First Haunt Site'
#:domain "example.com"
#:default-metadata
'((author . "Eva Luator")
(email . "eva@example.com"))
#:readers (list skribe-reader)
#:builders (list (blog)
(atom-feed)
(atom-feeds-by-tag)))
```

29
posts/first.md~ Normal file
View file

@ -0,0 +1,29 @@
title: First post!
date: 2024-02-06 11:08
tags: hello
summary: hello
---
# Title
## Hello world!
This is **MarkDown** :-)
This is *code*
`
(use-modules (haunt asset)
(haunt site)
(haunt builder blog)
(haunt builder atom)
(haunt reader skribe))
(site #:title 'My First Haunt Site'
#:domain "example.com"
#:default-metadata
'((author . "Eva Luator")
(email . "eva@example.com"))
#:readers (list skribe-reader)
#:builders (list (blog)
(atom-feed)
(atom-feeds-by-tag)))`

11
posts/hello.skr Normal file
View file

@ -0,0 +1,11 @@
;; -*- mode: scheme -*-
(post
:title "Hello with Skribe!"
:date (make-date* 2024 02 06)
:tags '("hello2")
(h1 [Hello2, Skribe!])
(p [This is my first Skribe document])
(p [This is the second paragraf !]))

11
posts/hello.skr~ Normal file
View file

@ -0,0 +1,11 @@
;; -*- mode: scheme -*-
(post
:title "Hello with Skribe!"
:date (make-date* 2024 02 06)
:tags '("hello")
(h1 [Hello, Skribe!])
(p [This is my first Skribe document])
(p [This is the second paragraf !]))

11
posts/this.skr Normal file
View file

@ -0,0 +1,11 @@
;; -*- mode: scheme -*-
(post
:title "Hello with Skribe!"
:date (make-date* 2024 02 06)
:tags '("hello")
(h1 [This is Skribe!])
(p [This is my second Skribe document])
(p [This is the second paragraf !]))

25
posts/topic/test.md Normal file
View file

@ -0,0 +1,25 @@
title: Test post!
date: 2024-02-06 11:08
tags: topic
summary: topical
---
# Top
**Bold** *cursive*
## second
` backtick `
![image](./images/guix.jpg)
```rust
# Code here
use::std::io
fn main() {
println!("Hello, Code!");
}
```

13
posts/topic/test.md~ Normal file
View file

@ -0,0 +1,13 @@
title: Test post!
date: 2024-02-06 11:08
tags: topic
summary: topical
---
# Top
**Bold** *cursive*
## second
` backtick `