diff --git a/readme.md b/readme.md index fa1dee1..2bb2a0f 100644 --- a/readme.md +++ b/readme.md @@ -24,3 +24,10 @@ i got started using [flamed fury's 11ty guide](https://flamedfury.com/guides/11t # todo - [ ] set up image shortcodes to automatically create webps +- [ ] set up all albums to load placeholder image instead; potentially use some level of automation for this + - [ ] find a way to template this using includes +- [ ] completely fucking redo front page navigation +- [ ] paginate infinite nightmare +- [ ] convert fallback images for image links + - [ ] create script to do this automatically +- [ ] make the 404 page less wankery \ No newline at end of file diff --git a/src/_assets/img/infinite_nightmare/hohochip.jpg b/src/_assets/img/infinite_nightmare/hohochip.jpg new file mode 100644 index 0000000..abe6cee Binary files /dev/null and b/src/_assets/img/infinite_nightmare/hohochip.jpg differ diff --git a/src/_assets/img/my_favourite_music/aletterfromslowboat.jpg b/src/_assets/img/my_favourite_music/aletterfromslowboat.jpg new file mode 100644 index 0000000..22f882e Binary files /dev/null and b/src/_assets/img/my_favourite_music/aletterfromslowboat.jpg differ diff --git a/src/_assets/img/my_favourite_music/delanceyststation.jpg b/src/_assets/img/my_favourite_music/delanceyststation.jpg new file mode 100644 index 0000000..f3dca4d Binary files /dev/null and b/src/_assets/img/my_favourite_music/delanceyststation.jpg differ diff --git a/src/_assets/img/my_favourite_music/exile.jpg b/src/_assets/img/my_favourite_music/exile.jpg new file mode 100644 index 0000000..4ed2457 Binary files /dev/null and b/src/_assets/img/my_favourite_music/exile.jpg differ diff --git a/src/_assets/img/my_favourite_music/exo.jpg b/src/_assets/img/my_favourite_music/exo.jpg new file mode 100644 index 0000000..b0e6b8d Binary files /dev/null and b/src/_assets/img/my_favourite_music/exo.jpg differ diff --git a/src/_assets/img/my_favourite_music/gemini.jpg b/src/_assets/img/my_favourite_music/gemini.jpg new file mode 100644 index 0000000..d3153e6 Binary files /dev/null and b/src/_assets/img/my_favourite_music/gemini.jpg differ diff --git a/src/_assets/img/my_favourite_music/hyperdimensionalexpansionbeam.jpg b/src/_assets/img/my_favourite_music/hyperdimensionalexpansionbeam.jpg new file mode 100644 index 0000000..8a08452 Binary files /dev/null and b/src/_assets/img/my_favourite_music/hyperdimensionalexpansionbeam.jpg differ diff --git a/src/_assets/img/my_favourite_music/musictranquilizer.jpg b/src/_assets/img/my_favourite_music/musictranquilizer.jpg new file mode 100644 index 0000000..6777b8a Binary files /dev/null and b/src/_assets/img/my_favourite_music/musictranquilizer.jpg differ diff --git a/src/_assets/img/my_favourite_music/piano.jpg b/src/_assets/img/my_favourite_music/piano.jpg new file mode 100644 index 0000000..c6b4282 Binary files /dev/null and b/src/_assets/img/my_favourite_music/piano.jpg differ diff --git a/src/_assets/img/my_favourite_music/troupeaubleu.jpg b/src/_assets/img/my_favourite_music/troupeaubleu.jpg new file mode 100644 index 0000000..67b7a08 Binary files /dev/null and b/src/_assets/img/my_favourite_music/troupeaubleu.jpg differ diff --git a/src/_assets/img/my_favourite_music/twine.jpg b/src/_assets/img/my_favourite_music/twine.jpg new file mode 100644 index 0000000..335006f Binary files /dev/null and b/src/_assets/img/my_favourite_music/twine.jpg differ diff --git a/src/_assets/img/my_favourite_music/zapper.jpg b/src/_assets/img/my_favourite_music/zapper.jpg new file mode 100644 index 0000000..dc8963c Binary files /dev/null and b/src/_assets/img/my_favourite_music/zapper.jpg differ diff --git a/src/_assets/img/three_albums_july_2023/meirl.jpg b/src/_assets/img/three_albums_july_2023/meirl.jpg new file mode 100644 index 0000000..0718b9e Binary files /dev/null and b/src/_assets/img/three_albums_july_2023/meirl.jpg differ diff --git a/src/_includes/partials/footer.njk b/src/_includes/partials/footer.njk index bca8497..f4df405 100644 --- a/src/_includes/partials/footer.njk +++ b/src/_includes/partials/footer.njk @@ -1 +1 @@ -🦶 hosted on neocities (me) (source) profile picture care of neverless 🦶 \ No newline at end of file +🦶 hosted on neocities (me) (source) // credits: profile pic // banner image // sidebar image 🦶 \ No newline at end of file diff --git a/src/_includes/partials/link_links.njk b/src/_includes/partials/link_links.njk new file mode 100644 index 0000000..408bb5b --- /dev/null +++ b/src/_includes/partials/link_links.njk @@ -0,0 +1,18 @@ +
+

sitemap

+

journal.html +

my art

+

⚠️ newest post! ⚠️ +

thoughts and feelings

+ {% for post in collections['blog'] | reverse | limit(5) %} + - {{ post.page.date.toLocaleDateString("en-UK") }} // {{ post.data.title }} + {% endfor %} + - ...and da restt ... +

lists of things

+ {% for post in collections['lists'] | reverse | limit(5) %} + - {{ post.page.date.toLocaleDateString("en-UK") }} // {{ post.data.title }} + {% endfor %} + - older lists.... +

art inspiration list

+

miscellania

+
\ No newline at end of file diff --git a/src/_includes/styles.css b/src/_includes/styles.css index 79b79f5..599a60e 100644 --- a/src/_includes/styles.css +++ b/src/_includes/styles.css @@ -26,7 +26,6 @@ html { scroll-behavior: smooth; } - /* Format headers */ h1 { @@ -335,7 +334,9 @@ footer { } .infinite-nightmare img, -.infinite-nightmare video { +.infinite-nightmare video, +.half-width img, +.half-width video { max-width: 360px; } @@ -380,4 +381,8 @@ footer { top: 0; top: 50%; transform: translateY(-50%); +} + +.paragraph-deparagrapher p { + margin: 0; } \ No newline at end of file diff --git a/src/art.md b/src/art.md deleted file mode 100644 index 19f09b9..0000000 --- a/src/art.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: art -layout: layout/base.njk -eleventyImport.collections: ["art"] ---- - -
-{% for post in collections.art | reverse %} - \- [{{ post.data.title or post.data.page.fileSlug }}](/art/{{ post.data.page.fileSlug }}) -{% endfor %} -
\ No newline at end of file diff --git a/src/art/my-art-2023.md b/src/art/my-art-2023.md index d12f73e..21968b5 100644 --- a/src/art/my-art-2023.md +++ b/src/art/my-art-2023.md @@ -1,9 +1,15 @@ --- title: "my art 2023" -date: 2023-06-21 +date: 2023-07-22 --- + + + + + + diff --git a/src/blog.md b/src/blog.md index 1ad65a8..6fa4c99 100644 --- a/src/blog.md +++ b/src/blog.md @@ -6,6 +6,6 @@ eleventyImport.collections: ["blog"]
{% for post in collections.blog | reverse %} - \- [{{post.data.title or post.data.page.fileSlug }}](/blog/{{ post.data.page.fileSlug }}) + \- {{ post.page.date.toLocaleDateString("en-UK") }} // [{{post.data.title or post.data.page.fileSlug }}](/blog/{{ post.data.page.fileSlug }}) {% endfor %}
\ No newline at end of file diff --git a/src/games/eastward.md b/src/blog/eastward.md similarity index 100% rename from src/games/eastward.md rename to src/blog/eastward.md diff --git a/src/games/pizza_tower.md b/src/blog/pizza_tower.md similarity index 100% rename from src/games/pizza_tower.md rename to src/blog/pizza_tower.md diff --git a/src/music/three_albums_april_2023.md b/src/blog/three_albums_april_2023.md similarity index 100% rename from src/music/three_albums_april_2023.md rename to src/blog/three_albums_april_2023.md diff --git a/src/music/three_albums_february_2023.md b/src/blog/three_albums_february_2023.md similarity index 100% rename from src/music/three_albums_february_2023.md rename to src/blog/three_albums_february_2023.md diff --git a/src/music/three_albums_january_2023.md b/src/blog/three_albums_january_2023.md similarity index 100% rename from src/music/three_albums_january_2023.md rename to src/blog/three_albums_january_2023.md diff --git a/src/blog/three_albums_july_2023.md b/src/blog/three_albums_july_2023.md new file mode 100644 index 0000000..628adbc --- /dev/null +++ b/src/blog/three_albums_july_2023.md @@ -0,0 +1,26 @@ +--- +title: three albums - july 2023 +date: 2023-08-01 +--- + +[this month's playlist!](https://open.spotify.com/playlist/2c9JLkUOMge42v5GZmOpQC?si=ae908cbf1387433a) + +### 3. cancionero musical de palacio: music of the spanish court - accentus ensemble + + +i stumbled onto this by complete accident and might have ignored it if it was a bit less interesting, but when someone drops an album based on tunes from the 1500s into your lap, i feel like it's generally worth a listen. i was really taken aback by how much it reminds me of what some might consider stereotypical medieval style music, but i guess it makes total sense to use the real deal as your inspiration when making a movie or videogame or whatever. either that, or the accentus ensemble took some heavy creative liberties when recording this thing + +### 2. what a body can do - female wizard + + +listening to this album sends me straight into the nightclub scene from the matrix, which is ridiculous, because none of the music in the matrix sounds like this. i've heard some people say that this is a more dj-friendly album than their previous, which is probably why i get that impression, but it also makes the sometimes-grating industrial experience almost easy to listen to. despite that, the album has plenty of depth to it, as each track leads you from a nice approachable entry point to something grimier and with loads more depth + +### 1. radio therapy part 1 - sci clone + + +rym assigns the genre "jazzstep" to radio therapy part 1 which is frankly foul. who is making up genre names these days? thankfully it has broken beat and liquid dnb as kinda "sub-genres" which works just fine, because this album is a classic liquid dnb piece in my opinion. the first track opens with a classic start-of-album answering machine message talking about how the caller finds sci-clone exciting and relaxing and says that it "takes them back to all the places that i've been that i love"; i'm not sure how intentional it was, but the positivity coming off of this opening slice immediately rubs off on you and primes you to just have a really pleasant time. the sound is very reminiscent of something you might find in a classic 90's racing game, but it doesn't feel like they're chasing an aesthetic, and rather just feels like the organic feel of a pair of guys that fell into a particular type of music that they like to make + +### honourable mention: oneohtrix point never + + +oneohtrix point never is doing an australian tour and i made it to the local gig! i'm not sure that i've aired my gripes with live electronic music, and this set definitely isn't immune to my normal criticisms, but it was still a really fun experience. the skinny is that many electronic artists make pieces that are too complicated to perform live, but people are there to hear the tracks that they know, so they're forced to either play a cut down version of the classics or to find a way to "perform" them, which normally just means plugging all of the stems into a midi controller and making fine adjustments during the show. my favourite part was the encore, where he went up and performed a live composition on his two synths and decks, although you can sort of see why the full tracks require a little more fuss. in any case, still on the hunt for some artists that are happy to make some toned-down versions of their classics, or to play their classics but with more time between transitions to make up for the manual overhead \ No newline at end of file diff --git a/src/music/three_albums_june_2023.md b/src/blog/three_albums_june_2023.md similarity index 100% rename from src/music/three_albums_june_2023.md rename to src/blog/three_albums_june_2023.md diff --git a/src/music/three_albums_march_2023.md b/src/blog/three_albums_march_2023.md similarity index 100% rename from src/music/three_albums_march_2023.md rename to src/blog/three_albums_march_2023.md diff --git a/src/music/three_albums_may_2023.md b/src/blog/three_albums_may_2023.md similarity index 100% rename from src/music/three_albums_may_2023.md rename to src/blog/three_albums_may_2023.md diff --git a/src/games/🚧archive_game_radar.md b/src/blog/🚧archive_game_radar.md similarity index 90% rename from src/games/🚧archive_game_radar.md rename to src/blog/🚧archive_game_radar.md index 727a748..1d2f55d 100644 --- a/src/games/🚧archive_game_radar.md +++ b/src/blog/🚧archive_game_radar.md @@ -1,5 +1,5 @@ ---- -title: game radar - archive -draft: true ---- - +--- +title: game radar - archive +draft: true +--- + diff --git a/src/keyboards/🚧keyboards.md b/src/blog/🚧keyboards.md similarity index 100% rename from src/keyboards/🚧keyboards.md rename to src/blog/🚧keyboards.md diff --git a/src/games/🚧may_game_radar.md b/src/blog/🚧may_game_radar.md similarity index 96% rename from src/games/🚧may_game_radar.md rename to src/blog/🚧may_game_radar.md index 814c5d6..4285585 100644 --- a/src/games/🚧may_game_radar.md +++ b/src/blog/🚧may_game_radar.md @@ -1,57 +1,57 @@ ---- -title: game radar - may 2023 -draft: true ---- - -### cramped room of death -stephen's sausage roll but a dungeon crawler ig? - -### breeze in the clouds -platformer beat-em-up that i can say definitively is not using the anthro look as a cute aesthetic, but because the artists are absolute dyed-in-the-wool furries. that does at least mean that the characters all look super appealing and distinct and have heaps of charm. the music also sounds super cool. - -### cataclismo -from my searching around this game appears to be equal parts fortress builder and adventure game. the former could be really interesting, since it doesnt seem to be a tower defence but something new (at least to me) - -### #blud -noughties style animation in a 2d top down brawler - gameplay is maybe not that unique but its a tried and true formula and the animation might be enough to carry it - -### black sword dx -a really unique look, but more isometric 2d brawler type gameplay - -### dordogne -colour me intrigued, especially after watching 40 trailers i skipped almost immediately - -### tako no himitsu -i dont think ive ever seen a new game capture the gba feel quite as well as this appears to - -### mr run and jump -ya girl loves movement platformers and this one looks like it feels good - -### fall of porcupine - - -### planet of lana - - -### tchia -new caledonia - -### times and galaxy - - -### desta: the memories between - - -### omega strikers - - -### The Caligula Effect 2 - - -### tin can - - -### mail time - - +--- +title: game radar - may 2023 +draft: true +--- + +### cramped room of death +stephen's sausage roll but a dungeon crawler ig? + +### breeze in the clouds +platformer beat-em-up that i can say definitively is not using the anthro look as a cute aesthetic, but because the artists are absolute dyed-in-the-wool furries. that does at least mean that the characters all look super appealing and distinct and have heaps of charm. the music also sounds super cool. + +### cataclismo +from my searching around this game appears to be equal parts fortress builder and adventure game. the former could be really interesting, since it doesnt seem to be a tower defence but something new (at least to me) + +### #blud +noughties style animation in a 2d top down brawler - gameplay is maybe not that unique but its a tried and true formula and the animation might be enough to carry it + +### black sword dx +a really unique look, but more isometric 2d brawler type gameplay + +### dordogne +colour me intrigued, especially after watching 40 trailers i skipped almost immediately + +### tako no himitsu +i dont think ive ever seen a new game capture the gba feel quite as well as this appears to + +### mr run and jump +ya girl loves movement platformers and this one looks like it feels good + +### fall of porcupine + + +### planet of lana + + +### tchia +new caledonia + +### times and galaxy + + +### desta: the memories between + + +### omega strikers + + +### The Caligula Effect 2 + + +### tin can + + +### mail time + + ### cosmic wheel sisterhood \ No newline at end of file diff --git a/src/games/modern_puzzle_games🚧.md b/src/blog/🚧modern_puzzle_games.md similarity index 100% rename from src/games/modern_puzzle_games🚧.md rename to src/blog/🚧modern_puzzle_games.md diff --git a/src/blog/🚧new_blog_post.md b/src/blog/🚧new_blog_post.md index 1ac418e..461e658 100644 --- a/src/blog/🚧new_blog_post.md +++ b/src/blog/🚧new_blog_post.md @@ -15,4 +15,6 @@ https://twitter.com/eiken3kyuboy/status/1662372892548689921 https://twitter.com/Dr_Mice_/status/1662097202381193217 -https://twitter.com/128_mhz/status/1670265481717252096 \ No newline at end of file +https://twitter.com/128_mhz/status/1670265481717252096 + +https://skeb.jp/@birdman46049238 \ No newline at end of file diff --git a/src/games/🚧the_witness.md b/src/blog/🚧the_witness.md similarity index 100% rename from src/games/🚧the_witness.md rename to src/blog/🚧the_witness.md diff --git a/src/music/🚧three_albums_archive.md b/src/blog/🚧three_albums_archive.md similarity index 100% rename from src/music/🚧three_albums_archive.md rename to src/blog/🚧three_albums_archive.md diff --git a/src/climbing/climbing.json b/src/climbing/climbing.json deleted file mode 100644 index 2089bf5..0000000 --- a/src/climbing/climbing.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "layout": "layout/blog", - "tags": ["climbing","post"] - } \ No newline at end of file diff --git a/src/credits.md b/src/credits.md index 5abbee1..fa906cf 100644 --- a/src/credits.md +++ b/src/credits.md @@ -12,7 +12,10 @@ this loop was done by [dav 19](https://www.deviantart.com/dav-19/art/Pixel-Yui-3 this one is an old windows "my computer" icon, i believe from windows 2000 - + +a lovely piece of pixel art by [mini-moss](https://www.tumblr.com/mini-moss/680424764168339456/respite-twitter-instagram-print-shop) + + \ No newline at end of file diff --git a/src/games.md b/src/games.md deleted file mode 100644 index d21bac5..0000000 --- a/src/games.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: games -layout: layout/base.njk -eleventyImport.collections: ["games"] ---- - -
-{% for post in collections.games | reverse %} - \- [{{ post.data.title or post.data.page.fileSlug }}](/games/{{ post.data.page.fileSlug }}) -{% endfor %} -
\ No newline at end of file diff --git a/src/games/games.json b/src/games/games.json deleted file mode 100644 index 6b646e0..0000000 --- a/src/games/games.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "layout": "layout/blog", - "tags": ["games","post"] - } \ No newline at end of file diff --git a/src/index.md b/src/index.md index 6cf8693..d03047e 100644 --- a/src/index.md +++ b/src/index.md @@ -1,23 +1,27 @@ --- layout: layout/base.njk -title: becoming one with the slime +title: 🐌 becoming one with the slime 🐌 --- -hey what's up! my name is uuupah. im a twenty-something non-binary (they/them please!) person from australia plagued by a metaphysical urge to record my thoughts and feelings in meandering prose. i'm into exploring less mainstream music genres, character design and figure drawing, puzzle and movement videogames, old anime and rock climbing. +![](https://64.media.tumblr.com/5d37ab2aa782462c7aa092f7bd0d27cb/c44d7d4b9325e7d1-16/s1280x1920/1690fe1e95401b094ffa62ae933ff2c038e62814.gifv) -### recent updates +hey what's up! my name is uuupah. im a twenty-something non-binary (they/them) person from australia plagued by a metaphysical urge to record my thoughts and feelings in meandering prose. i'm into exploring less mainstream music genres, character design and figure drawing, puzzle and movement videogames, old anime and rock climbing. + + -### pages +## 📃 pages 📃 -{% include 'partials/link_tiles.njk' %} +{% include 'partials/link_links.njk' %} -### this site + -is built using [eleventy](https://11ty.dev) and hosted on [neocities](https://neocities.org/). i used [flamedfury's tutorial](https://flamedfury.com/guides/11ty-homepage-neocities/) to get started, and implemented [bcomnes deployment github action](https://github.com/bcomnes/deploy-to-neocities) to bring the amount of work required to make changes to almost zero. i also use [obsidian](https://obsidian.md/) and obsidian git to create and edit posts on my phone. the source code for this site is [here](https://github.com/uuupah/11ty_neocities). \ No newline at end of file + \ No newline at end of file diff --git a/src/infinite_nightmare.md b/src/infinite_nightmare.md index 5b53681..06c4300 100644 --- a/src/infinite_nightmare.md +++ b/src/infinite_nightmare.md @@ -11,6 +11,30 @@ welcome to the infinite nightmare list aka a big dumpster for me to put art rela --- +**kiwifie** +[link](https://kiwifie.tumblr.com/) +![](https://64.media.tumblr.com/9c64e85e170e8a817ad635c2f04c6e1f/78f810c2e8f9a9ea-50/s500x750/79c93f40f2b600fb730cbe5ac8a694fd8229eae3.png) +![](https://64.media.tumblr.com/ed90db357e134e4b68090f00afc4247a/7eed6537b0f2a4a1-b4/s1280x1920/2195a03446be7693ae667013293957240ecfbb80.jpg) +i'm digging a lot of things about this artist: their digital style and brushes, colouring techniques, anatomy shorthand, expressions and character movement + +--- + +**sketchy ipad inspirations!! kip and kms2605** +[kip](https://graskip.tumblr.com/post/721703456942030849/mountain-spirit) +![](https://64.media.tumblr.com/9845d0279d6faa46f32c367a83eaa20b/f8780d92a1b9a33f-78/s1280x1920/a6471dabc0a371019d3f7912e12d40070113e633.png) +[kms2605](https://twitter.com/kms2605/status/1667455036782411776) +![](https://pbs.twimg.com/media/FyP9Y8SaYAAKZip?format=jpg&name=4096x4096) +quite ironically, the first thing i gravitated towards with digital art was just re-representing the traditional stuff i already did on paper, as you can probably see with [this piece](/art/my-art-2023/#img_13), which was heavily driven by these two artists. kip's style is an obvious inspiration, and the sketchy rendering style is something that kms does with all their work, even when it is coloured. + +--- + +**hoho_chip** +[link](https://www.instagram.com/hoho_chip/) +![](/_assets/img/infinite_nightmare/hohochip.jpg) +this artist does a lot of extreme stylisation with a very loose hand. their side-by-sides with references are really neat to try and understand their process, and their use of digital watercolours and pastels is something that i would like to try + +--- + **dimitris pantazis** [link](https://www.instagram.com/p/Cr8_PqeIsbu/) ![](/_assets/img/infinite_nightmare/dimitrispantazis.jpg) diff --git a/src/journal_html.md b/src/journal_html.md index 934c9dd..cc6c9ee 100644 --- a/src/journal_html.md +++ b/src/journal_html.md @@ -3,6 +3,9 @@ layout: layout/base.njk title: journal.html --- +**2023.08.01** +huge homepage redesign! i'll write about it in some more detail but i'm currently at work and should really be finishing up my tasks instead + **2023.07.06** my general situation has stabilised a lot so i'm planning on doing a lot more on the site. i'm inspired by [desert jaguar](https://desertjaguar.casa/)'s scraps vs thoughts layout and i plan to keep migrating lists from my bookmarks and obsidian to the site - it feels like a great way to keep them in a centralised spot for my own use, as well as hopefully share some neat stuff with people who might not have seen them. i am finding the colour scheme is a little muddy for pages like [cool game links](/lists/cool_game_links) so i'm going to toy with the colour scheme a little bit in the next couple of days diff --git a/src/keyboards/keyboards.json b/src/keyboards/keyboards.json deleted file mode 100644 index c5a9cb3..0000000 --- a/src/keyboards/keyboards.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "layout": "layout/blog", - "tags": ["keyboards","post"] - } \ No newline at end of file diff --git a/src/links.md b/src/links.md index c1d049f..aaf010e 100644 --- a/src/links.md +++ b/src/links.md @@ -8,7 +8,7 @@ title: links - 🍙 [anilist.co/user/uuupah/](https://anilist.co/user/uuupah/) - 🖥️ [github.com/uuupah/](https://github.com/uuupah/) - 🕹️ [infinitebacklog.nl/users/uuupah/](https://infinitebacklog.nl/users/uuupah) -- 📚 [https://app.thestorygraph.com/profile/squid_with_glasses](https://app.thestorygraph.com/profile/squid_with_glasses) +- 📚 [app.thestorygraph.com/profile/squid_with_glasses](https://app.thestorygraph.com/profile/squid_with_glasses) ### my pals' sites - [tanami.org/](https://tanami.org/) diff --git a/src/lists.md b/src/lists.md index 530c964..5ba6418 100644 --- a/src/lists.md +++ b/src/lists.md @@ -6,6 +6,6 @@ eleventyImport.collections: ["lists"]
{% for post in collections.lists | reverse %} - \- [{{ post.data.title or post.data.page.fileSlug }}](/lists/{{ post.data.page.fileSlug }}) + \- {{ post.page.date.toLocaleDateString("en-UK") }} // [{{ post.data.title or post.data.page.fileSlug }}](/lists/{{ post.data.page.fileSlug }}) {% endfor %}
\ No newline at end of file diff --git a/src/lists/albums.md b/src/lists/albums.md index 1978510..8112bc4 100644 --- a/src/lists/albums.md +++ b/src/lists/albums.md @@ -1,9 +1,8 @@ --- title: my favourite music -date: 2023-06-14 --- -# albums +

albums

@@ -21,7 +20,10 @@ date: 2023-06-14 delancey st. station - pinc louds
- + + + + hyper dimensional expansion beam - the comet is coming
@@ -29,7 +31,10 @@ date: 2023-06-14 twine - taylor deupree & marcus fischer
- + + + + troupeau bleu - cortex
@@ -37,7 +42,10 @@ date: 2023-06-14 gemini - machine girl
- + + + + a letter from slowboat - ryo fukui
@@ -58,7 +66,10 @@ date: 2023-06-14
- + + + + the elder scrolls v: skyrim - jeremy soule
@@ -95,4 +106,23 @@ date: 2023-06-14
-🚧👷‍♂️ this page is still in construction! watch this space! 👷‍♀️🚧 \ No newline at end of file +🚧👷‍♂️ this page is still in construction! watch this space! 👷‍♀️🚧 + + + + + + \ No newline at end of file diff --git a/src/lists/art_resources.md b/src/lists/art_resources.md new file mode 100644 index 0000000..103e6a7 --- /dev/null +++ b/src/lists/art_resources.md @@ -0,0 +1,7 @@ +--- +title: art resources +--- + +### marc brunet brushes +[https://cubebrush.co/mb/products/m2ri4q/starter-brush-pack-2023](https://cubebrush.co/mb/products/m2ri4q/starter-brush-pack-2023) +some really cute free brushes, although ive really only used the **MB Lineart (Legendary)** brush \ No newline at end of file diff --git a/src/art/artists.md b/src/lists/artists.md similarity index 99% rename from src/art/artists.md rename to src/lists/artists.md index c6beb55..87488ef 100644 --- a/src/art/artists.md +++ b/src/lists/artists.md @@ -1,6 +1,5 @@ --- title: "my favourite artists" -date: 2023-04-13 --- i find my """artistic journey""" and """""artistic goals""""" are pretty hard to grasp; i don't think i'm the kind of person who has some great unique thing to say that hasnt been said before, and my insecurity about my skill means that i find it pretty difficult to experiment. i guess i just want to make things that look neat, but i want to stay genuine while doing it, whatever that means @@ -79,7 +78,8 @@ i really love nobby's approach to minimally anthropomorphising their furry chara
the very worst thing is potentially one of the most creative artists on this list. i'm always amazed at how they can pull a new twist on a character design to create something simultaneously otherworldly and familiar - + +
🚧👷‍♂️ this page is still in construction! watch this space! 👷‍♀️🚧 diff --git a/src/lists/cool_game_links.md b/src/lists/cool_game_links.md index 9d5906e..bc9e3ef 100644 --- a/src/lists/cool_game_links.md +++ b/src/lists/cool_game_links.md @@ -1,8 +1,11 @@ --- title: cool game links -date: 2023-07-06 --- +### infinite backlog +[https://infinitebacklog.nl/](https://infinitebacklog.nl/) +i have a constant issue where i'll get really busy and forget what games i started playing a couple weeks ago, so a game tracking system is super important for me. i mentioned in a blog post that i'd checked out a bunch of different sites and found that infinite backlog was the best thing available, it is feature-complete for all the different organisation you might want to do, but it still has a really easy to navigate interface + ### splatoon 3 gear seed checker [https://leanny.github.io/splat3seedchecker/](https://leanny.github.io/splat3seedchecker/) a website for putting together progression paths to get perfect gear in splatoon 3. a little fiddly to use, but fundamental to getting gear that will make other players say "oh, they're just doing a warmup for anarchy mode" when you kill them @@ -15,7 +18,7 @@ these let you spoof pokemon events like you used to get at game shops from a hom ### satisfactory optimal alternate recipes [https://www.reddit.com/r/SatisfactoryGame/comments/mpjzfb/optimal_alternate_recipes_pushing_the_raw/](https://www.reddit.com/r/SatisfactoryGame/comments/mpjzfb/optimal_alternate_recipes_pushing_the_raw/) -❗[local backup](/unlisted/optimal_alternate_recipes/)❗ +❗[local backup](/misc/optimal_alternate_recipes/)❗ this breakdown is so unbelievably solid that i've backed it up to my own damn website. reddit might go down but this thing ain't   diff --git a/src/lists/cool_links.md b/src/lists/cool_links.md index 8ef4468..d55fc2e 100644 --- a/src/lists/cool_links.md +++ b/src/lists/cool_links.md @@ -1,6 +1,5 @@ --- title: cool links -date: 2023-06-21 --- ### name your price essentials diff --git a/src/lists/lists.json b/src/lists/lists.json index edb3fc1..b3619a9 100644 --- a/src/lists/lists.json +++ b/src/lists/lists.json @@ -1,4 +1,5 @@ { "layout": "layout/blog", - "tags": ["lists","post"] + "tags": ["lists","post"], + "date": "git Last Modified" } \ No newline at end of file diff --git a/src/lists/ttrpgs.md b/src/lists/ttrpgs.md new file mode 100644 index 0000000..f044c8b --- /dev/null +++ b/src/lists/ttrpgs.md @@ -0,0 +1,24 @@ +--- +title: ttrpgs +--- +
+ +### eat god +[link](https://penguinking.com/eat-god/) +a game where you play as ~~definitely not a muppet~~ a demon or goblin or gremlin who is trying to find god, kill it, and eat it as retribution for gifting you your cursed existence + +![](https://64.media.tumblr.com/e961b1758835becdacb43c0aca30694f/88c40240c8409dd7-f0/s1280x1920/2ec292db4edd92e496a0603b69de2a5eb071acae.jpg) + +### troika! +[link](https://www.troikarpg.com/) +a ruleset / setting that facilitates you living inside a psychedelic world where the rules of existence don't quite match up with the world we're used to. describes itself as science-fantasy - think hylics. + +![](https://static.wixstatic.com/media/ab0272_5ae2a5630189434ea5fbacd5d3ad11b9~mv2.png/v1/fill/w_883,h_619,al_c,q_90,usm_0.66_1.00_0.01,enc_auto/bigsquirm_ks_sealdemon.png) + +### heart: the city beneath +[link](https://rowanrookanddecard.com/product/heart-the-city-beneath-rpg/) +grimey dungeoncrawling setting / ruleset that reminds me a lot of darkest dungeon. + +![](https://i0.wp.com/rowanrookanddecard.com/wp-content/uploads/2020/03/ANGEL-scaled.jpg) + +
\ No newline at end of file diff --git a/src/lists/webcomics.md b/src/lists/webcomics.md index ae3b660..effade3 100644 --- a/src/lists/webcomics.md +++ b/src/lists/webcomics.md @@ -1,8 +1,14 @@ --- title: webcomics -date: 2023-03-03 --- +### gold scissors +[read here](https://goldscissors.thecomicseries.com/comics/first/) + +another surreal comic about lesbians and dreams and arcane beings + + + ### 17776 [read here](https://www.sbnation.com/a/17776-football) @@ -31,5 +37,12 @@ another homestuck-like, this time with anthropomorphic bugs. couple of hateful c the assorted works of internet crazy person andrew hussie are varied, and have also not really stood the test of time (especially with the death of flash). while there is some 2000's style questionable subject matter lightly sprinkled in amongst them, and homestuck went slightly off the rails when it comes to writing a grand metaphor about the reader / writer interaction, they are absolute classics that i still believe are worth reading. homestuck is a real big one, so i would recommend going through them in the order of sweet bro -> problem sleuth -> homestuck. problem sleuth in particular is very tightly written and wraps up quite neatly, so if you get through that and then had to stop during homestuck i won't blame you. - \ No newline at end of file + + +### what happens next +[read here ❗content warning for murder and the gamut of queer issues❗](https://whathappensnext.webcomic.ws/archive/) + +a really wild comic about trans people in the real world and tumblr / true crime culture. deals with some really heavy stuff so read the content warning for each sub-story. + + + diff --git a/src/misc.md b/src/misc.md new file mode 100644 index 0000000..86cd36d --- /dev/null +++ b/src/misc.md @@ -0,0 +1,11 @@ +--- +title: misc +layout: layout/base.njk +eleventyImport.collections: ["misc"] +--- + +
+{% for post in collections.misc | reverse %} + \- {{ post.page.date.toLocaleDateString("en-UK") }} // [{{post.data.title or post.data.page.fileSlug }}](/misc/{{ post.data.page.fileSlug }}) +{% endfor %} +
\ No newline at end of file diff --git a/src/unlisted/optimal_alternate_recipes.md b/src/misc/optimal_alternate_recipes.md similarity index 100% rename from src/unlisted/optimal_alternate_recipes.md rename to src/misc/optimal_alternate_recipes.md diff --git a/src/movie/movie.json b/src/movie/movie.json deleted file mode 100644 index 8c40eb7..0000000 --- a/src/movie/movie.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "layout": "layout/blog", - "tags": ["movies","post"] - } \ No newline at end of file diff --git a/src/music.md b/src/music.md deleted file mode 100644 index c013a92..0000000 --- a/src/music.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: music -layout: layout/base.njk -eleventyImport.collections: ["music"] ---- - -
-{% for post in collections.music | reverse %} - \- [{{ post.data.title or post.data.page.fileSlug }}](/music/{{ post.data.page.fileSlug }}) -{% endfor %} -
\ No newline at end of file diff --git a/src/music/music.json b/src/music/music.json deleted file mode 100644 index d878b9d..0000000 --- a/src/music/music.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "layout": "layout/blog", - "tags": ["music","post"] -} \ No newline at end of file diff --git a/src/not_found.md b/src/not_found.md.bak similarity index 98% rename from src/not_found.md rename to src/not_found.md.bak index 75520a8..7de4b8f 100644 --- a/src/not_found.md +++ b/src/not_found.md.bak @@ -1,6 +1,6 @@ ---- -title: nope -layout: layout/base.njk -permalink: not_found.html ---- +--- +title: nope +layout: layout/base.njk +permalink: not_found.html +--- ![](https://64.media.tumblr.com/8609103ac770ec5e2cd5fb497b3e118b/5f2a048817dd5fe3-f8/s400x600/54c8bfccac37457bd00cd5d69aab5ee2f0acfb7c.gifv) \ No newline at end of file