The code and data behind xeiaso.net
1let xesite = ./types/package.dhall
2
3let Config = xesite.Config
4
5let Link = xesite.Link
6
7let desc = ./seriesDescriptions.dhall
8
9in Config::{
10 , signalboost = ./signalboost.dhall
11 , clackSet =
12 [ "Ashlynn"
13 , "Terry Davis"
14 , "Dennis Ritchie"
15 , "Stephen Hawking"
16 , "John Conway"
17 , "Ruth Bader Ginsburg"
18 , "Bram Moolenaar"
19 , "Grant Imahara"
20 , "David Bowie"
21 , "Sir Terry Pratchett"
22 , "Satoru Iwata"
23 , "Kris Nóva"
24 , "Joe Armstrong"
25 , "Paul Allen"
26 , "Kevin Mitnick"
27 , "Sir Clive Sinclair"
28 , "Matt Trout"
29 ]
30 , jobHistory = ./jobHistory.dhall
31 , seriesDescriptions = desc.descriptions
32 , notableProjects =
33 [ Link::{
34 , url = "https://h.within.lgbt"
35 , title = "The h Programming Language"
36 , description =
37 "An esoteric programming language that compiles to WebAssembly"
38 }
39 , Link::{
40 , url = "https://anubis.techaro.lol"
41 , title = "Anubis"
42 , description =
43 "A anti-scraper bot filter that protects git servers for GNOME, UNESCO, and many other small communities"
44 }
45 , Link::{
46 , url = "https://when-then-zen.christine.website/"
47 , title = "When Then Zen"
48 , description = "Meditation instructions in plain English"
49 }
50 , Link::{
51 , url = "https://github.com/Xe/x"
52 , title = "x"
53 , description =
54 "A monorepo of my experiments, toy programs and other interesting things of that nature."
55 }
56 , Link::{
57 , url = "https://github.com/Xe/site"
58 , title = "Xesite"
59 , description = "The backend and templates for this website"
60 }
61 , Link::{
62 , url = "https://github.com/Xe/Xess"
63 , title = "Xess"
64 , description = "My personal CSS framework"
65 }
66 ]
67 , contactLinks =
68 [ Link::{ url = "https://github.com/Xe", title = "GitHub" }
69 , Link::{ url = "https://bsky.app/profile/xeiaso.net", title = "Bluesky" }
70 , Link::{ url = "https://www.tiktok.com/@xeiaso.1337", title = "TikTok" }
71 , Link::{ url = "https://keybase.io/xena", title = "Keybase" }
72 , Link::{ url = "https://www.patreon.com/cadey", title = "Patreon" }
73 , Link::{ url = "https://www.twitch.tv/princessxen", title = "Twitch" }
74 , Link::{ url = "https://pony.social/@cadey", title = "Fediverse" }
75 , Link::{ url = "https://t.me/miamorecadenza", title = "Telegram" }
76 , Link::{ url = "irc://irc.libera.chat/#xeserv", title = "IRC" }
77 , Link::{
78 , url =
79 "https://signal.me/#eu/Nphi3UKYkj4lgn_HPVFR6wS4VPJ7GRX3htnyHVe8m6XqOPwj8CBJmKnDfTN4mdoX"
80 , title = "Signal"
81 }
82 , Link::{
83 , url = "https://www.linkedin.com/in/xe-iaso"
84 , title = "LinkedIn"
85 }
86 ]
87 , pronouns = ./pronouns.dhall
88 , characters = ./characters.dhall
89 , resume = ./resume.dhall
90 }