Viewing profile — guntis_dev
guntis_dev
HN member- Joined
- Mon, Dec 22, 2025, 3:00 PM UTC
- HN karma
- 13
- Public activity
- 14 items
- HN profile
- View on Hacker News ↗
About guntis_dev
Recent public activity
-
comment
Comment #46976242
Thanks! Let me know if you run into any issues or need additional codecs/formats.
-
story
Show HN: Lorem.video – placeholder videos generated from URLs
At work I have to deal with videos in different resolutions. We're also switching from H.264 to AV1, so I needed a quick way to test our video pipeline with different formats and s…
-
comment
Comment #46616147
I know this is a thing of taste, but have you considered a syntax closer to SolidJS's approach? Something that feels a bit more vanilla JavaScript, where signals are just tuples wi…
-
comment
Comment #46558252
For open implementations, look at ffmpeg.wasm - it's FFmpeg compiled to WebAssembly and supports a wide range of codecs. It's open source and actively maintained. Some truly open/r…
-
comment
Comment #46556477
Without revealing too much, the business logic must remain client side for this use case, and it's a common problem across our industry. I've explained the security reality to the …
-
comment
Comment #46555158
I've worked with WebAssembly on several real world use cases Codec support: Built video and audio decoding in Wasm to bring codec support to browsers that didn't have it natively. …
-
comment
Comment #46513921
I've built orienteering training app for Garmin smart watches. Helps me to train in forest without physical orienteering prisms. https://apps.garmin.com/apps/92dfaa42-ebf3-45dc-88f…
-
comment
Comment #46469885
A colleague of mine is developing an internal tool nobody needs in a large IT corporation. Since it's not client facing, there's no rush from project managers. It's dragged on so l…
-
comment
Comment #46413834
Google search quality has declined significantly over the years. For many of my searches now, I can ask an LLM and get better results faster - especially for technical questions wh…
-
comment
Comment #46410709
I think there's a reason these wrappers keep appearing - different tools for different use cases. Not everyone needs to become an ffmpeg expert, especially if they only need it occ…
-
comment
Comment #46405295
Last time I checked, Dart+Flutter on web renders everything to canvas, which means you lose browser fundamentals: native text selection, accessibility features, screen readers, rig…
-
comment
Comment #46405061
Not exactly a bug, but I was given a company written video player that receives a video stream, decodes it via the browser WebCodecs API, and renders via WebGL. Users complained th…
-
comment
Comment #46379042
Quick question - would something like this cover the basic cancelable promise use case, or am I missing something important about what LazyPromise does differently? function cancel…
-
comment
Comment #46354909
Like the simplicity approach - single-file tools are underrated. One thing to note: if you ever want "install as app" functionality, you'd need to host them (even on GitHub Pages).…