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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
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"
, "John Conway"
, "Ruth Bader Ginsburg"
, "Bram Moolenaar"
, "Grant Imahara"
, "David Bowie"
, "Sir Terry Pratchett"
, "Satoru Iwata"
, "Kris Nóva"
, "Joe Armstrong"
, "Paul Allen"
, "Kevin Mitnick"
, "Sir Clive Sinclair"
]
, 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://h.within.lgbt"
, title = "The h Programming Language"
, description =
"An esoteric programming language that compiles to WebAssembly"
}
, 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://bsky.app/profile/xeiaso.net", title = "Bluesky" }
, Link::{ url = "https://www.tiktok.com/@xeiaso.1337", title = "TikTok" }
, Link::{ url = "https://keybase.io/xena", title = "Keybase" }
, Link::{ url = "https://www.patreon.com/cadey", title = "Patreon" }
, Link::{ url = "https://www.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" }
, Link::{
, url =
"https://signal.me/#eu/Nphi3UKYkj4lgn_HPVFR6wS4VPJ7GRX3htnyHVe8m6XqOPwj8CBJmKnDfTN4mdoX"
, title = "Signal"
}
, Link::{
, url = "https://www.linkedin.com/in/xe-iaso"
, title = "LinkedIn"
}
, Link::{ url = "https://x.com/theprincessxena", title = "X (Twitter)" }
]
, pronouns = ./pronouns.dhall
, characters = ./characters.dhall
, vods = ./streamVOD.dhall
, resume = ./resume.dhall
}
|