Hobby projects, helpful scripts, and other fun bits and bobs!
+
+
+
+
+ {entries.map((e) => (
+
+
{e.attributes.title}
+
{e.attributes.desc}
+ Read more
+
+ ))}
+
+
+
+ )
+}
+
+export function getStaticProps () {
+ const fun = fs.readdirSync('./content/fun', { withFileTypes: true })
+
+ const entries = fun.map((dirent) =>
+ getMarkdownEntry(`${dirent.path}/${dirent.name}`)
+ )
+
+ return { props: { entries } }
+}
+
+export default Fun
diff --git a/src/pages/index.js b/src/pages/index.js
index 03a9231..0424df0 100644
--- a/src/pages/index.js
+++ b/src/pages/index.js
@@ -21,12 +21,34 @@ export default function Home () {
This is my little corner of the web! I've always had a habit of
'lurking' online; I barely interact with the content I
consume, and you'll rarely if ever catch me posting or commenting
- on something. That said, this little site endeavours to pull me by my
- ankles out of the weeds in the great digital park we find ourselves,
- and encourage me to share a bit more about myself online.
+ on something. That said, this little site endeavours to encourage me
+ to share a bit more about myself online.
+
+
Tech I like
+
+
+ Sites: At the moment, I mainly use node with TS (or
+ JS for small projects) and Next.js to build sites and apps.
+
+
+ Scripts: My go-to for scripting is either Python or
+ JS, mainly because I'm comfortable with these languages, and their
+ library ecosystem usually has everything I need to do what I need to
+ do.
+
+
+ APIs: If I need something more robust for API or
+ back-end architecture than node, I usually go for dotnet core/C#
+ using ASP.NET. A strongly-typed language with an opinionated web
+ framework like ASP.NET helps to keep everything neat and tidy.
+
+
Cloud: If I can get away with it, host on a droplet on Digitalocean. If not, my go-to is usually GCP because it's less soul-destroying than Azure and AWS (and I've used it the most)
+
+
+
Where to find me
diff --git a/src/styles/globals.css b/src/styles/globals.css
index 0f788c3..c0a6fa6 100644
--- a/src/styles/globals.css
+++ b/src/styles/globals.css
@@ -6,3 +6,13 @@ html, body {
h1, h2, h3 {
font-weight: 600;
}
+
+ul {
+ margin-left: 0;
+ list-style: inside;
+ list-style-type: circle;
+}
+
+ul li:not(:last-child) {
+ margin-bottom: 10px;
+}
\ No newline at end of file