log

3/14/2025

#vfdir

Noting down libraries and tools that might be useful for vfdir. I working towards a desktop app, as the contriants of a browser don’t make much sense for how much I’d like to do with the filesystem. Iroh is a pragmatic peer-to-peer library in rust. NAT Traversal and Hole-punching where it works. Nice fallbacks to STUN/TURN servers where it doesn’t. This means you can also use it in a browser!

Writing bindings for are.na while getting started took way too much time. Doing that again for a several more data sources sounds painful. Perhaps there is a better way? Trustfall, a query engine for any combination of data sources.

For me the best of both worlds in a GUI library would be fast iteration on visuals + a strong, multi-treaded core for any processing. So far Tauri+Svelte still looks like the best combination available from Linux. I’m trying out Slint, and it has been good so far but I’ll need to push it a lot more to be sure. Other options I’d looked at earlier? Iced Rust plus Elm is too verbose for me. GPUI terrible startup times in basic tests, might be something wrong with my setup tbh.


9/2/2024

Reading more about service workers after round-tripping from SvelteKit -> Eleventy -> Astro -> SvelteKit (not because one was “better” than the other, still has tradeoffs). With MPAs (Multi-page Apps) the chossing a cache strategy usually involved deciding if it was worth saving each pages. Then to get a list of cached pages:

caches.keys().then((keys) => {
	keys.forEach(async (key) => {
		const cache = await caches.open(key)
		const keys = await cache.keys()
		pages.push(...keys.filter(
			(key) => key.url.includes('html') 
			 && !key.url.includes('offline.html')
		))
	})
})

With the Client-side Routing from SvelteKit, that tradeoff is gone. Individual components get saved separately, so I can cache the lab/[slug].js file that renders lab entries once and then only request and save content.json to display ‘entry 2024-09-02’ once without downloading identical copies of <header>, Next/Prev, or <head> again.


7/1/2024

Refactored the code for nft-folder, as I’ve been getting a hang of Rust’s borrowing and tokio. This let me loop a cursor through API requests so I could start the download process before getting a complete list of items in the wallet.


10/9/2022

#3d

graphics card glitching out whenever my computer sleeps… 😳 I think I like it


8/24/2022

#software

personal software has good vibes