blob: 945b029efd717f6555fa05a10f5c5ebbccbed40e [file] [log] [blame]
Skyler Grey7177bbd2023-06-01 03:26:31 +02001<script>
Skyler Grey22205e62023-08-06 15:20:25 +00002 import { Card, CardContent, CardHeader, CardTitle } from '$components/ui/card';
3 import Prompt from './prompt.svelte';
4 import Result from './result.svelte';
5
6 import { format } from 'date-fns';
7
8 let pageLoad = format(new Date(), 'E MMM d HH:mm:ss y');
Skyler Grey7177bbd2023-06-01 03:26:31 +02009</script>
10
Skyler Grey22205e62023-08-06 15:20:25 +000011<svelte:head>
12 <title>A starry Sky</title>
13</svelte:head>
Skyler Grey7177bbd2023-06-01 03:26:31 +020014
Skyler Grey22205e62023-08-06 15:20:25 +000015<div class="mx-auto rounded-md p-8 lg:w-[1024px]">
16 <Result>
17 <h1 class="dim pb-5">A starry Sky</h1>
18 <p class="dim">
19 Linux a.starrysky.fyi 6.1.31 #1-<a class="dim" href="https://nixos.org">NixOS</a>
20 <a class="dim" href="https://en.wikipedia.org/wiki/Symmetric_multiprocessing">SMP</a>
21 <a class="dim" href="https://wikipedia.org/wiki/Kernel_preemption">PREEMPT_DYNAMIC</a>
22 {pageLoad} x86_64 GNU/Linux<br/>
23 Type "help", "copyright", "credits" or "license" for more information.
24 </p>
25 <p class="dim">
26 Last login: {pageLoad} from 127.0.0.1
27 </p>
28 </Result>
29 <Prompt><h2>whoami</h2></Prompt>
30 <Result>
31 <p>
32 I'm Skyler, a transgender developer from the UK. It's nice to meet you! I love my Blåhaj,
33 writing and contributing to open source software, my Blåhaj and playing games with my
34 friends. Also my Blåhaj.
35 </p>
36 <p>
37 My pronouns are she/her.
38 </p>
39 <p>
40 In my spare time I <!--<a href="https://blog.starrysky.fyi">write posts for my blog</a>, -->write
41 small bits of open source software, maintain packages on
42 <a href="https://github.com/NixOS/nixpkgs">nixpkgs</a>, hack around on my NixOS system and
43 play videogames with (or sometimes without) my friends.
44 </p>
45 <p>
46 Professionally, I work at <a href="https://www.collabora.com/">Collabora Productivity</a>
47 making <a href="https://www.collaboraoffice.com/">LibreOffice work online</a>.
48 </p>
49 <p>
50 If you'd like to talk, I'd love to hear from you. Come find me on
51 <a href="https://matrix.to/#/@minion:coded.codes">Matrix</a>!
52 </p>
53 </Result>
54 <Prompt>unalias whoami</Prompt>
Skyler Grey12f9ed82023-08-06 16:28:31 +000055 <Prompt>nix run github:Minion3665/links</Prompt>
Skyler Grey22205e62023-08-06 15:20:25 +000056 <Result>
57 <!--<h2 class="pt-3 pb-2">Explore this website</h2>
58 <div class="mb-5 flex flex-wrap gap-5 md:flex-nowrap">
59 <a
60 class="reset transition-color block grow underline decoration-cyan-300/30 hover:decoration-cyan-400 md:basis-1/2"
61 href="https://blog.starrysky.fyi"
62 >
63 <Card
64 class="h-full shadow-white/50 transition-shadow hover:shadow-md hover:shadow-cyan-400"
65 >
66 <CardHeader>
67 <CardTitle>Read my blog</CardTitle>
68 </CardHeader>
69 <CardContent>
70 <p>I write posts focusing on tech, life and suchlike.</p>
71 </CardContent>
72 </Card>
73 </a>
74 <a
75 class="reset transition-color block grow underline decoration-cyan-300/30 hover:decoration-cyan-400 md:basis-1/2"
76 href="/projects"
77 >
78 <Card
79 class="h-full shadow-white/50 transition-shadow hover:shadow-md hover:shadow-cyan-400"
80 >
81 <CardHeader>
82 <CardTitle>See my projects</CardTitle>
83 </CardHeader>
84 <CardContent>
85 <p>
86 Tiny websites and apps to do specific tasks take your fancy? I sure hope so because
87 that's most of what I make.
88 </p>
89 </CardContent>
90 </Card>
91 </a>
92 </div>-->
93 <h2>Find me on other sites</h2>
94 <ul>
95 <li><a href="https://keyoxide.org/F27E3E5922772E7A">KeyOxide</a></li>
96 <li><a href="https://github.com/Minion3665">GitHub</a></li>
97 <li><a href="https://matrix.to/#/@minion:coded.codes">Matrix</a></li>
98 <li><a href="https://tech.lgbt/@minion3665">The Fediverse</a></li>
99 <li><a href="https://www.linkedin.com/in/minion3665/">LinkedIn</a></li>
100 <li><a href="mailto:skyler@clicks.codes">Good ol' email</a></li>
101 </ul>
102 </Result>
103 <Prompt><span class="animate-pulse"></span></Prompt>
Skyler Grey7177bbd2023-06-01 03:26:31 +0200104</div>