mlusetti.bsky.social
@mlusetti.bsky.social
Reposted
Svelte 5.43.8 patches an issue where each blocks lose reactivity when items are removed during pending promises. https://github.com/sveltejs/svelte/pull/17150
November 16, 2025 at 5:40 PM
Reposted
Safety and Numbers — Understanding unsafe in Go
#golang

itnext.io/safety-and-...
November 17, 2025 at 8:03 AM
Reposted
Svelte 5.43.10 is out! This patch fixes an issue where other batches could run with queued root effects from the main batch. See PR #17145: https://github.com/sveltejs/svelte/pull/17145
November 18, 2025 at 12:25 AM
Reposted
A terminal animation library for Go. Pure Go animations ready to use in your TUI applications
#golang

github.com/Nomadcxx/sy...
November 18, 2025 at 7:07 AM
Reposted
A Go tool to detect structs that would use less memory if their fields were sorted and optionally sort such fields.
#golang

github.com/dkorunic/be...
November 18, 2025 at 12:50 PM
Reposted
Svelte 5.43.12 is out! This patch fixes maintaining the correct linked list of effects when updating each blocks. See PR #17191: https://github.com/sveltejs/svelte/pull/17191
November 18, 2025 at 10:40 PM
Reposted
A Go template engine based on the document object model. It is inspired by vue.js syntax and tries to support a subset of their template engine syntax.
#golang

github.com/titpetric/v...
November 12, 2025 at 5:28 AM
Reposted
Building a Producer–Consumer Pipeline in Go Using Goroutines and Channels
#golang

dev.to/lovestaco/b...
Building a Producer–Consumer Pipeline in Go Using Goroutines and Channels
Hello, I'm Maneshwar. I'm working on FreeDevTools online currently building *one place for all dev...
dev.to
November 12, 2025 at 5:37 AM
Reposted
November 9, 2025 at 10:47 AM
Reposted
Humans: capable of building entire skyscrapers but still afraid to put the scary number on one of the floors
November 10, 2025 at 2:35 AM
Reposted
An open-source email deliverability testing platform that analyzes test emails and provides detailed deliverability reports with scoring
#golang

github.com/happyDomain...
November 10, 2025 at 7:56 AM
Reposted
🎧 A couple of weeks ago I was a guest on the Svelte Radio podcast to talk about Svelte AI benchmarking and the brand new Svelte MCP server. Check it out in case you missed it! #svelte #javascript
www.youtube.com/watch?v=6PTJ...
Benchmarking AI with Stanislav Khromov
In this episode, Stanislav Khromov joins the Svelte Radio team to discuss his work on Svelte Bench, a benchmarking tool that scientifically measures how well different LLMs understand and write…
www.youtube.com
November 10, 2025 at 9:45 AM
Reposted
A Go-based log-native, real-time database that replicates like a message bus for AI and Edge Computing
#golang

github.com/ankur-anand...
November 10, 2025 at 11:54 AM
Reposted
I'm not going to lie. I love monorepos, but I also hate them when things go wrong or things are slow. I'm so conflicted right now.
November 10, 2025 at 11:08 PM
Reposted
If you use shadcn-svelte.com in your @svelte.dev app, here's a command to update all your components.

npx shadcn-svelte@latest add $(ls -d ./src/lib/components/ui/*/ | xargs -n1 basename)
November 6, 2025 at 2:39 PM
Reposted
as part of some work i'm doing with a friend's co, i've published mcptool - basically a codegen CLI to turn typescript functions into MCP servers

super early days but let me know what you think! if its of use, etc 😀
GitHub - ripulio/mcptool: An MCP scaffold compiler
An MCP scaffold compiler. Contribute to ripulio/mcptool development by creating an account on GitHub.
github.com
November 6, 2025 at 3:28 PM
Reposted
📦 sveltejs / svelte
⭐ 84,683 (+52)
🗒 JavaScript

web development for the rest of us
GitHub - sveltejs/svelte: web development for the rest of us
web development for the rest of us. Contribute to sveltejs/svelte development by creating an account on GitHub.
github.com
November 6, 2025 at 4:02 PM
Reposted
Check out svelte.dev/packages for a curated list of component libraries
Packages • Svelte
Packages for your Svelte and SvelteKit apps
svelte.dev
November 7, 2025 at 12:42 AM
Reposted
For those who don't know yet - since a few weeks we've a showcase of great libraries so to speak.

It's not exhaustive though - there are sooo many more great Svelte libraries out there. But it's a good starting point and should help you fight the "Svelte ecosystem small???" doubts.
November 7, 2025 at 10:50 AM
Reposted
Yes, the only real Go targets are

linux/amd64
linux/arm64
darwin/arm64
windows/amd64

(“Things you should be very concerned about the crypto maintainer saying,” if you deploy to any others 😬)
November 7, 2025 at 11:21 PM
Reposted
Just killed the most annoying bug. I was doing

SELECT v FROM t WHERE k = ?

and then

UPDATE t SET v = ? WHERE k = ? AND v = ?

and the UPDATE was not applying?

Turns out I was storing nil → NULL, and then reading []byte(stmt.GetText("v")) → []byte(""). NULL and the empty BLOB don't compare equal.
internal/ctlog: fix SQLite LockBackend for nil values · FiloSottile/sunlight@96fb74b
When passing nil to Create or Replace, it was stored as NULL, but then was fetched as []byte("") by Fetch, which then didn't compare equal to NULL in Replace, making it always fail. ...
github.com
November 8, 2025 at 12:21 AM
Reposted
I confused myself further by debugging with the CLI, and then turning NULLs into empty TEXTs vs empty BLOBs.

'' and X'' and NULL show the same in the SQLite CLI (by default) but they don't compare equal!

I love SQLite, but weakly typed columns (by default) with strongly typed equality is criminal.
STRICT Tables
SQLite strives to be flexible regarding the datatype of the content that it stores. For example, if a table column has a type of "INTEGER", then SQLite tries to convert anything inserted into that…
www.sqlite.org
November 8, 2025 at 12:21 AM
Reposted
The article details deploying immutable software on FreeBSD using ZFS snapshots to create safe, restorable Jails aka containers but on FreeBSD.

conradresearch.com/articles/imm...
Immutable Software Deploys Using ZFS Jails on FreeBSD
An article demonstrating immutable software deployments using ZFS snapshots and FreeBSD jails, with Caddy as a health‑checked reverse proxy for zero‑downtime upgrades.
conradresearch.com
November 8, 2025 at 3:18 AM
Reposted
From a great idea from @bhidesvelte.bsky.social now the svelte extension for @raycast.com features a sv cli composer to quickly pick all the options to create/add an add-on to your project!
November 5, 2025 at 3:48 PM