Started using jules.google.com
Async development agent, you grant it access to GitHub repositories, it clones them in a VM and runs tasks (including scripts etc).
Not bad for small tasks, stubbing/poc attempts or while on the go (slow to type code on mobile).
07.08.2025 10:24 — 👍 0 🔁 0 💬 0 📌 0
Also pre-TypeScript libraries that do a bunch of runtime parameter validation
05.08.2025 13:06 — 👍 0 🔁 0 💬 0 📌 0
I'm reviving my newsletter, have ~2 months of content scheduled.
Subscribe if you think this content might interest you.
buttondown.com/hugo/
01.08.2025 19:37 — 👍 0 🔁 0 💬 0 📌 0
Isaac Z. Schlueter
Big news! I'm available for hire! If you have JavaScript/TypeScript you want written, and you have budget for an ambitious and highly skilled practitioner with over 20 years of experience doing that, including leading teams, communities, and execs, hit me up.
izs.me
(RT please)
31.07.2025 17:45 — 👍 36 🔁 22 💬 1 📌 0
Screenshot.Rocks | Create beautiful mobile or browser screenshots and mockups
Create mobile or browser mockups from screenshots in seconds. Screenshot.rocks turns ordinary browser screenshots into beautiful mockups
Was struggling to find a free product screenshot generator for Alpine Devtools Chrome extension
For the Chrome Webstore you need to capture 1280x800 and I'm just not that accurate with drag and drop
screenshot.rocks seems to do the basics of what I need (browser frame config, padding/background)
11.05.2025 11:51 — 👍 0 🔁 0 💬 1 📌 0
Aaaand just noticed it's not responsive
I've got a plan to move alpine.codewithhugo.com over (which is 11ty) so will likely redo at that point
03.05.2025 15:58 — 👍 0 🔁 0 💬 0 📌 0
Interesting concept of a minimalist blog
ostwilkens.se/blog/setting...
To be honest for alpinedevtools.com/updates
I went even further: use .md files and generate the HTML using the VSCode Markdown All In One plugin.
03.05.2025 15:56 — 👍 0 🔁 0 💬 1 📌 0
Funny story
I keep hitting this "I want to select elements where attr starts with *prefix*"
Eg. Detect HTMX I need hx-* or data-hx-*
15.04.2025 07:39 — 👍 1 🔁 0 💬 0 📌 0
GitHub diff adding Tailwind dark: classes to support dark mode
I'm not one to admit when I'm being stubborn
But working on the Alpine Devtools in the evenings means I finally felt the "why no dark mode" pain
This vindicates the time I spent wiring Tailwind (v4) properly the other day (devtools v1 is on Tailwind 1)
15.04.2025 07:31 — 👍 1 🔁 0 💬 0 📌 0
Early Access (paid) features, see alpinedevtools.com/pricing (launch discount!)
- Alpine v3 stores inspect/data edit
- Alpine v3 eval warnings
- jump to source in elements tab for eval errors and components
12.04.2025 12:58 — 👍 0 🔁 0 💬 1 📌 0
Free Extension (re)available on Chrome webstore:
- manifest v3 compatible (rewrite to @solidjs.com)
- component inspect/data edit
- performance fix for larger components (instant updates, tested on 10k data properties)
- state/sync reload fixes (no more close/reopen, works on page refresh etc)
12.04.2025 12:58 — 👍 2 🔁 0 💬 1 📌 0
One of the first times I've ever been bitten by Big O
```
data.map((d) => {
prevState = oldData.reduce()
})
```
When data and oldData are ~10k entries, you're doing a 100 million iterations.
Move the reduce out of the loop (.map here) and you're doing 20k...
02.04.2025 12:11 — 👍 0 🔁 0 💬 0 📌 0
No build Tailwind
- use `@tailwindcss/browser` via CDN (but only on local) in your app
- run `copy(document.querySelector('style').innerText)` (depending on whether you've got other styles you might need to mess with the selector)
- paste into your .css file
28.03.2025 17:43 — 👍 2 🔁 0 💬 0 📌 0
So here's the deal:
- rewrite the panel with SolidJS
- launch paid early access (components features available now, stores in the next release)
Early access available at: github.com/sponsors/Hug...
27.03.2025 08:35 — 👍 0 🔁 0 💬 0 📌 0
Alpine.js devtools early access extension in the Chrome Web Store
Trying something new (or maybe reviving an old project)
I was part of the original crew that worked on Alpine devtools.
Chrome has obsoleted the extension (granted, it has had no updates since Sept 24) with Manifest v3
27.03.2025 08:35 — 👍 0 🔁 0 💬 1 📌 0
Using Windows as a dev machine (temporarily) professionally for the first time after ~ a decade of being on Mac
I started leaning into the IDE to run things, shell is just a minefield with backslash in paths, slow and bad auto complete
Keyboard navigation muscle memory for VSCode letting me down
16.01.2025 16:07 — 👍 1 🔁 0 💬 0 📌 0
That looks awesome
15.01.2025 19:24 — 👍 0 🔁 0 💬 0 📌 0
MacBook Air M1 -> remote desktop via Citrix
I guess will sip battery?
10.01.2025 10:38 — 👍 0 🔁 0 💬 0 📌 0
I'm changing jobs in the new year so there may be a set of new posts about what the job search was like this time round
Buttondown, which powers the newsletter has changed pricing tiers (stopping my send) and UI (hiding away a setting Ineed to toggle) let's see when the newsletter makes it out.
02.12.2024 20:58 — 👍 0 🔁 0 💬 1 📌 0
As I look forward to 2025, here's some recent things I've been up to:
Published JavaScript Design Patterns with Packt: www.amazon.co.uk/Javascript-D...
My take on design patterns in JS (you can, but should you?). As well as other types of patterns in architecture and building JS applications
02.12.2024 20:58 — 👍 1 🔁 0 💬 1 📌 0
Been trying to get my first newsletter issue in a while sent out, more on that at the end of the thread
A lot has happened since I was regularly sending this out. I'm intending for it to still a place to learn about JavaScript/TypeScript and Node.js in the real world.
02.12.2024 20:58 — 👍 2 🔁 0 💬 1 📌 0
Good to be here!
02.12.2024 16:46 — 👍 1 🔁 0 💬 0 📌 0
Another thing that I've seen BFFs do is aggregate/transform multiple "service" responses (something that filtering in the API tier wouldn't fix)
01.12.2024 20:39 — 👍 1 🔁 0 💬 0 📌 0
I think it's neat how the theme song from the Disney "Gummy Bears" animated tv show is probably in your head right now
• JavaScript, TypeScript, web development
• Blog: https://2ality.com
My main account is on Mastodon (you can follow via RSS): https://fosstodon.org/@rauschma
The two TypeScript Fools, @kamranicus.com and @erikonarheim.com, get together once a week to bring you news, updates, and interviews about TypeScript and the broader web development ecosystem.
🛠️ Engineer at Threads & Instagram
🔥 Passionate about all things Web
👨🍳 Hobby baker
🇬🇧 Based in London
Retired tech-nerd. Unicyclist, kiteboarder, juggler, hiker, plays tennis and pickleball, advocates for pedestrian/cyclist safety. Windows ETW expert. LGBTQ supporter. Vancouver, BC
he/him
https://randomascii.wordpress.com/
Teacher and Award Winning Freelance Creative Developer
Teacher at @fdnd.nl 🎓 and the Minor Web Development at Amsterdam University of Applied Sciences
I’m an Okay Dev 👩🏽💻 @okaydev.co
Tech speaker at meetups and conferences
Portfolio: https://cydstumpel.nl
https://pkg.pr.new ⚡
Instant preview releases for your branches and PRs, without polluting the npm registry. We call it "Continuous Releases" too.
A @stackblitz.com OSS Community Project
Created by @aslemammad.bsky.social and @amirsakhravi.bsky.social
@nodejs.org core team, @tc39.es delegate, organiser of @amsterdam.codebar.io, contributor to most OSS web projects you've heard of. emoji enthusiast, wino
🇨🇦 🏳️🌈 he/him 📍 Netherlands
The simplest way to create forms for free.
Create a form in seconds → tally.so
Vite team member and maintainer of React plugins
Full-Stack Web Developer • OSS Contributor • Electronic Music Addict • Ruby/Rails, JavaScript/Stimulus, Crystal • Hotwire Contributors Team • StimulusReflex Core.
Website: marcoroth.dev
Building: rubyevents.org | rubyconferences.org | gem.sh | hotwire.io
Founder of MentorCruise.com – I like to build difficult things.
@e18e.dev - chaijs.com - tinylibs - parse5 - unjs - @lit.dev core contrib - github.com/43081j / Focusing on ecosystem perf & tooling 🥳
Philadelphia father of two. Mostly talking about PHP/Laravel/React on here. He/him.
On the web @ https://cmorrell.com
Podcasting @ https://overengineered.fm/
On mastodon @ https://rtsn.dev/@chris
Formerly @ https://twitter.com/inxilpro
Award-losing web developer & visual artist at moonbaselabs.com. Wichita, KS. He/Him.
Building https://hypermod.io | Design Systems @atlassian
https://discord.gg/XGqmKNZ8Rk
I run a small software dev shop called Thunk.dev with some of my closest friends.
I live in Philly, grew up in Japan, and was raised by hiphop and the internet.
❤️ Laravel
Science, Technology, JavaScript, TypeScript, Node.js, React.
Core collaborator at Node.js
Maintainer of AWS SDK for JavaScript.
International speaker. he/him.