From: Athene Allen Date: Sat, 25 Jan 2025 16:15:37 +0000 (+0000) Subject: init X-Git-Url: https://fortfriendship.online/gitweb/gnargle.github.io.git/commitdiff_plain/a8fe2c17a510d90c5a72a43c5e77824a6736bbfd?ds=inline;hp=1a0c9680d46091a6c1d08816bcc2ebcd0bae8f7c init --- diff --git a/entries/1.html b/entries/1.html new file mode 100644 index 0000000..b321d03 --- /dev/null +++ b/entries/1.html @@ -0,0 +1,112 @@ + + + + + Bringing Static Websites Back + + + +
+
+
+ +

🏳️‍⚧️ 👩🏼‍💻 Athene.Gay 👩🏼‍💻 🏳️‍⚧️

+
+
+
+
+
+
+ Home +
+

Bringing Static Websites Back

+

25/01/2025

+
+
+

+ Look I'm hardly the first to do this but I think we all know the + internet is shit now. Like. Really, really shit. It would be + naive to say that the internet was perfect in its early days. + But it was definitely less centralised, with many people + maintaining their own pages, using webrings to link to people + they like. It was collaborative and communicative and a platform + of passions. +

+

+ Then for a while everyone was in the same place, although that + place changed every like. year or so. I never really used + MySpace or Bebo, but I got on Twitter really early and gave + myself lifelong Poster's Sickness. +

+

+ Obviously Twitter is absolute shite now and has been for a fair + while. I moved to bluesky, and that's ok, but every so often I + want to write longer Things. Usually about movies or games, + sometimes about programming stuff since that is... my job. +

+

+ I used backloggd for games for a bit but the culture on that + site fucking annoyed me, and I don't think letterboxd is likely + to be any better. So instead I can make my own website without a + comment website. Then if you want to disagree with me you can dm + me directly and then we can digitally kiss. +

+

+ So yeah. Programming is my job, and because the web is stupid + now, most of what I work on is in Angular or Razor. Which do + have their conveniences, but also they're kind of a pain when + you just want to make something simple to scratch down thoughts + in. +

+

+ Also I'm pretty sure an Angular SPA would get very mad at you if + you tried to put a marquee tag in it. And since marquee is the + greatest tag in the history of the web, we can't have that. +

+

+ Anyway, that's probably it for this first entry. If you wanna + find me elsewhere, check the links below, else ta for now love. +

+
+
+
+
+
+ +
+
+ + diff --git a/entries/template.html b/entries/template.html new file mode 100644 index 0000000..394d315 --- /dev/null +++ b/entries/template.html @@ -0,0 +1,69 @@ + + + + + Athene.Gay + + + +
+
+
+ +

🏳️‍⚧️ 👩🏼‍💻 Athene.Gay 👩🏼‍💻 🏳️‍⚧️

+
+
+
+
+
+
+ Home +
+

Blog Title

+

01/01/1999

+
+
+

lorem ipsum etc

+
+
+
+
+
+ +
+
+ + diff --git a/img/ao3.svg b/img/ao3.svg new file mode 100644 index 0000000..312e243 --- /dev/null +++ b/img/ao3.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + diff --git a/img/bluesky.svg b/img/bluesky.svg new file mode 100644 index 0000000..13bd5cf --- /dev/null +++ b/img/bluesky.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/img/discord.svg b/img/discord.svg new file mode 100644 index 0000000..41a6e89 --- /dev/null +++ b/img/discord.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/img/github.svg b/img/github.svg new file mode 100644 index 0000000..9f3c88e --- /dev/null +++ b/img/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/img/projects/launchpad.png b/img/projects/launchpad.png new file mode 100644 index 0000000..9fc8b79 Binary files /dev/null and b/img/projects/launchpad.png differ diff --git a/img/twitch.svg b/img/twitch.svg new file mode 100644 index 0000000..b119d2b --- /dev/null +++ b/img/twitch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..2534f74 --- /dev/null +++ b/index.html @@ -0,0 +1,93 @@ + + + + + Athene.Gay + + + +
+
+
+ +

🏳️‍⚧️ 👩🏼‍💻 Athene.Gay 👩🏼‍💻 🏳️‍⚧️

+
+
+
+
+
+
+

+ Hey! I'm Athene, or Projynova depending on where you know me from. + This is my little website, mostly for blogging. I have a lot of + thoughts about things every now and then, see, and it would + probably be beneficial for me to actually note them down somewhere + less ephemeral than Bluesky. +

+

Also so I can use the marquee tag.

+

+ It's also a place I can do write-ups for the various projects I've + worked on, outside of a traditional 'blog' format. I have quite a + few useful tools on github but no central repository to link or + talk about them from. Until now, that is, obviously. Now I do. + It's this website. +

+
+
+

Blog

+ +
+
+

Projects

+

This is an incomplete list - I need to write up the rest. I promise I've done more than one thing in my life.

+ +

FFXIV Plugins

+
+
+
+
+
+
+ +
+ + + diff --git a/main.css b/main.css new file mode 100644 index 0000000..4adaf12 --- /dev/null +++ b/main.css @@ -0,0 +1,87 @@ +@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap'); + +* { + box-sizing: border-box; + margin: 0; + padding: 0; + font-family: 'Source Code Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; +} + +.header { + max-width: 1000px; + margin: 0 auto; +} + +.container{ + padding-top: 10px; + padding-bottom: 10px; +} + +.main { + max-width: 800px; + margin: 0 auto; + padding: 20px; + background-color: beige; + border-radius: 25px; +} + +.marquee-heading{ + color:crimson +} + +.heading { + color: dimgray; +} + +.title-block{ + display:flex; + padding-top: 5px; + padding-bottom: 5px; +} + +.blog-title{ + flex:1; +} + +.datestamp{ +} + +.content{ + color:black; +} + +.footer{ + max-width: 800px; + margin: 0 auto; + padding-top: 10px; + background-color:antiquewhite; + border-radius: 25px; +} + +.footer-container{ + display:flex; + justify-content: center; + align-items: center; +} + +.footer-entry{ + display: inline-block; + padding-left:5px; + padding-right:5px; +} + +.icon{ + width: 48px; +} + +.blog-img{ + display: block; + margin: 0 auto; + max-width: 250px; +} + +body{ + font-family: 'Source Code Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + background-color: bisque; + color: black; +} \ No newline at end of file diff --git a/projects/dalamudplugins.html b/projects/dalamudplugins.html new file mode 100644 index 0000000..5a19626 --- /dev/null +++ b/projects/dalamudplugins.html @@ -0,0 +1,123 @@ + + + + + FFXIV Plugins + + + +
+
+
+ +

🏳️‍⚧️ 👩🏼‍💻 Athene.Gay 👩🏼‍💻 🏳️‍⚧️

+
+
+
+
+
+
+ Home +
+

FFXIV Plugins

+
+
+

+ I currently maintain two silly little plugins for Final Fantasy + XIV. +

+
+
+
+ +
+

+ We'll start with the simple one. NICEDamage is a stupid, + half-day joke project I made to get to grips with FFXIV modding. + Final Fantasy XIV has damage numbers displayed on screen for all + attacks, from and to the player. Each of these numbers can have + an additional caption if they're affected a debuff or something, + e.g. sometimes on icnoming damage you'll see 5836! (15% + Parried). NICEDamage utilises this caption such that if a damage + number ends in 69, the caption reads NICE! That's it. It has + over ten thousand downloads. +

+
+
+
+ +
+

+ Ok, this one's a bit more complex. For another, previous + project, I bought a Launchpad Mini, a MIDI input device with RGB + lighting on each key. It looks like this. +

+ a
+              product photo of the novation launchpad mini mk3. It's a
+              keyboard-like device made up of a grid of translucent RGB
+              squares. +

+ I got a little bit bored one weekend and decided to map this fun + device to Final Fantasy XIV's hotbars. It actually maps pretty + well - I put some different colour mapping in such that + cooldowns for the actions are demonstrated by the colour on the + button - and there's extra colours for when an action is combo'd + from another one. It's really cool, and I'm really happy with + it! It's fully mappable and should in-theory work with other + models of the launchpad. +

+
+
+
+
+
+ +
+
+ +