frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Chinese couple charged with smuggling a biological pathogen into the U.S.

https://www.nbcnews.com/politics/justice-department/chinese-couple-charged-smuggling-biological-pathogen-us-rcna208658
1•shinryudbz•2m ago•0 comments

How NATO is turning to startups to outpace its rivals

https://thenextweb.com/news/how-nato-startups-fight-future-wars
1•mikece•4m ago•0 comments

DiffX – Next-Generation Extensible Diff Format

https://diffx.org/
1•todsacerdoti•6m ago•0 comments

Flesh-eating New World Screwworm could pose health risks to cattle, humans

https://www.foxnews.com/health/flesh-eating-new-world-screwworm-could-pose-health-risks-cattle-humans
1•keepamovin•6m ago•1 comments

Why is PS3 emulation so fast: RPCS3 optimizations explained [video]

https://www.youtube.com/watch?v=19ae5Mq2lJE
1•alexjplant•8m ago•0 comments

Musk calls Trump's tax bill a 'disgusting abomination'

https://www.bbc.com/news/articles/c0j76djzgpvo
3•andsoitis•10m ago•2 comments

Ask HN: Stripe and Chargebacks

1•gtech1•14m ago•0 comments

Meta and Yandex exfiltrating tracking data on Android via WebRTC

https://arstechnica.com/security/2025/06/meta-and-yandex-are-de-anonymizing-android-users-web-browsing-identifiers/
1•liuandrewk•14m ago•1 comments

Why Is the US Dropping Billions of Mutant Flies from the Sky? [video]

https://www.youtube.com/watch?v=zxq60I5RSW8
1•keepamovin•19m ago•0 comments

Out of His League and Clueless: NIH Staffers Speak Out on Director Bhattacharya

https://www.importantcontext.news/p/out-of-his-depth-sold-his-soul-clueless
1•SubiculumCode•25m ago•0 comments

Show HN: Built an AI Agent that finds hidden bugs and maps web apps

https://testchimp.io/blog/agentic-exploratory-testing/
2•TestChimp•25m ago•0 comments

Show HN: All-in-one platform for AI image generation

https://www.imageninja.ai/
1•ashr_•25m ago•0 comments

EVI 3: any voice and personality

https://demo.hume.ai/
2•twitchard•26m ago•0 comments

Shein's emissions now rival entire countries

https://stand.earth/fashion/resources/2025-scorecard/all-scores/
1•fermier•26m ago•0 comments

Show HN: Enky – creators get paid to use music

https://www.enkymarketing.com
1•aibu•27m ago•0 comments

Barrelfish OS Architecture Overview (2013) [pdf]

https://barrelfish.org/publications/TN-000-Overview.pdf
1•peter_d_sherman•28m ago•1 comments

Harlem neighborhood becomes first in US to have trash containerized

https://abc7ny.com/post/mayor-eric-adams-unveils-completion-empire-bin-installation-west-harlem-new-york-reduce-rats-garbage/16633387/
2•geox•36m ago•1 comments

Don't Let Apache Iceberg Sink Your Analytics: Practical Limitations in 2025

https://quesma.com/blog-detail/apache-iceberg-practical-limitations-2025
1•killme2008•41m ago•0 comments

The Tech Recruitment Ruse That Has Avoided Trump's Crackdown on Immigration

https://www.propublica.org/article/trump-immigration-h1b-visas-perm-tech-jobs-recruitment
6•ultra_nick•45m ago•0 comments

MiSTer FPGA

https://github.com/MiSTer-devel/Wiki_MiSTer/wiki
2•rahimnathwani•46m ago•0 comments

Is Japan ready to say goodbye to tax-free shopping?

https://www.japantimes.co.jp/news/2025/06/04/japan/politics/tax-free-system/
2•mikhael•48m ago•1 comments

The Redemption of the King's Talmud

https://www.newenglishreview.org/articles/the-redemption-of-the-kings-talmud/
2•crescit_eundo•51m ago•1 comments

Glow (Mac OS theme engine)

https://old.reddit.com/r/MacOS/comments/1l2rzjb/i_created_a_macos_theme_engine/
2•felixding•54m ago•0 comments

Ask HN: Has anybody built search on top of Anna's Archive?

2•neonate•57m ago•1 comments

Ask HN: Startup getting spammed with PayPal disputes, what should we do?

1•june3739•58m ago•2 comments

How FIDO2 works, a technical deep dive

https://michaelwaterman.nl/2025/04/02/how-fido2-works-a-technical-deep-dive/
2•xeonmc•58m ago•0 comments

Claude Code's System Prompt

https://gist.github.com/kylecarbs/21f9f5cd643f4f5d2a05f97cdcd34bde
4•kylecarbs•1h ago•3 comments

Retailer Temu's daily US users halve following end of 'de minimis' loophole

https://www.reuters.com/business/retail-consumer/retailer-temus-daily-us-users-halve-following-end-de-minimis-loophole-2025-06-02/
3•TMWNN•1h ago•1 comments

What Is Quishing? How Hackers Use QR Codes to Steal Your Data

https://www.youtube.com/watch?v=RVF6NVnJvd8
4•Brysonbw•1h ago•0 comments

Your Manager Is Not Your Best Friend

https://staysaasy.com/management/2025/06/02/your-manager-is-not-your-best-friend.html
20•thisismytest•1h ago•3 comments
Open in hackernews

I've built an open source streaming library for async pipelines

https://github.com/ju-bezdek/conveyor
1•ju-bezdek•1d ago

Comments

ju-bezdek•1d ago
I’ve been working with LLMs a lot lately, and one consistent UX bottleneck is inference speed.

Many tasks follow this pattern: process small chunks → batch for inference → split results again. Parallelizing helps, but naive asyncio.gather approaches often backfire—each stage waits on the slowest batch, killing responsiveness. Mixing fast per-item logic with slower batch steps needs smarter coordination.

Technical approach: Built a pipeline library that handles the streaming coordination automatically. Uses async generators throughout with intelligent queuing for order preservation when needed.

Architecture decisions:

Stream-first design: Results flow by default, with optional collection Flexible ordering: Choose between speed (unordered) and sequence (ordered) Memory efficiency: O(batch_size) memory usage, not O(dataset_size) Backpressure handling: Automatic coordination between fast and slow stages Error boundaries: Configurable failure strategies at task level.