blob: e1a42055167d20483caded06cab05542db6be2b6 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>nyble.dev - gone for now</title>
<!-- required tags. us an image requried? i do not have one.-->
<meta property="og:title" content="nyble.dev | gone" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://nyble.dev/" />
<!-- not required but helps make better cards, etc. -->
<meta property="og:description" content="gone for now. stepped out for a bit." />
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
width: fit-content;
margin: 0 auto;
padding-top: min(5rem, 25vh);
}
p {
line-height: 2rem;
font-family: monospace;
font-style: italic;
width: 100%;
margin: 0 0;
}
/*p>span {
margin-left: 2rem;
}*/
</style>
</head>
<body>
<p>
2024-02-20<br />
there's nothing here! <br />
we're gone for a bit, but don't worry! <br />
we'll be back shortly.
</p>
<p style="text-align: right;">
- <a href="mailto:gen@nyble.dev">genny</a>
</p>
<!-- i've been meaning to rewrite the server that brings you this -->
<!-- website, but i've yet to do that. by taking it down completly -->
<!-- i think it'll put some pressure on me. and perhaps lessen any -->
<!-- kind of expectation i have with myself that it'll look and -->
<!-- operate the same. -->
<!-- we're giving it a break! -->
<!-- there's nothing here! -->
<!-- so any change will be an addition, a change from nothing. -->
<!-- and that's exciting to me -->
<p style="margin-top: 2.5rem">
2024-03-02<br />
good progress is being made!<br />
life draws ever near<br />
as the days pass by
</p>
<p style="text-align: right;">
- <a href="mailto:gen@nyble.dev">genny</a>
</p>
<!-- it's mostly there! we're having troubl with the -->
<!-- Atom feed generation. it's being a touch -->
</body>
</html>
|