2026-02-13
Spheal Amigurumi Pattern
www.loopycathrine.com/amigurumi-patterns/2020/01/12/spheal-amigurumi-pattern2025-12-31
scripting - CSS | MDN
developer.mozilla.org/en-US/docs/Web/CSS/Reference/At-rules/@media/scriptingYou don't need <noscript> anymore.
2025-09-18
You no longer need JavaScript
lyra.horse/blog/2025/08/you-dont-need-jsSo much of the web these days is ruined by the bloat that is modern JavaScript frameworks. React apps that take several seconds to load. NextJS sites that throw random hydration errors. The node_modules folder that takes up gigabytes on your hard drive.
It’s awful. And you don’t need it.
2025-09-16
tree.fm
www.tree.fmListen to a random forest.
2025-03-31
TheXTech
wohlsoft.ru/projects/TheXTechTheXTech is a free and open-source game engine for Mario-like platforming games. There is a complete and extended source code port of the Super Mario Bros. X 1.3 game engine (later just "SMBX"), and its direct unofficial continuation after development halted in the 2011th year. This engine preserves full compatibility with levels and episodes made for the original SMBX game, including its repacks. And it's allowed to create brand-new Levels, Episodes, and content packs. Unlike the original SMBX game that depends on Windows and x86, TheXTech can work on many operating systems (including Linux distros, macOS, xBSD, Android, Haiku, etc.) and processor architectures (including x86_64, ARM, PowerPC, MIPS, etc.).
2025-03-19
Rom Patcher JS
www.marcrobledo.com/RomPatcher.js2025-01-24
How I Made A Laptop From Scratch
byran.ee/posts/creationCreating a highly-integrated open-source laptop from scratch. Power in your hands.
2025-01-09
Cinema Cats
cinemacats.comCelebrating Cats in Movies, Television and More!
2024-12-11
I am a full blown vegan, give me details on dairy "production" : vega…
old.reddit.com/r/vegancirclejerkchat/comments/1h9wrhm/i_am_a_full_blown_vegan_give_me_details_on_dairy2024-09-20
Story Generator
www.plot-generator.org.uk/storyAutomatic short story generator tool. Choose some keywords and we will automatically create a short story in seconds.
2024-08-14
Rendering callouts similarly in Pandoc - Help - Obsidian Forum
forum.obsidian.md/t/rendering-callouts-similarly-in-pandoc/40020Obsidian callout blocks are not part of the Pandoc Markdown syntax. But since they are kind of extended block quote syntax, you can write a Pandoc Lua filter 76 to convert them to anything you want.
Below a quick-and-dirty solution which converts Obsidian callout blocks
> [!NOTE]- Note Title
>
> Note content
to Pandoc’s native Divs
::: {.callout data-callout="note" title="Note Title"}
Note content
:::
with the following Pandoc command:
pandoc -t markdown --lua-filter obsidian-callouts.lua file.md
Important: Please note, that in order for this simple filter to work properly, callout type and title line should occupy a separate paragraph.
Here the content of the obsidian-callouts.lua file:
local stringify = (require "pandoc.utils").stringify
function BlockQuote (el)
start = el.content[1]
if (start.t == "Para" and start.content[1].t == "Str" and
start.content[1].text:match("^%[!%w+%][-+]?$")) then
_, _, ctype = start.content[1].text:find("%[!(%w+)%]")
el.content:remove(1)
start.content:remove(1)
div = pandoc.Div(el.content, {class = "callout"})
div.attributes["data-callout"] = ctype:lower()
div.attributes["title"] = stringify(start.content):gsub("^ ", "")
return div
else
return el
end
end
You can modify it to convert callout blocks depending on the output format (HTML, LaTeX, etc.)
2024-08-07
volpeon.ink > Emojis
volpeon.ink/emojis2024-07-02
Gender neutral language within build instructions by Tunas1337 · Pull Request #6814 · SerenityOS/serenity
github.com/SerenityOS/serenity/pull/6814LOL, guess I'm not using SerenityOS.
2024-06-10
s32 unix clock
retr0.id/stuff/2038LGBTQ+ Characters
lgbtqcharacters.miraheze.org/wiki/Main_PageA Problem Squared
aproblemsquared.libsyn.comMatt Parker and Bec Hill present: A Problem Squared. A podcast dedicated to solving problems of all kinds, such as, "What should I listen to right now?". A Podcast Squared. First one's free. You're welcome.
GDC Game Audio Bundles - SONNISS - Royalty Free Sound Effects
sonniss.com/gameaudiogdcEach year we give away thousands of dollars worth of sound effects for free in celebration of the Game Developers Conference. This is our archive. Everything is royalty-free and commercially usable.
Castle Swimmer
www.webtoons.com/en/fantasy/castle-swimmer/list?title_no=1499What happens when your entire life is ruled by a prophecy – your future foretold by people you’ve never met, who died long before you were born. Such is the story of two young sea creatures. One believed to be a guiding light for his people, a Beacon who will lead them to a bright, prosperous future. The other is a teenage prince for who’s destiny is to KILL the Beacon so that HIS own people might thrive. When both reject the course set for them, it leads to a raucous adventure as big and unpredictable as the ocean itself – and a romance that nobody could have predicted.
2024-06-09
Ogmo Editor 3
ogmo-editor-3.github.ioA free, open source, project oriented level editor made for indie game developers by indie game developers.
GB BASIC
paladin-t.github.io/kits/gbbGB BASIC is a retro Fantasy Console that generates ROMs compatible with the popular handheld game console.