frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

We Built a Voice AI That Just Replaced Our Call Center

https://www.synthicai.com
1•duggalji•20s ago•0 comments

Commonality of Tech Titans?

https://dictionary.cambridge.org/us/dictionary/english/avarice
1•DaveZale•57s ago•0 comments

Shared starter template config and CLAUDE.md memory bank system for Claude Code

https://github.com/centminmod/my-claude-code-setup
1•indigodaddy•1m ago•0 comments

Under the Missiles: The Women Racing to Save Ukraine's Photographic Treasures

https://petapixel.com/2025/08/11/under-the-missiles-the-women-racing-to-save-ukraines-photographic-treasures/
1•warrenm•1m ago•0 comments

Inflation is down, prices remain high: when will the cost-of-living crisis end?

https://www.theguardian.com/news/2025/aug/05/inflation-is-down-but-prices-remain-high-when-will-the-cost-of-living-crisis-end
1•PaulHoule•2m ago•0 comments

A string formatting library in 65 lines of C++

https://riki.house/fmt
1•todsacerdoti•2m ago•0 comments

Lab of Ornithology hits 2B bird sightings, 3M recordings

https://news.cornell.edu/stories/2025/08/lab-ornithology-hits-2-billion-bird-sightings-3-million-recordings
1•warrenm•2m ago•0 comments

Trump says US will take 10% stake in Intel

https://finance.yahoo.com/news/trump-says-us-will-take-10-stake-in-intel-180452265.html
1•mgh2•2m ago•0 comments

iOS 18.6.1 0-Click RCE POC Exploiting JPEG Decompression

https://github.com/b1n4r1b01/n-days/blob/main/CVE-2025-43300.md
1•haxiomic•2m ago•1 comments

Gamersnexus smuggling documentary was DMCAed because it quoted the President [video]

https://www.youtube.com/watch?v=6RJvrTC6oTI
1•nopurpose•3m ago•0 comments

Disasters, Ugly and Cute

https://unintendedconsequenc.es/disasters-ugly-cute/
1•paulorlando•3m ago•0 comments

Europe Is Losing

https://www.msn.com/en-us/politics/government/europe-is-losing/ar-AA1L24RG
1•speckx•4m ago•0 comments

Waymo Is Coming to the Bay

https://www.paloaltoonline.com/transportation/2025/06/17/waymo-expands-self-driving-taxi-service-to-parts-of-palo-alto-menlo-park/
1•malai723•8m ago•0 comments

APT36 hackers abuse Linux .desktop files to install malware in new attacks

https://www.bleepingcomputer.com/news/security/apt36-hackers-abuse-linux-desktop-files-to-install-malware/
1•Santosh83•8m ago•0 comments

Cruise

https://blog.samaltman.com/cruise
1•minememe•9m ago•0 comments

MySQL JSON Relational Duality Views

https://dev.mysql.com/doc/refman/9.4/en/json-duality-views.html
2•tanelpoder•9m ago•0 comments

Gitrules: Build context files (agents, rules, MCP configs) for AI coding tools

https://github.com/coderamp-labs/gitrules
1•indigodaddy•12m ago•0 comments

When someone agrees to use your app, you should consider it a miracle

https://twitter.com/nikitabier/status/1958799724934570401
1•empressplay•13m ago•0 comments

Trump says Intel CEO agreed to give U.S. government $10B

https://www.washingtonpost.com/technology/2025/08/22/trump-says-intel-ceo-agreed-give-us-government-10-billion/
1•ComputerGuru•15m ago•0 comments

Do LLMs have good music taste?

https://www.tylercosgrove.com/blog/llm-music-taste/
2•mathattack•16m ago•5 comments

US Stablecoin pushes EU to reconsider

https://www.coindesk.com/policy/2025/08/22/u-s-stablecoin-law-jolts-eu-into-rethinking-digital-euro-strategy-ft
1•mathattack•17m ago•0 comments

Storing PNG image data in a bird's song

https://flowingdata.com/2025/07/30/storing-png-image-data-in-a-birds-song/
1•bookofjoe•17m ago•0 comments

Extending the ARM of Atlas Computing

https://atlas.cern/Updates/Briefing/ARM-for-ATLAS
1•untilted•18m ago•0 comments

Using an MCP Server to Fix Tests That Failed on CI

https://www.rwx.com/blog/mcp-server-to-fix-failed-tests-from-ci
2•dan_manges•18m ago•0 comments

Why AI Agents Are Disrupting Traditional Marketing Teams

https://guptadeepak.com/why-ai-agents-are-killing-traditional-marketing-teams-and-supercharging-growth-teams-instead/
1•guptadeepak•20m ago•1 comments

Lipsync-2-Pro

https://sync.so/lipsync-2-pro
1•handfuloflight•21m ago•0 comments

Ask HN: Has GitHub's web UI gotten tremendously slow or is it just me?

1•SirensOfTitan•24m ago•1 comments

Why QUIC might kill TCP for good

2•josephbenedict•25m ago•0 comments

Why Was Apache Kafka Created?

https://bigdata.2minutestreaming.com/p/why-was-apache-kafka-created
2•enether•25m ago•0 comments

Show HN: Unbreakable – An AI Focus App That Blocks Based on Context, Not URLs

https://chromewebstore.google.com/detail/unbreakable/npmbeimjlocaknjjagjcdclmgiogofda
2•FezzikTheGiant•28m ago•0 comments
Open in hackernews

Textplot DuckDB Extension

https://query.farm/duckdb_extension_textplot.html
3•kermatt•2h ago

Comments

tanelpoder•1h ago
Pretty cool. At some point I wrote my own routines with pure DuckDB SQL, so I wouldn't have to import UDFs, it would all be in just SQL files. DuckDB already has a basic `bar()` function for bar charts [1] and also you could use YouPlot [2] if you prefer just piping the output to some other command instead of using a library or extension. I created my own bar charts though, as I wanted to use the "partial" unicode block characters for more fine-grained bar charts.

I created my own sparklines too with LISTAGG and unicode characters for rendering latency histograms, but the bigger problem there was that some latency buckets didn't have any data falling into them. That missing row of data still needs to be rendered as an empty bucket. So while the pure SQL approach worked, it was a convoluted query where I used an outer join with a list of synthetically generated latency buckets to align the rest of the buckets right.

That was a prototype anyway, later on I switched to returning the filled bucket numbers (latency:count) with LISTAGG as CSV that I later parsed and rendered in the app layer [3]

[1] https://duckdbsnippets.com/snippets/54/quick-inline-bar-char...

[2] https://duckdb.org/docs/stable/guides/data_viewers/youplot.h...

[3] https://tanelpoder.com/posts/xcapture-v3-alpha-ebpf-performa...