aboutsummaryrefslogtreecommitdiff
path: root/software.typ
blob: ff50ff6ef948d853fe1827d832b5f1d5ba362003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#import "/global/common.typ": *

#let source(dest) = html.p(class: "source", extlink(dest)[source])
#let description(body) = html.p(class: "description", body)

#let doc = [
    Here you can find a list of my note-worthy public repositories, all hosted
    on #extlink("https://gitlab.com/users/kdam0/projects")[GitLab].

    #show list: prev => html.ul(class: "biglist", {
        for c in prev.children {
            html.li(c.body)
        }
    })

    -
        = home-lab
        #description[
            My Nix, Terraform, Ansible repository for self-hosting,
            as started in #pagelink("post/framework-server")[this post].
        ]
        #source("https://gitlab.com/kdam0/home-lab/")
    -
        = nixdots
        #description[
            My dotfiles for the Nix ecosystem, as started in
            #pagelink("post/nixos-p1")[this post].
        ]
        #source("https://gitlab.com/kdam0/dotfiles-nix")
    -
        = nccli
        #description[
            A Go CLI for managing DNS on Namecheap.
        ]
        #source("https://gitlab.com/kdam0/nccli")
    -
        = namemydragon.lol
        #description[
            A western themed meme site for identifying your dragon
            from the Game of Thrones universe.
            #extlink("https://namemydragon.lol")[Try it] and turn on your sound!
        ]
        #source("https://gitlab.com/kdam0/namemydragon")
]