frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Selfie: Self-like environment with TiddlyWiki-style saving

https://github.com/pavel-krivanek/Selfie
1•xkriva11•1m ago•0 comments

The State of Consumer AI. Part 1 – Usage

https://apoorv03.com/p/the-state-of-consumer-ai-part-1-usage
1•begemotz•1m ago•1 comments

There Will Never Be AGI

https://lovelaceanalytics.com/posts/never-be-generalised-ai/
1•gabemusker•1m ago•0 comments

Hacktivists claim to have hacked Homeland Security to release ICE contract data

https://techcrunch.com/2026/03/02/hacktivists-claim-to-have-hacked-homeland-security-to-release-i...
1•hentrep•4m ago•0 comments

Show HN: Arbor – a CLI that shows what breaks before you refactor

https://github.com/Anandb71/arbor
1•anandbiju71•4m ago•0 comments

What does it take to map the world [video]

https://www.youtube.com/watch?v=M8G44b0mljw
1•marklit•6m ago•0 comments

Large forest fire emissions are hidden underground

https://www.eurekalert.org/news-releases/1118263
1•consumer451•7m ago•0 comments

Show HN: Turn GitHub commits into a publish-ready changelog

https://heyemit.com
1•alexkuchar•7m ago•0 comments

Show HN: BidWix – one-shot price agreement using secret max/min

https://bidwix.com/
1•audiosampling•10m ago•0 comments

Every Single Board Computer I Tested in 2025

https://bret.dk/every-single-board-computer-i-tested-in-2025/
2•speckx•11m ago•0 comments

BullshitBench v2: LLMs answering nonsense questions

https://github.com/petergpt/bullshit-benchmark
1•nkko•11m ago•0 comments

Build to Last – Chris Lattner Talks with Jeremy Howard [video]

https://www.youtube.com/watch?v=WJS2YDZO-vc
1•tosh•13m ago•0 comments

Show HN: 3D linear and nonlinear WebGL Schrödinger numerical solver

https://marl0ny.github.io/split-operator-simulations/js/3d-low-res.html
1•marl0ny•14m ago•0 comments

BaZi – Deterministic life-charting from the Chinese calendar

1•chenzige•14m ago•0 comments

Show HN: HiTank – A skill manager for Claude Code, written in pure Ruby

https://github.com/alanalvestech/hitank
1•alanalvestech•15m ago•1 comments

Ask HN: How do you give AI agents real codebase context without burning tokens?

2•donhardman•15m ago•0 comments

World is entering an era of 'water bankruptcy'

https://www.newscientist.com/article/2511979-world-is-entering-an-era-of-water-bankruptcy/
1•speckx•15m ago•0 comments

Show HN: PeekAPI – API analytics middleware, 7 languages, zero dependencies

https://peekapi.dev
1•konstantinkai•16m ago•1 comments

The coming war on general-purpose computation (2011)

https://lwn.net/Articles/473794/
2•rzk•17m ago•0 comments

Show HN: NiroDB – A key-value storage engine built from scratch in Go

https://github.com/nirodbx/niroddb
1•nirox•17m ago•0 comments

Show HN: MCP server for KubeCon EU 2026 – AI-powered conference planning

https://github.com/njoerd114/kubecon-eu-mcp
1•njoerd•18m ago•0 comments

The cruelty of teaching computing science (1988)

https://www.cs.utexas.edu/~EWD/transcriptions/EWD10xx/EWD1036.html
1•Cyphase•18m ago•0 comments

Self-evolving software is the future

https://errgent.com/blog/self-evolving-software-is-the-future/
1•nwby•19m ago•0 comments

Sherlup, a tool to let LLMs check your dependencies before you upgrade

https://www.castignoli.it/tecnologia/sherlup-a-tool-to-let-llms-check-your-dependencies-before-yo...
1•marcocastignoli•21m ago•0 comments

Log into Windows with a Bitwarden Passkey

https://bitwarden.com/blog/log-into-windows-with-a-bitwarden-passkey/
1•vdelitz•22m ago•0 comments

Migrating from Heroku to Magic Containers

https://bunny.net/blog/migrating-from-heroku-to-magic-containers/
1•pimterry•23m ago•0 comments

Show HN: PulseTech.news – an automated, privacy-first tech aggregator

https://pulsetech.news/
1•neojakey•23m ago•0 comments

nbdev – Create delightful software with Jupyter Notebooks

https://nbdev.fast.ai/
1•tosh•24m ago•0 comments

Duolingo Is Talking to ByteDance: Cracking the Pangle SDK's Encryption

https://www.buchodi.com/your-duolingo-is-talking-to-bytedance-cracking-the-pangle-sdks-encryption/
1•alberto-m•26m ago•0 comments

NiroDB – A key-value storage engine built from scratch in Go

1•nirox•28m ago•0 comments
Open in hackernews

Show HN: Chartle – Describe a chart in plain English and it creates it

https://www.chartle.app/
1•moorst•1h ago
Chartle generates charts from natural language. You type something like "programming language popularity over the last 10 years" and it finds the data, picks the chart type, and renders it. You can also screenshot an existing chart and it recreates it as something clean and editable.

Built with Next.js/TypeScript, Gemini with Google Search grounding for data retrieval, and ECharts for rendering.

Free to try, no signup needed for your first chart. Free tier gives you 5 charts/month.

Comments

moorst•1h ago
Hey HN, maker here. I'm a solo dev who builds side projects and this one started because I thought the gap between "I need a chart" and actually having one was still way too wide for most people. Journalists, teachers, marketers - they shouldn't need to find a dataset, clean it, and learn a charting tool just to get a simple visual.

The interesting technical bit is the two-step flow. When you type a query, it first uses Gemini with Google Search grounding to find and validate the data, then a second call generates the ECharts config. I went with this approach instead of a single prompt because it made the data sourcing much more reliable. Caching common queries also keeps costs down. The screenshot feature uses Gemini's vision capabilities to extract the data from chart images and recreate them. Useful for pulling editable versions out of PDFs and reports. Stack: Next.js, TypeScript, Supabase, Vercel, Gemini API, ECharts. Some queries worth trying:

"S&P 500 performance over the last 10 years" "global CO2 emissions by country" "UK house prices since 2000" "programming language popularity"

Would love feedback on where the NL parsing breaks for you.