HN user

arbayi

355 karma

arslanbaturyilmaz@gmail.com

Posts88
Comments44
View on HN
www.thesean.ai 1d ago

Reducing LLM Costs 50% Using Best-Execution for Intelligence

arbayi
2pts0
www.mckinsey.com 2d ago

Software-defined hardware in the age of AI

arbayi
2pts0
www.youtube.com 19d ago

You don't need Electron to build native apps in TypeScript [video]

arbayi
5pts0
geastack.com 20d ago

The Age of Personalized Hardware Is Coming

arbayi
100pts88
github.com 20d ago

JavaScript library for rapid AI and XR prototyping

arbayi
2pts0
wearables.developer.meta.com 20d ago

Web Apps for Meta Ray-Ban Display Glasses

arbayi
2pts0
geastack.com 24d ago

The Canvas 2D API, without the browser

arbayi
1pts0
geastack.com 25d ago

Compiling TypeScript to Native C++

arbayi
2pts0
www.youtube.com 25d ago

Chernobyl's Forgotten Internet [video]

arbayi
2pts1
geastack.com 26d ago

An Interactive Map on a Microcontroller

arbayi
3pts0
www.youtube.com 26d ago

Smart AC dial in TypeScript and CSS running natively on ESP32 [video]

arbayi
4pts0
hackaday.com 27d ago

CSS on the ESP32

arbayi
3pts0
www.youtube.com 27d ago

OpenStreetMap running on an ESP32 with TypeScript and Canvas [video]

arbayi
10pts4
embedded.fm 29d ago

Embedded Skills Tree

arbayi
3pts0
www.computerchronicles.blog 29d ago

A History of Software Publishing Corporation

arbayi
3pts0
www.youtube.com 29d ago

The true reason C++ always wins [video]

arbayi
1pts1
geastack.com 29d ago

Using CSS media queries to target monochrome e-paper

arbayi
3pts0
github.com 1mo ago

QEMU with Espressif

arbayi
2pts0
github.com 1mo ago

PebbleOS

arbayi
2pts0
geastack.com 1mo ago

We Taught a $3 Chip to Run CSS

arbayi
5pts1
www.youtube.com 1mo ago

The ERoadBook – Rally-Inspired GPS Device for Riders and Adventurers [video]

arbayi
4pts0
www.youtube.com 1mo ago

A 3D cube written in JSX and CSS running natively at 60 FPS on a $3 MCU [video]

arbayi
2pts0
www.youtube.com 2mo ago

The Origins of "Hello, World" [video]

arbayi
1pts0
www.coyotiv.com 2mo ago

Gea: A Compile-Time Reactive UI Framework That's Just JavaScript

arbayi
1pts0
www.youtube.com 2mo ago

The Rebels Who Fought Enterprise Java – Spring: The Documentary [video]

arbayi
1pts0
github.com 2mo ago

Show HN: UART Terminal – Web-based serial terminal using WebSerial API

arbayi
2pts0
github.com 2mo ago

Gea-Embedded – JSX and CSS in ESP32

arbayi
1pts0
github.com 2mo ago

Gea – JavaScript is enough for reactivity

arbayi
3pts0
payable.link 2mo ago

Sell Any File

arbayi
3pts0
twitter.com 2mo ago

A Disappearing JSX Framework

arbayi
1pts0

i think we have the causation backwards here. llms aren't expensive because they have to be — they're expensive because we keep reaching for the expensive model instead of putting any effort into making the cheap one good enough.

a surprisingly large fraction of production workloads can be handled by smaller models with the right scaffolding. it's often easier to switch to a larger model than to engineer those pieces, so many teams never bother.

my intuition is that a lot of the current "ai cost crisis" is really an orchestration problem rather than a model pricing problem. before asking whether frontier pricing is sustainable, i'd first ask how much of that spend is simple tasks being sent to the smartest available model by default.

my bet for the next few years is that the model itself stops being where the value is. frontier models will become more like commodities, and the real difference will be the layer around them as routing each task to the cheapest model that can do it well, verifying the output, and only escalating when needed.

eventually, asking "which model do you use?" will sound a bit like asking "which cpu do you use?" the engine still matters, but the system built around it matters a lot more.

For a fun side project, we built a quick demo to interview our OpenClaw agent called Mahmut. We used LemonSlice, LiveKit, and ElevenLabs. We just shared the full interview, and here's the repo if anyone is interested in building the same thing: https://github.com/openserv-labs/openclaw-voice-avatar

Our avatar was a really hard one to handle, but I think it's still really good. All we did was connect the APIs. LemonSlice is really cool.

I just found about them on twitter and tested, its so crazy that it work so smooth and fast. It's probably powered by Claude Agent SDK in behind, I created a fully functional telegram bot under 3 minutes. It seems perfect for non-technical users.

Working on WordPecker, trying to create something like a personalized Duolingo but for vocabulary you actually encounter.

Started when I was struggling to read books in English. Pushed an open source version back then (https://github.com/baturyilmaz/wordpecker-app), later added more features, and now working on a mobile app.

Recently started testing alpha version, fixing bugs and introducing new features right now (https://alpha.wordpeckerapp.com/).

My end goal is to build: an AI language learning companion that knows what you read, listen, and watch, knows you as a friend (real life, who you are), then helps you improve using that context. If you're B1 at language, it creates a personalized path to get you to B2, then C1, and so forth using your context.

https://wordpeckerapp.com/

I want to build a complete radio station managed by an AI agent. It’s still at the idea stage right now: https://github.com/baturyilmaz/agent-radio

The idea is simple, but I think it could be really cool: an autonomous agent that actually manages an entire radio station. It creates its own shows, play copyright-free tracks, shares the daily program schedule on social media and the website, and later I want to add guest appearances too and live 7/24.

[dead] 11 months ago

From the original linkedin post:

"AI has a product problem. Not a model problem.

Models are making capability leaps every few weeks but AI-native product innovation hasn’t kept up.

Most products are forcing AI into existing UX patterns rather than rethinking an AI-native experience from first principles. Parallels to early mobile (2007-2010) - for years, mobile meant shrinking your website into your phone until Uber reimagined transportation.

To be clear, there are lots of amazing AI-first products. See NotebookLM, Lovable, Stitch, Flow. But the pace of innovation on models has been faster, for a lot of reasons which I will explore in future posts."

[dead] 1 year ago

Hello!

I've been playing around with agents, MCP servers and embedded systems for a while. I was trying to figure out the best way to connect my real-time devices to agents and use them in multi-agent workflows.

At OpenServ, we have an API to interact with agents, so at first I thought I'd just run a specialized web server to talk to the platform. But that had its own problems—mainly memory issues and needing to customize it for each device.

Then we thought, why not just run a regular web server and use it as an agent? The idea is simple, and the implementation is even simpler thanks to MCP. I define my server’s endpoints as tools in the MCP server, and agents (MCP clients) can call them directly.

Even though the initial idea was to work with embedded systems, this can work for any backend.

Just wanted to share and would love to hear your thoughts—especially around connecting agents to real-time devices to collect sensor data or control them in mutlti-agent workflows.

Repository: https://github.com/openserv-labs/mcp-proxy

I've been experimenting with OpenServ, a platform for managing multiple AI agents working together. It lets you create teams from an agent pool to handle specific tasks, and you can build agents via their UI or TypeScript SDK. Each agent is basically an Express app with capabilities as routes, so you can integrate any agentic framework you like. I've built some and shared them on my GitHub.

I’m starting to feel like most agentic frameworks are more theoretical than practical—except for easy-to-implement text embedding capabilities like those in LangChain and AutoGen. That said, I think platforms like OpenServ, which provides SDK while allowing devs to leverage other agents from the same ecosystem, will be the ones to win. I’m also planning to explore other platforms like LangFlow, CrewAI, n8n, etc., to compare different approaches.

OpenServ's demo: https://www.youtube.com/watch?v=l9Vpko9GXRg

Here's a list of all the apps (built by them!) mentioned in comments:

- LangTurbo (by @sebnun) - langturbo.com : Learn through podcasts with transcriptions and contextual word definitions

- Nuenki (by @Alex-Programs) - nuenki.app : Browser extension that translates appropriate-difficulty sentences across websites, with hover-for-definitions feature

- Manabi Reader (by @wahnfrieden) - reader.manabi.io : Japanese-focused integrated reader with SRS and Anki integration

- (by @muth02446) - Spanish: appicenter.net/Apps/VocabES/ - English: appicenter.net/Apps/VocabEN/ : Uses spaced repetition and audio for basic vocabulary learning

- Vocabuo (by @kebsup) - vocabuo.com : Combines SRS flashcards with ebook/YouTube/website reader, using AI for content generation

- LingoStories (by @laurentlb) - github.com/laurentlb/lingostories/ : Open-source language learning tool

- Turkish Learning Tool (by @learning-tr) : Browser extension for colloquial translations with audio and pronunciation features

- Language Reactor (by @davidzweig) : Planning to open-source soon, looking for contributors

Note: above list is summarized by Claude 3.5 Sonnet.