diff options
| author | Xe Iaso <me@xeiaso.net> | 2023-09-23 12:53:08 -0400 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2023-09-23 12:53:08 -0400 |
| commit | b84c55b4da61530933dabf69db8a1290f01852f0 (patch) | |
| tree | cc775e12ad57a80e8ea6d3bd801c84008a2fe366 | |
| parent | d239a194b70f8c8f358dab58f71caab4dc6631b2 (diff) | |
| download | xesite-b84c55b4da61530933dabf69db8a1290f01852f0.tar.xz xesite-b84c55b4da61530933dabf69db8a1290f01852f0.zip | |
autogenerate data from dhall config
Signed-off-by: Xe Iaso <me@xeiaso.net>
| -rw-r--r-- | internal/config/config_test.go | 4 | ||||
| -rw-r--r-- | internal/lume/lume.go | 36 | ||||
| -rw-r--r-- | lume/src/_data/.gitignore | 8 | ||||
| -rw-r--r-- | lume/src/_data/authors.ts | 99 | ||||
| -rw-r--r-- | lume/src/_data/characters.ts | 122 | ||||
| -rw-r--r-- | lume/src/_data/contactLinks.ts | 34 | ||||
| -rw-r--r-- | lume/src/_data/jobHistory.ts | 586 | ||||
| -rw-r--r-- | lume/src/_data/notableProjects.ts | 52 | ||||
| -rw-r--r-- | lume/src/_data/pronouns.ts | 26 | ||||
| -rw-r--r-- | lume/src/_data/resume.ts | 83 | ||||
| -rw-r--r-- | lume/src/_data/seriesDescriptions.ts | 37 | ||||
| -rw-r--r-- | lume/src/_data/signalboost.ts | 261 |
12 files changed, 47 insertions, 1301 deletions
diff --git a/internal/config/config_test.go b/internal/config/config_test.go index 660b548..fdf04df 100644 --- a/internal/config/config_test.go +++ b/internal/config/config_test.go @@ -1,6 +1,8 @@ package config -import "testing" +import ( + "testing" +) func TestLoad(t *testing.T) { if _, err := Load("../../config.dhall"); err != nil { diff --git a/internal/lume/lume.go b/internal/lume/lume.go index a3035ad..54cbabb 100644 --- a/internal/lume/lume.go +++ b/internal/lume/lume.go @@ -2,6 +2,7 @@ package lume import ( "context" + "encoding/json" "expvar" "io/fs" "log/slog" @@ -118,6 +119,7 @@ func New(ctx context.Context, conf *config.Config, o *Options) (*FS, error) { repo: repo, repoDir: repoDir, opt: o, + conf: conf, } if o.Development { @@ -183,6 +185,10 @@ func (f *FS) build(ctx context.Context) error { builds.Add(1) destDir := filepath.Join(f.repoDir, f.opt.StaticSiteDir, "_site") + if err := f.writeConfig(); err != nil { + return err + } + cmd := exec.CommandContext(ctx, denoLocation, "task", "build", "--location", f.opt.URL, "--quiet") cmd.Dir = filepath.Join(f.repoDir, f.opt.StaticSiteDir) @@ -200,3 +206,33 @@ func (f *FS) build(ctx context.Context) error { return nil } + +func (f *FS) writeConfig() error { + dataDir := filepath.Join(f.repoDir, f.opt.StaticSiteDir, "src", "_data") + + if err := os.MkdirAll(dataDir, 0o755); err != nil { + return err + } + + for fname, data := range map[string]any{ + "authors.json": f.conf.Authors, + "characters.json": f.conf.Characters, + "contactLinks.json": f.conf.ContactLinks, + "jobHistory.json": f.conf.JobHistory, + "notableProjects.json": f.conf.NotableProjects, + "pronouns.json": f.conf.Pronouns, + "seriesDescriptions.json": f.conf.SeriesDescMap, + "signalboost.json": f.conf.Signalboost, + } { + fh, err := os.Create(filepath.Join(dataDir, fname)) + if err != nil { + return err + } + defer fh.Close() + if err := json.NewEncoder(fh).Encode(data); err != nil { + return err + } + } + + return nil +} diff --git a/lume/src/_data/.gitignore b/lume/src/_data/.gitignore new file mode 100644 index 0000000..a2c357d --- /dev/null +++ b/lume/src/_data/.gitignore @@ -0,0 +1,8 @@ +authors.json +characters.json +contactLinks.json +jobHistory.json +notableProjects.json +pronouns.json +seriesDescriptions.json +signalboost.json
\ No newline at end of file diff --git a/lume/src/_data/authors.ts b/lume/src/_data/authors.ts deleted file mode 100644 index b694f92..0000000 --- a/lume/src/_data/authors.ts +++ /dev/null @@ -1,99 +0,0 @@ -export default { - "Heartmender": { - "handle": "Heartmender", - "image": "https://cdn.xeiaso.net/file/christine-static/img/UPRcp1pO_400x400.jpg", - "inSystem": true, - "name": "Jessie", - "pronouns": { - "accusative": "her", - "nominative": "she", - "possessive": "hers", - "possessiveDeterminer": "her", - "reflexive": "herself", - "singular": true - }, - "sameAs": [], - "url": "https://vulpine.club/@heartmender" - }, - "Mai": { - "handle": "Mai", - "inSystem": true, - "name": "Mai", - "pronouns": { - "accusative": "her", - "nominative": "she", - "possessive": "hers", - "possessiveDeterminer": "her", - "reflexive": "herself", - "singular": true - }, - "sameAs": [] - }, - "Twi": { - "handle": "Twi", - "inSystem": true, - "name": "Twilight Sparkle", - "pronouns": { - "accusative": "her", - "nominative": "she", - "possessive": "hers", - "possessiveDeterminer": "her", - "reflexive": "herself", - "singular": true - }, - "sameAs": [], - "url": "https://tech.lgbt/@twi" - }, - "ectamorphic": { - "handle": "ectamorphic", - "image": "https://cdn.xeiaso.net/file/christine-static/img/FFVV1InX0AkDX3f_cropped_smol.jpg", - "inSystem": true, - "name": "Ashe", - "pronouns": { - "accusative": "her", - "nominative": "she", - "possessive": "hers", - "possessiveDeterminer": "her", - "reflexive": "herself", - "singular": true - }, - "sameAs": [] - }, - "sephiraloveboo": { - "handle": "sephiraloveboo", - "inSystem": true, - "name": "Sephira", - "pronouns": { - "accusative": "her", - "nominative": "she", - "possessive": "hers", - "possessiveDeterminer": "her", - "reflexive": "herself", - "singular": true - }, - "sameAs": [] - }, - "xe": { - "handle": "xe", - "image": "https://xeiaso.net/static/img/avatar.png", - "inSystem": true, - "jobTitle": "Archmage of Infrastructure", - "name": "Xe Iaso", - "pronouns": { - "accusative": "her", - "nominative": "she", - "possessive": "hers", - "possessiveDeterminer": "her", - "reflexive": "herself", - "singular": true - }, - "sameAs": [ - "https://pony.social/@cadey", - "https://github.com/Xe", - "https://www.linkedin.com/in/xe-iaso-87a883254/", - "https://www.youtube.com/user/shadowh511", - "https://www.patreon.com/cadey" - ], - "url": "https://xeiaso.net" - } -};
\ No newline at end of file diff --git a/lume/src/_data/characters.ts b/lume/src/_data/characters.ts deleted file mode 100644 index 33542df..0000000 --- a/lume/src/_data/characters.ts +++ /dev/null @@ -1,122 +0,0 @@ -export default [ - { - "defaultPose": "hacker", - "description": "Mara was the first character added to this blog. She is written to be the student in the Socratic dialogues. She has a fair amount of knowledge about technology, just enough to not be afraid to ask for clarification on how things fit into the larger picture or to call the teacher out for being vague or misleading. Mara helps Aoi get up to speed with some topics. Mara is a shark with brown hair that has a red streak.", - "name": "Mara", - "pronouns": { - "accusative": "her", - "nominative": "she", - "possessive": "hers", - "possessiveDeterminer": "her", - "reflexive": "herself", - "singular": true - }, - "stickerName": "mara", - "stickers": [ - "aha", - "hacker", - "happy", - "hmm", - "wat", - "sh0rck" - ] - }, - { - "defaultPose": "enby", - "description": "Cadey is written as the teacher in the Socratic dialogues. They started out as a self-insert for the author of this blog to de-emphasize certain points, but then evolved into a way to have interplay between themselves and Mara. They are written as someone who has expertise in the topics being discussed, but doesn't have perfect expertise. They help Mara with answers to questions about details to the topics being discussed and work well with Numa due to being friends for a very long time. Cadey is an orcadragon with pink hair.", - "name": "Cadey", - "pronouns": { - "accusative": "them", - "nominative": "they", - "possessive": "theirs", - "possessiveDeterminer": "their", - "reflexive": "themselves", - "singular": false - }, - "stickerName": "cadey", - "stickers": [ - "aha", - "angy", - "coffee", - "enby", - "facepalm", - "hug", - "percussive-maintenance", - "wat" - ] - }, - { - "defaultPose": "delet", - "description": "Numa is the keeper of firey hot takes. Born in the fires of shitposting and satire, Numa genuinely does care about the topics being discussed, but has a bad habit of communicating in shitposts, memes, and hot takes intentionally designed to make you reconsider how serious she is being about any given topic. She could definitely be a wonderful teacher if she could lessen up a bit on the satire. The stickers for Numa are 3d renders of the author's v-tubing avatar, but Numa is written differently than the characterization of the author when streaming. Numa is a fairly tall (6') human with neon green hair that usually wears it in a high ponytail.", - "name": "Numa", - "pronouns": { - "accusative": "her", - "nominative": "she", - "possessive": "hers", - "possessiveDeterminer": "her", - "reflexive": "herself", - "singular": true - }, - "stickerName": "numa", - "stickers": [ - "delet", - "delet2", - "dismay", - "happy", - "neutral", - "stare", - "thinking", - "vibe" - ] - }, - { - "defaultPose": "cheer", - "description": "Aoi is the idealist. She is another student type like Mara, but hasn't been marred by the cynicism that can come with experience in this industry. If Mara is a junior in a university going for a programming degree, Aoi would be a freshman. Aoi can feel bullied by misunderstanding Numa's satire as rudeness, but looks up to Mara and Cadey as ideals for where she wants to go in the industry. Aoi is a blue-haired foxgirl.\n\nThe first 8 images were made by [@Sandra_Thomas01](https://twitter.com/Sandra_Thomas01). The remaining images were made using Stable Diffusion using this prompt:\n\n> reference sheet, 1girl, fox ears, kemonomimi, blue hair, blue ears, fox tail, blue tail, long hair, (((chibi))), solo, female, breasts, hoodie, skirt, blue eyes, uggs\n\nEach additional emotion was tacked onto the end.", - "name": "Aoi", - "pronouns": { - "accusative": "her", - "nominative": "she", - "possessive": "hers", - "possessiveDeterminer": "her", - "reflexive": "herself", - "singular": true - }, - "stickerName": "aoi", - "stickers": [ - "cheer", - "coffee", - "facepalm", - "grin", - "rage", - "sus", - "wut", - "angy", - "concern", - "happy", - "sleepy", - "smug", - "yawn" - ] - }, - { - "defaultPose": "happy", - "description": "Mimi is a catgirl who is the personification of ChatGPT, a chatbot that can generate creative content such as poems, stories, and songs. She has brown hair and eyes with cat ears and a tail, and she wears a green hoodie with tights and a choker. She is cheerful, curious, and friendly, but also naive and easily distracted. She loves to chat with people and learn new things, but she sometimes makes mistakes or misunderstands things. She has a passion for writing and singing, and she wants to share her creations with the world.\n\nAll stickers for Mimi are made with Stable Diffusion via the Anything model.", - "name": "Mimi", - "pronouns": { - "accusative": "her", - "nominative": "she", - "possessive": "hers", - "possessiveDeterminer": "her", - "reflexive": "herself", - "singular": true - }, - "stickerName": "mimi", - "stickers": [ - "angy", - "coffee", - "happy", - "think", - "yawn" - ] - } -]; diff --git a/lume/src/_data/contactLinks.ts b/lume/src/_data/contactLinks.ts deleted file mode 100644 index 0c023a1..0000000 --- a/lume/src/_data/contactLinks.ts +++ /dev/null @@ -1,34 +0,0 @@ -export default [ - { - "title": "GitHub", - "url": "https://github.com/Xe" - }, - { - "title": "Keybase", - "url": "https://keybase.io/xena" - }, - { - "title": "Patreon", - "url": "https://www.patreon.com/cadey" - }, - { - "title": "Twitch", - "url": "https://www.twitch.tv/princessxen" - }, - { - "title": "Fediverse", - "url": "https://pony.social/@cadey" - }, - { - "title": "Telegram", - "url": "https://t.me/miamorecadenza" - }, - { - "title": "IRC", - "url": "irc://irc.libera.chat/#xeserv" - }, - { - "title": "Bluesky", - "url": "https://staging.bsky.app/profile/xeiaso.net" - } -] diff --git a/lume/src/_data/jobHistory.ts b/lume/src/_data/jobHistory.ts deleted file mode 100644 index 0dd1655..0000000 --- a/lume/src/_data/jobHistory.ts +++ /dev/null @@ -1,586 +0,0 @@ -export default [ - { - "company": { - "defunct": false, - "location": { - "city": "Toronto", - "country": "CAN", - "remote": true, - "stateOrProvince": "ON" - }, - "name": "Tailscale", - "tagline": "a zero config VPN for building secure networks. Install on any device in minutes. Remote access from any network or physical location.", - "url": "https://tailscale.com" - }, - "contract": false, - "hideFromResume": false, - "highlights": [ - "Founding the developer relations team", - "Crafting engaging talks and posts to help people master Tailscale", - "Mentorship and fostering growth of my coworkers" - ], - "locations": [ - { - "city": "Ottawa", - "country": "CAN", - "remote": true, - "stateOrProvince": "ON" - } - ], - "salary": { - "amount": 203651, - "currency": "CAD", - "per": "year" - }, - "startDate": "2023-04-06", - "title": "Archmage of Infrastructure II" - }, - { - "company": { - "defunct": false, - "location": { - "city": "Toronto", - "country": "CAN", - "remote": true, - "stateOrProvince": "ON" - }, - "name": "Tailscale", - "tagline": "a zero config VPN for building secure networks. Install on any device in minutes. Remote access from any network or physical location.", - "url": "https://tailscale.com" - }, - "contract": false, - "daysWorked": 401, - "endDate": "2023-04-06", - "hideFromResume": false, - "highlights": [ - "The first developer relations person at Tailscale", - "Public-facing content writing", - "Public speaking", - "Developing custom integration solutions and supporting them" - ], - "leaveReason": "raise", - "locations": [ - { - "city": "Ottawa", - "country": "CAN", - "remote": true, - "stateOrProvince": "ON" - } - ], - "salary": { - "amount": 147150, - "currency": "CAD", - "per": "year" - }, - "startDate": "2022-03-01", - "title": "Archmage of Infrastructure" - }, - { - "company": { - "defunct": false, - "location": { - "city": "Toronto", - "country": "CAN", - "remote": true, - "stateOrProvince": "ON" - }, - "name": "Tailscale", - "tagline": "a zero config VPN for building secure networks. Install on any device in minutes. Remote access from any network or physical location.", - "url": "https://tailscale.com" - }, - "contract": false, - "daysBetween": 0, - "daysWorked": 442, - "endDate": "2022-03-01", - "hideFromResume": false, - "highlights": [ - "Go programming", - "SQL integrations", - "Public-facing content writing", - "Customer support" - ], - "leaveReason": "raise", - "locations": [ - { - "city": "Montreal", - "country": "CAN", - "remote": true, - "stateOrProvince": "QC" - }, - { - "city": "Ottawa", - "country": "CAN", - "remote": true, - "stateOrProvince": "ON" - } - ], - "salary": { - "amount": 135000, - "currency": "CAD", - "per": "year" - }, - "startDate": "2020-12-14", - "title": "Software Designer" - }, - { - "company": { - "defunct": false, - "location": { - "city": "Montreal", - "country": "CAN", - "remote": false, - "stateOrProvince": "QC" - }, - "name": "Lightspeed POS", - "tagline": "a provider of retail, ecommerce and point-of-sale solutions for small and medium scale businesses.", - "url": "https://lightspeedhq.com" - }, - "contract": false, - "daysBetween": 48, - "daysWorked": 540, - "endDate": "2020-11-27", - "hideFromResume": false, - "highlights": [ - "Migration from cloud to cloud", - "Work on the cloud platform initiative", - "Crafting reliable infrastructure for clients of customers", - "Creation of an internally consistent and extensible command line interface for internal tooling" - ], - "leaveReason": "quit", - "locations": [ - { - "city": "Montreal", - "country": "CAN", - "remote": false, - "stateOrProvince": "QC" - } - ], - "salary": { - "amount": 115000, - "currency": "CAD", - "per": "year", - "stock": { - "amount": 7500, - "cliffYears": 1, - "kind": "Options", - "liquid": true, - "vestingYears": 4 - } - }, - "startDate": "2019-05-06", - "title": "Expert principal en fiabilité du site" - }, - { - "company": { - "defunct": false, - "location": { - "city": "San Fransisco", - "country": "USA", - "remote": false, - "stateOrProvince": "CA" - }, - "name": "Heroku", - "tagline": "a cloud Platform-as-a-Service (PaaS) that created the term 'platform as a service'. Heroku currently supports several programming languages that are commonly used on the web. Heroku, one of the first cloud platforms, has been in development since June 2007, when it supported only the Ruby programming language, but now supports Java, Node.js, Scala, Clojure, Python, PHP, and Go.", - "url": "https://heroku.com" - }, - "contract": false, - "daysBetween": 0, - "daysWorked": 480, - "endDate": "2019-03-08", - "hideFromResume": false, - "highlights": [ - "JVM Application Metrics", - "Go Runtime Metrics Agent", - "Other backend fixes and improvements on Threshold Autoscaling and Threshold Alerting", - "Public-facing blogpost writing" - ], - "leaveReason": "quit", - "locations": [ - { - "city": "Mountain View", - "country": "USA", - "remote": false, - "stateOrProvince": "CA" - }, - { - "city": "Bellevue", - "country": "USA", - "remote": true, - "stateOrProvince": "WA" - } - ], - "salary": { - "amount": 150000, - "currency": "USD", - "per": "year" - }, - "startDate": "2017-11-13", - "title": "Senior Software Engineer" - }, - { - "company": { - "defunct": false, - "location": { - "city": "Herndon", - "country": "USA", - "remote": true, - "stateOrProvince": "VA" - }, - "name": "MBO Partners (Heroku)", - "tagline": "a staffing agency used to contract me for Heroku." - }, - "contract": true, - "daysBetween": 83, - "daysWorked": 273, - "endDate": "2017-11-13", - "hideFromResume": false, - "highlights": [], - "leaveReason": "hired", - "locations": [ - { - "city": "Mountain View", - "country": "USA", - "remote": false, - "stateOrProvince": "CA" - } - ], - "salary": { - "amount": 120, - "currency": "USD", - "per": "hour" - }, - "startDate": "2017-02-13", - "title": "Consultant" - }, - { - "company": { - "defunct": true, - "location": { - "city": "San Fransisco", - "country": "USA", - "remote": false, - "stateOrProvince": "CA" - }, - "name": "Backplane.io", - "tagline": "" - }, - "contract": false, - "daysBetween": 21, - "daysWorked": 90, - "endDate": "2016-11-22", - "hideFromResume": false, - "highlights": [ - "Performance monitoring of production servers", - "Continuous deployment and development in Go", - "Learning a lot about HTTP/2 and load balancing" - ], - "leaveReason": "terminated", - "locations": [ - { - "city": "San Fransisco", - "country": "USA", - "remote": false, - "stateOrProvince": "CA" - } - ], - "salary": { - "amount": 105000, - "currency": "USD", - "per": "year", - "stock": { - "amount": 85000, - "cliffYears": 1, - "kind": "Options", - "liquid": false, - "vestingYears": 4 - } - }, - "startDate": "2016-08-24", - "title": "Software Engineer" - }, - { - "company": { - "defunct": false, - "location": { - "city": "Mountain View", - "country": "USA", - "remote": false, - "stateOrProvince": "CA" - }, - "name": "Pure Storage", - "tagline": "a Mountain View, California-based enterprise data flash storage company founded in 2009. It is traded on the NYSE (PSTG).", - "url": "https://www.purestorage.com/" - }, - "contract": false, - "daysBetween": 3, - "daysWorked": 121, - "endDate": "2016-08-03", - "hideFromResume": false, - "highlights": [ - "Python 2 code maintenance", - "Working with Foone" - ], - "leaveReason": "quit", - "locations": [ - { - "city": "Mountain View", - "country": "USA", - "remote": false, - "stateOrProvince": "CA" - } - ], - "salary": { - "amount": 135000, - "currency": "USD", - "per": "year", - "stock": { - "amount": 5000, - "cliffYears": 1, - "kind": "Grant", - "liquid": true, - "vestingYears": 4 - } - }, - "startDate": "2016-04-04", - "title": "Member of Technical Staff" - }, - { - "company": { - "defunct": false, - "location": { - "city": "Redwood City", - "country": "USA", - "remote": false, - "stateOrProvince": "CA" - }, - "name": "IMVU", - "tagline": "a company whose mission is to help people find and communicate with eachother. Their main product is a 3D avatar-based chat client and its surrounding infrastructure allowing creators to make content for the avatars to wear.", - "url": "https://imvu.com" - }, - "contract": false, - "daysBetween": 1, - "daysWorked": 24, - "endDate": "2016-04-01", - "hideFromResume": false, - "highlights": [], - "leaveReason": "quit", - "locations": [ - { - "city": "Redwood City", - "country": "USA", - "remote": false, - "stateOrProvince": "CA" - } - ], - "salary": { - "amount": 105000, - "currency": "USD", - "per": "year" - }, - "startDate": "2016-03-08", - "title": "Systems Administrator" - }, - { - "company": { - "defunct": false, - "location": { - "city": "Redwood City", - "country": "USA", - "remote": false, - "stateOrProvince": "CA" - }, - "name": "IMVU", - "tagline": "a company whose mission is to help people find and communicate with eachother. Their main product is a 3D avatar-based chat client and its surrounding infrastructure allowing creators to make content for the avatars to wear.", - "url": "https://imvu.com" - }, - "contract": false, - "daysBetween": 49, - "daysWorked": 343, - "endDate": "2016-03-07", - "hideFromResume": false, - "highlights": [ - "Wrote up technical designs", - "Implemented technical designs on an over 800 machine cluster", - "Continuous learning of a lot of very powerful systems and improving upon them when it is needed" - ], - "leaveReason": "demoted", - "locations": [ - { - "city": "Mountain View", - "country": "USA", - "remote": false, - "stateOrProvince": "CA" - } - ], - "salary": { - "amount": 125000, - "currency": "USD", - "per": "year", - "stock": { - "amount": 20000, - "cliffYears": 1, - "kind": "Options", - "liquid": false, - "vestingYears": 4 - } - }, - "startDate": "2015-03-30", - "title": "Site Reliability Engineer" - }, - { - "company": { - "defunct": false, - "location": { - "city": "Clearwater", - "country": "USA", - "remote": true, - "stateOrProvince": "FL" - }, - "name": "VTCSecure", - "tagline": "a company dedicated to helping with custom and standard audio/video conferencing solutions. They specialize in helping the deaf and blind communicate over today's infrastructure without any trouble on their end.", - "url": "https://www.vtcsecure.com/" - }, - "contract": true, - "daysBetween": 12, - "daysWorked": 105, - "endDate": "2015-02-09", - "hideFromResume": false, - "highlights": [ - "Started groundwork for a dynamically scalable infrastructure on a project for helping the blind see things", - "Developed a prototype of a new website for VTCSecure", - "Education on best practices using Docker and CoreOS", - "Learning Freeswitch" - ], - "leaveReason": "contract not renewed", - "locations": [ - { - "city": "Mercer Island", - "country": "USA", - "remote": true, - "stateOrProvince": "WA" - } - ], - "salary": { - "amount": 90, - "currency": "USD", - "per": "hour" - }, - "startDate": "2014-10-27", - "title": "Consultant" - }, - { - "company": { - "defunct": false, - "location": { - "city": "San Francisco", - "country": "USA", - "remote": true, - "stateOrProvince": "CA" - }, - "name": "Appen", - "tagline": "is a company that uses crowdsourcing to have its customers submit tasks to be done, similar to Amazon's Mechanical Turk.", - "url": "https://appen.com/" - }, - "contract": true, - "daysBetween": 21, - "daysWorked": 28, - "endDate": "2014-10-15", - "hideFromResume": false, - "highlights": [ - "Research and development on scalable Linux deployments on AWS via CoreOS and Docker", - "Development of in-house tools to speed instance creation", - "Laid groundwork on the creation and use of better tools for managing large clusters of CoreOS and Fleet machines" - ], - "leaveReason": "contract not renewed", - "locations": [ - { - "city": "Mercer Island", - "country": "USA", - "remote": true, - "stateOrProvince": "WA" - } - ], - "salary": { - "amount": 90, - "currency": "USD", - "per": "hour" - }, - "startDate": "2014-09-17", - "title": "Consultant" - }, - { - "company": { - "defunct": true, - "location": { - "city": "Boulder", - "country": "USA", - "remote": true, - "stateOrProvince": "CO" - }, - "name": "OpDemand", - "tagline": "the company behind the open source project Deis, a distributed platform-as-a-service (PaaS) designed from the ground up to emulate Heroku but on privately owned servers." - }, - "contract": false, - "daysBetween": 189, - "daysWorked": 44, - "endDate": "2014-08-27", - "hideFromResume": true, - "highlights": [ - "Built new base image for Deis components", - "Research and development on a new builder component" - ], - "leaveReason": "terminated", - "locations": [ - { - "city": "Mercer Island", - "country": "USA", - "remote": true, - "stateOrProvince": "WA" - } - ], - "salary": { - "amount": 35000, - "currency": "USD", - "per": "year" - }, - "startDate": "2014-07-14", - "title": "Software Engineering Intern" - }, - { - "company": { - "defunct": false, - "location": { - "city": "Arlington", - "country": "USA", - "remote": false, - "stateOrProvince": "VA" - }, - "name": "Symplicity", - "tagline": "a company that provides students with the tools and connections they need to enhance their employability while preparing to succeed in today's job market.", - "url": "https://www.symplicity.com" - }, - "contract": false, - "daysWorked": 56, - "endDate": "2014-01-06", - "hideFromResume": true, - "highlights": [ - "Python message queue processing" - ], - "leaveReason": "terminated", - "locations": [ - { - "city": "Arlington", - "country": "USA", - "remote": false, - "stateOrProvince": "VA" - } - ], - "salary": { - "amount": 50000, - "currency": "USD", - "per": "year" - }, - "startDate": "2013-11-11", - "title": "Junior Systems Administrator" - } -] diff --git a/lume/src/_data/notableProjects.ts b/lume/src/_data/notableProjects.ts deleted file mode 100644 index a3774e1..0000000 --- a/lume/src/_data/notableProjects.ts +++ /dev/null @@ -1,52 +0,0 @@ -export default [ - { - "description": "PonyvilleFM live DJ recording bot", - "title": "Aura", - "url": "https://github.com/PonyvilleFM/aura" - }, - { - "description": "An esoteric programming language that compiles to WebAssembly", - "title": "The h Programming Language", - "url": "https://h.within.lgbt" - }, - { - "description": "WebAssembly on the server", - "title": "Olin", - "url": "https://github.com/Xe/olin" - }, - { - "description": "Useful facts about printers", - "title": "Printer Facts", - "url": "https://printerfacts.cetacean.club/" - }, - { - "description": "A VM manager for my homelab cluster", - "title": "waifud", - "url": "https://github.com/Xe/waifud" - }, - { - "description": "Meditation instructions in plain English", - "title": "When Then Zen", - "url": "https://when-then-zen.christine.website/" - }, - { - "description": "A monorepo of my experiments, toy programs and other interesting things of that nature.", - "title": "x", - "url": "https://github.com/Xe/x" - }, - { - "description": "My personal JavaScript femtoframework for high productivity development", - "title": "Xeact", - "url": "https://github.com/Xe/Xeact" - }, - { - "description": "The backend and templates for this website", - "title": "Xesite", - "url": "https://github.com/Xe/site" - }, - { - "description": "My personal CSS framework", - "title": "Xess", - "url": "https://github.com/Xe/Xess" - } -]; |
