Profile avatar
codemonument.bsky.social
39 posts 13 followers 58 following
Regular Contributor
Active Commenter

Mega nice! A standard validator schema!

I have to watch this

Just hit the “publish” button on a brand-new blog post! ⭐ This one shares the killer pattern I find myself using over and over with container queries: responding *within* media queries to adapt to the new container size. Once you start using this trick, you’ll see opportunities for it all over. 😄

Found this little "Make your own Dino" easter egg on the deno website. Pressed some times on the "Random" Button. This killed me 🤣 deno.com

#CSS **`scroll-state()` container queries** in Chrome 133 ```css @container scroll-state(stuck: top) { … } ``` Read all about snapped, stuck and scrollable in this post: https://developer.chrome.com/blog/css-scroll-state-queries ↪ https://nerdy.dev/scroll-state-container-queries

Must reads for web developers - how modern browsers work: 1️⃣ bit.ly/browsers-pt1 2️⃣ bit.ly/browsers-pt2 3️⃣ bit.ly/browsers-pt3 4️⃣ bit.ly/browsers-pt4 and browser.engineering a free to read book on the topic

😮 So a while back, I shared my favourite icon package, Lucide. It’s a Feather fork, with *so many* icons (1500+). I just discovered Lucide Lab, a collection of 300+ more icons! It includes more-niche icons that may not be widely useful enough for the main package. github.com/lucide-icons...

Reading @antfu.me antfu.me/posts/epoch-... I love this approach! This needs to be stated clearly in the reader, but otherwise I don't see issues with it right now (without having tried). Love it!

Wow! 😳

Want fireworks in your terminal? ❤️ Try `npx firew0rks` Source: github.com/addyosmani/f...

Strong thought!

Ohhh please! I looked for the tanstack router for solid right today!

I've officially integrated @deno.land into the newest version of @orama.com , so you can communicate with your data in plain JavaScript. Performances are absolutely incredible.

This is the most useful thing since sliced bread now!

Never search for elements again which create unwanted scrollbars! 🥹 "In Chrome 130, you can use the new scroll badge in the Elements Panel to locate the scrollable elements!" developer.chrome.com/blog/swe-dev...

@deno.land can you confirm that i'm Part of the deno Advent of Code Challenger? How and when do we get these Stickers? How is 'the first submission' determined? Can you access my email on my GitHub profile? (I cannot verify that for sure)

New idea for @colinhacks.com: a ZodSchema.new() function! Imagine to be able to create an object for a schema like this: ``` ZodSchema.new({ //Editor autocompletes to z.input<ZodSchema> }) ``` If you like this idea, please vote for it here: github.com/colinhacks/z...

I just completed "Red-Nosed Reports" - Day 2 - Advent of Code 2024 #AdventOfCode adventofcode.com/2024/day/2 This was way harder than 1. Learning: Sometimes the brute force variant is the most correct. Don't pre-optimize for runtime until you hit a problem!!!

I've completed The Reindeer Have Had Enough - Advent of TypeScript 2024 adventofts.com/events/2024/1 Thanks @tkdodo.eu for sharing this, I'm interested how complicated it will be over the next days!

I just completed "Historian Hysteria" - Day 1 - Advent of Code 2024 #AdventOfCode adventofcode.com/2024/day/1 #aoc-2024 #aoc-2024-in-deno

I'm joining the Advent of Code Deno Edition! 🤩 Obvsly cannot skip this challenge in my most loved runtime for writing typescript! github.com/bjesuiter/ad... @deno.land #aoc-2024-in-deno #aoc-2024

I'm sooo hyped! Need this in my life! Can't try it right now, but hope to come around to it in some days!

Nice! I wanted to try that anyways 😃

This one sounds incredible! Added to my to watch list

Yesh, next deno Update! Reading into it after my work today! 😍 deno.com/blog/v2.1

✂️Code cleanup / removal is vital to get right. Don't leave leftovers behind! Otherwise, you'll maintain dead code forever. Knip can really help here - one of my favourite tools in the CI toolchain: knip.dev