The code and data behind xeiaso.net
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

add techaro fiction disclaimer to some backlog posts

Signed-off-by: Xe Iaso <me@xeiaso.net>

Xe Iaso dc946433 6dbdd649

+35 -73
+4
lume/_config.ts
··· 20 20 import ChatFrame from "./src/_components/ChatFrame.jsx"; 21 21 import ChatBubble from "./src/_components/ChatBubble.jsx"; 22 22 import Figure from "./src/_components/Figure.tsx"; 23 + import LoadingSpinner from "./src/_components/LoadingSpinner.jsx"; 24 + import TecharoDisclaimer from "./src/_components/TecharoDisclaimer.jsx"; 23 25 import XeblogConv from "./src/_components/XeblogConv.tsx"; 24 26 import XeblogHero from "./src/_components/XeblogHero.tsx"; 25 27 import XeblogPicture from "./src/_components/XeblogPicture.tsx"; ··· 75 77 "ChatBubble": ChatBubble, 76 78 "Figure": Figure, 77 79 "Image": Figure, 80 + "LoadingSpinner": LoadingSpinner, 81 + "TecharoDisclaimer": TecharoDisclaimer, 78 82 "XeblogConv": XeblogConv, 79 83 "XesiteConv": XeblogConv, 80 84 "XeblogHero": XeblogHero,
+18
lume/src/_components/TecharoDisclaimer.jsx
··· 1 + export default function TecharoDisclaimer() { 2 + return ( 3 + <> 4 + <link 5 + rel="stylesheet" 6 + href="https://cdn.xeiaso.net/file/christine-static/static/font/inter/inter.css" 7 + /> 8 + <div className="font-['Inter'] text-2xl mx-auto mt-4 mb-2 rounded-lg bg-bg-2 p-4 dark:bg-bgDark-2 md:max-w-3xl font-extrabold xe-dont-newline"> 9 + This post is a work of fiction. All events, persons, companies, and other 10 + alignment with observable reality are the product of the author’s imagination 11 + and are either purely coincidence or used in a fictitious manner. These serve 12 + as backdrops to characters and their actions, which are wholly imaginary. The 13 + company Techaro as depicted in <a href="/blog/series/techaro">these stories</a>, does not 14 + exist and is purely a vehicle for satire and storytelling. 15 + </div> 16 + </> 17 + ); 18 + }
+1
lume/src/blog/2022-media.mdx lume/src/blog/2022/2022-media.mdx
··· 1 1 --- 2 2 title: Media I experienced in 2022 3 3 date: 2022-12-27 4 + basename: ../2022-media 4 5 tags: 5 6 - fhqwhgads 6 7 ---
+1
lume/src/blog/2022/_data.yml
··· 1 + year: 2022
+1
lume/src/blog/3d-printing-openscad-2022-03-28.mdx lume/src/blog/2022/3d-printing-openscad.mdx
··· 1 1 --- 2 2 title: Compiling Code to Matter in My Living Room 3 3 date: 2022-03-28 4 + basename: ../3d-printing-openscad-2022-03-28 4 5 tags: 5 6 - openscad 6 7 - 3dprinting
+1 -30
lume/src/blog/alvis.mdx
··· 11 11 ai: "SCMix" 12 12 --- 13 13 14 - export function ChatFrame({ children }) { 15 - return ( 16 - <> 17 - <div className="w-full space-y-4 p-4">{children}</div> 18 - </> 19 - ); 20 - } 21 - 22 - export function ChatBubble({ 23 - reply = false, 24 - bg = "blue-dark", 25 - fg = "slate-50", 26 - children, 27 - }) { 28 - return ( 29 - <div className={`mx-auto w-full ${reply ? "" : "space-y-4"}`}> 30 - <div className={`flex ${reply ? "justify-start" : "justify-end"}`}> 31 - <div className={`flex w-11/12 ${reply ? "" : "flex-row-reverse"}`}> 32 - <div 33 - className={`relative max-w-xl rounded-xl ${ 34 - reply ? "rounded-tl-none" : "rounded-tr-none" 35 - } bg-${bg} px-4 py-2`} 36 - > 37 - <span className={`font-medium text-${fg}`}>{children}</span> 38 - </div> 39 - </div> 40 - </div> 41 - </div> 42 - ); 43 - } 14 + <TecharoDisclaimer /> 44 15 45 16 Sleep. It's such a lovely feeling. The taste of total obliteration that comes when you hit the pillow. Jared was peacefully asleep and dreaming of a world much like his own. One with capitalism and money and all of the other problems that bother us all. In the blissful silence of his bedroom, he was at peace. 46 17
+2
lume/src/blog/protos.mdx
··· 11 11 prompt: 1guy, laptop, open office 12 12 --- 13 13 14 + <TecharoDisclaimer /> 15 + 14 16 <XeblogConv name="Cadey" mood="coffee"> 15 17 On July 13, 2020, I was inspired to write out the outline for a short science 16 18 fiction / horror story about a generative AI being able to write entire
+1 -43
lume/src/blog/sine.mdx
··· 11 11 prompt: "1girl, green hair, green eyes, tshirt, skirt, sneakers, san francisco, bridge, ahoge, round eyes, long hair, chromatic abberation" 12 12 --- 13 13 14 - export function ChatFrame({ children }) { 15 - return ( 16 - <> 17 - <div className="w-full space-y-4 p-4">{children}</div> 18 - </> 19 - ); 20 - } 21 - 22 - export function ChatBubble({ 23 - reply = false, 24 - bg = "blue-dark", 25 - fg = "slate-50", 26 - children, 27 - }) { 28 - return ( 29 - <div className={`mx-auto w-full ${reply ? "" : "space-y-4"}`}> 30 - <div className={`flex ${reply ? "justify-start" : "justify-end"}`}> 31 - <div className={`flex w-11/12 ${reply ? "" : "flex-row-reverse"}`}> 32 - <div 33 - className={`relative max-w-xl rounded-xl ${ 34 - reply ? "rounded-tl-none" : "rounded-tr-none" 35 - } bg-${bg} px-4 py-2`} 36 - > 37 - <span className={`font-medium text-${fg}`}>{children}</span> 38 - </div> 39 - </div> 40 - </div> 41 - </div> 42 - ); 43 - } 44 - 45 - export function LoadingSpinner() { 46 - return ( 47 - <div 48 - class="inline-block mt-2 h-8 w-8 animate-spin rounded-full border-4 border-solid border-current border-r-transparent align-[-0.125em] motion-reduce:animate-[spin_1.5s_linear_infinite]" 49 - role="status" 50 - > 51 - <span class="!absolute !-m-px !h-px !w-px !overflow-hidden !whitespace-nowrap !border-0 !p-0 ![clip:rect(0,0,0,0)]"> 52 - Loading... 53 - </span> 54 - </div> 55 - ); 56 - } 14 + <TecharoDisclaimer /> 57 15 58 16 Jeff pulled out his phone to respond to an incoming notification. He was about to have his first appointment with his therapist. The company health plan had changed recently, so he was curious to see what the new therapist was like. He opened the app and saw a message from his therapist. 59 17
+2
lume/src/shitposts/2023/xeact-incredible-journey-linkedin.mdx
··· 4 4 series: ["techaro", "xeact"] 5 5 --- 6 6 7 + <TecharoDisclaimer /> 8 + 7 9 <XeblogConv name="Cadey" mood="enby"> 8 10 Hello, welcome to shitposts! This is an experiment of mine where I keep a copy 9 11 of the various "best hits" of things I post to social networks like LinkedIn.
+2
lume/src/shitposts/2024/techaro-layoffs.mdx
··· 9 9 prompt: A forlorn business man resting his head on a brown wall next to a window. 10 10 --- 11 11 12 + <TecharoDisclaimer /> 13 + 12 14 <blockquote className="font-extrabold"> 13 15 Today, Techaro co-founder and CEO Edwin Allison sent out this email to all 14 16 Techaro employees:
+2
lume/src/talks/2024/xeact.mdx
··· 16 16 17 17 Otherwise, kick back, grab a beverage, and enjoy the ride. 18 18 19 + <TecharoDisclaimer /> 20 + 19 21 ## Video 20 22 21 23 <XeblogVideo path="talks/2024/xeact" />