aboutsummaryrefslogtreecommitdiff
path: root/dhall/package.dhall
blob: fdbcc67a1e262d554d66df08a56d4099a05ab269 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
let xesite = ./types/package.dhall

let Config = xesite.Config

let Link = xesite.Link

let authors = ./authors.dhall

let desc = ./seriesDescriptions.dhall

in  Config::{
    , signalboost = ./signalboost.dhall
    , authors = authors.map
    , defaultAuthor = authors.default
    , clackSet =
      [ "Ashlynn", "Terry Davis", "Dennis Ritchie", "Steven Hawking" ]
    , jobHistory = ./jobHistory.dhall
    , seriesDescriptions = desc.descriptions
    , seriesDescMap = desc.map
    , notableProjects =
      [ Link::{
        , url = "https://github.com/PonyvilleFM/aura"
        , title = "Aura"
        , description = "PonyvilleFM live DJ recording bot"
        }
      , Link::{
        , url = "https://github.com/Xe/olin"
        , title = "Olin"
        , description = "WebAssembly on the server"
        }
      , Link::{
        , url = "https://printerfacts.cetacean.club/"
        , title = "Printer Facts"
        , description = "Useful facts about printers"
        }
      , Link::{
        , url = "https://github.com/Xe/waifud"
        , title = "waifud"
        , description = "A VM manager for my homelab cluster"
        }
      , Link::{
        , url = "https://when-then-zen.christine.website/"
        , title = "When Then Zen"
        , description = "Meditation instructions in plain English"
        }
      , Link::{
        , url = "https://github.com/Xe/x"
        , title = "x"
        , description =
            "A monorepo of my experiments, toy programs and other interesting things of that nature."
        }
      , Link::{
        , url = "https://github.com/Xe/Xeact"
        , title = "Xeact"
        , description =
            "My personal JavaScript femtoframework for high productivity development"
        }
      , Link::{
        , url = "https://github.com/Xe/site"
        , title = "Xesite"
        , description = "The backend and templates for this website"
        }
      , Link::{
        , url = "https://github.com/Xe/Xess"
        , title = "Xess"
        , description = "My personal CSS framework"
        }
      ]
    , contactLinks =
      [ Link::{ url = "https://github.com/Xe", title = "GitHub" }
      , Link::{ url = "https://keybase.io/xena", title = "Keybase" }
      , Link::{ url = "https://www.patreon.com/cadey", title = "Patreon" }
      , Link::{ url = "https://twitch.tv/princessxen", title = "Twitch" }
      , Link::{ url = "https://pony.social/@cadey", title = "Fediverse" }
      , Link::{ url = "https://t.me/miamorecadenza", title = "Telegram" }
      , Link::{ url = "irc://irc.libera.chat/#xeserv", title = "IRC" }
      ]
    }