commit 93ef5fdfff6c912f35340810a0fd6a4d34c19ede Author: kittywitch Date: Sun Apr 7 17:28:12 2024 +0000 deploy: 419d64960ad82f2f60c863baa011ba6d2a397a09 diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/index.html b/index.html new file mode 100644 index 0000000..229ea45 --- /dev/null +++ b/index.html @@ -0,0 +1,74 @@ + + + + + dork.dev - Home + + + +
+
+

dork.dev - Home

+
+
+
+
+

about

+

Hi! I'm kat and I'm a dorky developer (meant affectionately, of course; I chose the dork life ^~^).

+

My hobbies involve software development, system administration, infrastructure, smart home projects, hobbyist electronics, playing with SDR, reading books and manga, watching anime, cooking and baking.

+

I am currently studying for an amateur radio qualification in Canada and I hope to eventually get a firearms possession and acquisition license and a first aid qualification.

+

This website is not for talking about my professional life, but for credence; I am a DevOps engineer with two years of experience and I have a bachelors (at a first) in Digital Forensics and Cyber Security.

+
+
+

posts

+ +
+
+

projects

+ +
+
+ +
+ + diff --git a/posts/post-1.html b/posts/post-1.html new file mode 100644 index 0000000..cbbc95a --- /dev/null +++ b/posts/post-1.html @@ -0,0 +1,33 @@ + + + + + dork.dev - Doing something with this domain! + + + +
+
+

dork.dev - Doing something with this domain!

+
+
+
+
+

I've moved this website to use cobalt! Hopefully I should be making posts here, too. ^^

+

I have a few ideas for posts here, including talking about starting with using the RTL-SDR v4 and my experiences so far with the Framework 13 laptop.

+ +
+
+ +
+ + diff --git a/rss.xml b/rss.xml new file mode 100644 index 0000000..ee67613 --- /dev/null +++ b/rss.xml @@ -0,0 +1,2 @@ +cobalt bloghttp://example.comBlog Posts Go HereDoing something with this domain!http://example.com/posts/post-1.htmlI've moved this website to use cobalt! Hopefully I should be making posts here, too. ^^

+]]>
http://example.com/posts/post-1.html
diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..698e5c8 --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,40 @@ +/* Let's keep it stupid, simple. ^^ */ +* { + /* Make CSS sizing sane */ + box-sizing: border-box; } + +html { + font-family: "Monaspace Krypton", monospace; + /* Make the main text not solid black */ + color: #333; + /* Let's not use solid white */ + background: #fcfcfc; } + +body { + /* Make the body a 80 character wide container */ + width: 80ch; + /* Center the container within the viewport */ + margin: 0 auto; + /* Give the lines an adequate amount of room to breathe. */ + line-height: 1.4em; } + +h1, h2, h3 { + /* More contrast with the headers than the main text */ + color: #111; } + +/* We want the footer to be like two columns, where the right columns are also right-aligned and the columns grow to share the space sanely. */ +footer nav ul { + list-style-type: none; + padding: 0; + margin: 0; + display: flex; + flex-wrap: wrap; + column-count: 2; + gap: 0.5em 0.25em; } + footer nav ul li { + display: inline-block; + padding: 0; + margin: 0; + flex-grow: 1; } + footer nav ul li:nth-child(2) { + text-align: right; }