GitHub Stars

GitHub stars posts

1859 posts latest post 2026-05-24
Publishing rhythm
May 2026 | 23 posts
Check out nextlevelbuilder [1] and their project ui-ux-pro-max-skill [2]. An AI SKILL that provide design intelligence for building professional UI/UX multiple platforms References: [1]: https://github.com/nextlevelbuilder [2]: https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
If you’re into interesting projects, don’t miss out on agent-browser [1], created by vercel-labs [2]. Browser automation CLI for AI agents References: [1]: https://github.com/vercel-labs/agent-browser [2]: https://github.com/vercel-labs
Like a dufus this morning I did a hard reset on a git [1] repo for getting I was working on a manifest for. You see I generally use argo, but occasionally I have no idea what I am doing or want yet and I start raw doggin it, fully aware that I’m going to just nuke this namespace before getting it into a proper argocd. I was overjoyed when I found out that you can diff your manifests with live production using the kubectl diff command. It uses standard diff so you can bring all your fancy diff viewers you like. # regular manifest kubectl diff -f k8s/shots -n shot # kustomize kubectl diff -k k8s -n go-waylonwalker-com # using a fancy diff viewer kubectl diff -f k8s/shots -n shot | delta # using an even fancier diff viewer # pinkies out for this one kubectl diff -f k8s/shots -n shot | delta --diff-so-fancy Now I can get those changes back that I thought I lost, and apply updates with confidence knowing what is about to change. References: [1]: /glossary/git/
The shovelware cometh In September of last year, I covered a post by Mike Judge arguing that AI coding claims don’t add up, in which he asked this question: If so many developers are so extraordinarily productive usi… jerodsanto.net [1] Not surprising theirs a lag, between the models getting better, the tools getting better, and the masses getting better at using them, it takes time. This is still quite a hockey stick. I’m wondering how many are not posting on Show HN embarrassed they built something they know nothing about and afraid to get questions. I have no idea how anyone would get this ratio, but if I were a betting man, Id bet the ratio of build/show went way up. Plus we are probably getting a ton of people who have never heard of HN start building cool bespoke things for themselves and thats it, they use it, they love it, they might tell/show a friend. Note This post is a thought [2]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://jerodsanto.net/2026/02/the-shovelware-cometh/ [2]: /thoughts/
The shovelware cometh In September of last year, I covered a post by Mike Judge arguing that AI coding claims don’t add up, in which he asked this question: If so many developers are so extraordinarily productive usi… jerodsanto.net [1] Not surprising theirs a lag, between the models getting better, the tools getting better, and the masses getting better at using them, it takes time. This is still quite a hockey stick. I’m wondering how many are not posting on Show HN embarrassed they built something they know nothing about and afraid to get questions. I have no idea how anyone would get this ratio, but if I were a betting man, Id bet the ratio of build/show went way up. Plus we are probably getting a ton of people who have never heard of HN start building cool bespoke things for themselves and thats it, they use it, they love it, they might tell/show a friend. Note This post is a thought [2]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://jerodsanto.net/2026/02/the-shovelware-cometh/ [2]: /thoughts/
External Link X (formerly Twitter) · x.com [1] I tried this flow [of running an opencode server on tailscale] on day one of getting opencode, I wanted to prompt from my phone while were were running lights at the theater. It kinda worked, but the ui was really bad on phone, hard to use and the experience overall–it felt buggy. Happy to see they are making improvements and it might now be ready for some real use. https://dropper.waylonwalker.com/file/9065fcb2-5e40-479c-967e-498bc9bb6a4f.mp4 Note This post is a thought [2]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://x.com/thdxr/status/2017691649384620057 [2]: /thoughts/
Short Month, Big Ideas (February 2026 Wallpapers Edition) — Smashing Magazine Let’s make the most of the shortest month of the year with a new collection of desktop wallpapers that are sure to bring a smile to your face — and maybe spark your creativity, too. All of them... Smashing Magazine · smashingmagazine.com [1] test Note This post is a thought [2]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://www.smashingmagazine.com/2026/01/desktop-wallpaper-calendars-february-2026/ [2]: /thoughts/
Peter Steinberger Peter Steinberger: AI-powered tools from Swift roots to web frontiers. Every commit lands on GitHub for you to fork & remix. steipete.me [1] Pete has a ton of good posts here and actually ships a lot of product. reccommended read. Note This post is a thought [2]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://steipete.me/ [2]: /thoughts/
I The flu hit me like a freight train right at the start of the year, along with the most stress I've ever felt at work dropping on me at the same time, I&#x pype.dev [1] I’m jelous… as I was getting better, I got kicked down again. cant hold a conversation without coughing. Its hitting people from all over like crazy this year. so glad its just the flu and not something seriously harmful for hospitalization. Note This post is a thought [2]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://pype.dev/im-back-from-the-dead/ [2]: /thoughts/
The work on fastrender [1] by wilsonzlin [2]. Experimental new browser engine References: [1]: https://github.com/wilsonzlin/fastrender [2]: https://github.com/wilsonzlin
Check out flosch [1] and their project pongo2 [2]. Django-syntax like template-engine for Go References: [1]: https://github.com/flosch [2]: https://github.com/flosch/pongo2
DockFrame - Modular USB-C Hub with Framework-Compatible Expansion Cards DockFrame is a modular USB-C hub that accepts Framework-compatible Expansion Cards and custom Tool Cards. Dock once, reconfigure whenever. DockFrame · dockframe.com [1] Dockframe looks like a really cool concept using the framework tiles ( the connectors idk what they are called ) to build a dock. Note This post is a thought [2]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://dockframe.com/ [2]: /thoughts/
I really wish I would have got this right a few years ago. Theres a couple of flags I had to use to get mdformat to do hard wraps at 80 characters and not wreck tables. This mix of flags and plugins is workign really well for me so far. mdfmt() { uvx \ --with "mdformat-ruff" \ --with "mdformat-beautysh" \ --with "mdformat-web" \ --with "mdformat-config" \ --with "mdformat-gfm" \ --with "mdformat-front-matters" \ --with "mdformat-wikilink" \ --with "mdformat-simple-breaks" \ mdformat \ --wrap 80 \ --end-of-line lf \ --codeformatters python \ --codeformatters bash \ "$@" } And as pre-commmit. repos - repo: https://github.com/hukkin/mdformat rev: 1.0.0 # pin to the version you want hooks: - id: mdformat args: - --wrap - "80" - --end-of-line - lf - --codeformatters - python - --codeformatters - bash additional_dependencies: - mdformat-ruff - mdformat-beautysh - mdformat-web - mdformat-config - mdformat-gfm - mdformat-front-matters - mdformat-wikilink - mdformat-simple-breaks
make no mistakes Listen and make your own on Suno. suno.com [1] Ai prompt music, the right level of cringe to be great. Note This post is a thought [2]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://suno.com/song/f5821216-ea6e-49c3-98de-67880e517a89 [2]: /thoughts/
I Hope This Email Finds You Before I Do I Hope This Email Finds You Before I Do Last Week in AWS · lastweekinaws.com [1] This post was filled with real life, snark, entertainment, feelings. I get a lot of these emails that claim they can change my SEO game if I give them 500, for a site making 0, Link partnerships from small startups. A lot of these are so automated that if I do respond I dont even get a response. I’ve responded to many simply asking what is this about, I get 10 others just like you a week. Can you tell me what exactly you want and what each of us benefit from it, how did you find me. All normal questions, they almost always result in crickets, no response, maybe its time to implement a Billie for more snark. Note This post is a thought [2]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://www.lastweekinaws.com/blog/i-hope-this-email-finds-you-before-i-do/ [2]: /thoughts/
Check out dbreunig [1] and their project whenwords [2]. A relative time formatting library, with no code. References: [1]: https://github.com/dbreunig [2]: https://github.com/dbreunig/whenwords
- What a goat, speedrunning silksong at a competitive pace, live, with live audience, while co hosting, and raising $2M for Prevent Cancer Foundation. CEEN moves in ways that do not compute with my brain, everything looks so simple, things that take me so long are done in a few swipes. Watching this it really make silkspear look OP, this thing does so much damage if you never take damage and can use it continuously without needing silk for healing. Note This post is a thought [1]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: /thoughts/
Opencode is changing on the daily right now, today I noticed the word low pop up in Orange text in my opencode window. Looking into this they are exposing variants [1] to the user. This allows you to change between fast or slow and thinking, the later taking more time to prepare before doing an action. Swapping Variants in opencode [2] It looks like this toggle may have been here for awhile and I’m just now discovering it. Potentially because its a new feature of the free Zen provider. Variants Many models support multiple variants with different configurations. OpenCode ships with built-in default variants for popular providers. Built-in variants OpenCode ships with default variants for many providers: Anthropic: high - High thinking budget (default) max - Maximum thinking budget OpenAI: Varies by model but roughly: none - No reasoning minimal - Minimal reasoning effort low - Low reasoning effort medium - Medium reasoning effort high - High reasoning effort xhigh - Extra high reasoning effort Google: low - Lower effort/token budget high - Higher effort/token budget References: [1]: https://opencode.ai/docs/models/#variants [2]: https://dropper.waylonwalker.com/file/0b...