HN user

stfurkan

76 karma
Posts19
Comments46
View on HN
aidekin.com 15d ago

Show HN: I wrote a 1-bit WebGPU runtime to run a 1.7B LLM in the browser

stfurkan
5pts2
duckville.town 2mo ago

Show HN: Duckville, a persistent-world life SIM where you're a duck

stfurkan
5pts3
github.com 3mo ago

Show HN: Local LLM on a Pi 4 controlling hardware via tool calling

stfurkan
3pts7
tripreplay.app 6mo ago

Show HN: Trip Replay – Generate animated travel maps in the browser for free

stfurkan
1pts1
krypto.markets 6mo ago

Show HN: Krypto Markets – Real-time financial dashboard built in <2 days with AI

stfurkan
2pts1
fartman.fun 1y ago

Show HN: Fartman: AI-Generated 2D Open Source Game

stfurkan
2pts4
heks.social 4y ago

Show HN: Heks.Social – Share your thoughts in Hex code

stfurkan
2pts2
gez.la 5y ago

Show HN: Virtual Tours – Virtual Field Trips

stfurkan
30pts5
gez.la 5y ago

Show HN: Gez.la v2 – open-source Virtual Tour Database

stfurkan
3pts1
gez.la 6y ago

Show HN: Gez.la – Open-Source Virtual Tour Database

stfurkan
6pts0
github.com 6y ago

Show HN: Open-Source Virtual Tour Database

stfurkan
5pts1
github.com 6y ago

Show HN: Open-Source Coronavirus Dashboard

stfurkan
2pts0
github.com 6y ago

Show HN: Gez.la – Explore all kind of places around the world with virtual tours

stfurkan
4pts0
www.gez.la 6y ago

Show HN: Explore all kind of places around the world with virtual tours

stfurkan
2pts1
gez.la 6y ago

Explore museums, galleries, aquariums, zoos around the world with virtual tours

stfurkan
3pts0
www.gez.la 6y ago

Take Virtual Tours While You Are at Home (Open Source)

stfurkan
1pts1
pancovid19.com 6y ago

Open Source Coronavirus (Covid-19) Dashboard

stfurkan
1pts1
pancovid19.com 6y ago

Coronavirus (Covid-19) Dashboard with Forecast Feature

stfurkan
2pts1
pancovid19.com 6y ago

Just Another Coronavirus (Covid-19) Dashboard

stfurkan
1pts0

Thank you :) I wanted to create it from zero myself so I can control it better. e.g. I started with ONNX support but now it support gguf models too. It might be a good idea to add some popular connectors in the future. Good luck with your project :)

Hi, the engine itself already has tool calling capabilities but if you're asking for the aidekin I didn't add tool calling there on purpose.

It needs webgpu support but I haven't had a chance to test with different devices.

Hi :) There are some smaller embedding and re-ranking models (I am currently using some of them on my aidekin project) but having it like bonsai models will be great to have.

Thank you for trying it :) I just added the 27B support 1 hour ago. Let me check and try to fix it. All other models should work as expected but if you have issues with them too, I can take a look.

https://duckville.town

You play a duck in a small shared town. You pick a job, pay rent, post on a Twitter-style feed, vote in local elections. The simulation keeps running when you close the tab. No PvP, no loot boxes, no combat. Playtime is a few minutes a day by design.

I specifically chose PrismML's 1-bit models because their tiny size allows them to actually fit on smaller hardware like the Pi. The 1.7B model is great for basic tasks and tool triggers, while the 4B model seems reasonable for some daily tasks, though it's much slower on this setup. If you try these models on your M1 Max, I assume they'll run incredibly fast. I previously tried them on a VPS and the inference speed was really good for my experiment.

Hi HN,

I spent the weekend experimenting to see if I could get a proper LLM running locally on an old Raspberry Pi 4 (4GB), and more importantly, if I could get it to interact with the physical world.

I ended up using PrismML's new Bonsai models. Because they are genuinely 1-bit (trained from scratch at 1-bit, not quantized down to 4-bit), they actually fit. The 4B parameter model is ~570 MB, and the 1.7B is ~240 MB.

I loaded them through llama.cpp's router mode. I get around 2 tok/s on the 4B model for better reasoning, and 4-5 tok/s on the 1.7B when I just need speed. I tried Gemma 4 E2B first, but it was just too slow on 4GB of RAM.

The fun part: I wired up a cheap TM1637 4-digit display to the GPIO pins. Since Bonsai supports native tool calling, I wrote a small Python proxy that injects an update_display function into requests. When the model decides to use the tool, the proxy catches the streaming call, extracts the text, and drives the display. You can tell it to "show 1453" and it physically lights up.

It’s definitely just a weekend project (7-segment displays can't render W or M, self-signed certs, etc.). The code and setup scripts are all in the repo.

I’m thinking about adding servos or sensors next. Would love to hear your thoughts or see if anyone else is building edge AI hardware projects!

I've been experimenting with AI Agents to see how far I can push them across different types of complexity (from dashboards to client-side video encoding).

Trip Replay (https://tripreplay.app) - A client-side travel map animator where I successfully got the AI to implement complex D3 projections and WebCodecs logic.

Krypto Markets (https://krypto.markets) – A crypto dashboard built purely in "Agent Mode" to test how fast I could ship a data-heavy UI.

Gez.la (https://gez.la) – My old COVID-era open source virtual tour database project that I used agents to fully refactor and modernize from a legacy stack.

Hello,

I just launched Trip Replay, my last project of 2025.

There are already tools that create animated travel maps, but they are almost all paid apps. Some charge per export, others require a subscription. I wanted something I could use myself without friction. So I built a free, web-based alternative.

How it works: It runs entirely in the browser using Next.js and the Canvas API.

* Rendering: It draws the map (using D3-geo) and the path frame-by-frame on a hidden canvas. * Encoding: Instead of a server-side render, it uses WebCodecs to encode the video directly on the client. * Privacy: Since it's client-side, no data leaves your device (except location search via API).

The output is a 1080p vertical video (9:16) ready for social media.

I launched it on Product Hunt today as well if you'd like to support it there: https://www.producthunt.com/products/trip-replay

The app is live here: https://tripreplay.app

Would love to hear your feedback!

I built a real-time cryptocurrency dashboard using AI agent mode (mostly Claude Opus 4.5) in less than 2 days.

Live demo: https://krypto.markets

Features: - Real-time prices via Binance WebSocket - TradingView-style candlestick charts (1m to 1D timeframes) - Drag-and-drop layout with save/sync - Price alerts with browser notifications - Command palette with CLI commands (⌘K to add coins, set alerts, etc.) - Fully responsive

Tech: Next.js 16 (App Router), React 19, TypeScript, Tailwind CSS 4, Zustand, Lightweight Charts, Drizzle + Turso, Better Auth

I wanted to test how far I could push AI-driven development. Claude handled WebSocket integration, responsive design, chart implementation, auth, and debugging. My role was mostly directing, reviewing, and making design decisions.

The result surprised me. What I expected to take weeks was functional in under 48 hours. Not everything was perfect on the first try, but the iteration speed was remarkable.

Curious to hear HN's thoughts on AI-driven development and the project itself.