frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

An autonomous agent system that converged toward microkernel design principles

1•narv-lab•2m ago•0 comments

Show HN: CallBro – Granola, but Powered by Codex, Claude Code, or Your Local LLM

https://callbro.ai/
1•zlat1997•9m ago•0 comments

OpenStreetMap: Admin_level for All Countries

https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dadministrative#Table_:_Admin_level_for_all_cou...
1•ivanjermakov•9m ago•0 comments

Shopi Sri Lanka's No.1 E-Commerce Builder

https://shopi.lk/
1•ruzny-ramzan•11m ago•0 comments

DynamoDB Deep Dive

https://www.thetrueengineer.com/p/dynamodb-deep-dive
1•adletbalzhanov•12m ago•0 comments

Show HN: Claude Code Workflows for GPT/Codex

https://github.com/cyrusNuevoDia/gpt-workflow
1•knrz•14m ago•1 comments

Scalable Detection of Adversarial Synthetic Slop and Coordinated Media Abuse

https://research.google/pubs/scalable-detection-of-adversarial-synthetic-slop-and-coordinated-med...
2•thinkingemote•14m ago•1 comments

China's C919 passenger jets to enter service on first international route

https://www.msn.com/en-xl/technology/aviation/china-s-c919-passenger-jets-to-enter-service-on-fir...
3•ilamont•15m ago•0 comments

Fast DDS – C++ implementation of DDS standard of the OMG

https://github.com/eProsima/Fast-DDS
1•gjvc•18m ago•1 comments

Society for Hopeful Technologists

https://societyforhopefultechnologists.org/
2•edward•19m ago•0 comments

Vitamin C as a nitrosation inhibitor across dietary patterns and water quality

https://www.sciencedirect.com/science/article/pii/S002251932600069X?via%3Dihub
1•bookofjoe•20m ago•0 comments

YouTube's S-CTS: The AI Slop Purge has arrived

https://insidethecreator.beehiiv.com/p/the-slop-purge-has-arrived
1•CPLX•20m ago•0 comments

AI isn't destroying entry-level jobs. It's changing them

https://www.ft.com/content/6cb9570b-dccd-46f5-b42a-4d0b7b5de35a
1•thm•23m ago•1 comments

Users of Meta's Facebook, Instagram report suffering some outages

https://www.reuters.com/world/asia-pacific/users-metas-facebook-instagram-report-suffering-some-o...
1•saikatsg•23m ago•0 comments

One Giant Agent vs. 100 Small Agents

https://wolbarg.com/blog/one-giant-agent-vs-100-small-agents
1•atharvmunde•24m ago•0 comments

The Tactile Gating Paradox: Why Cameras Alone Can't Keep Humanoid Robots Upright

https://latentdynamics.substack.com/p/the-tactile-gating-paradox-why-cameras
1•Ayauho•26m ago•0 comments

Duely – Track unpaid invoices and send WhatsApp reminders in one click

https://duely-44998.bubbleapps.io/
1•03Leena03•26m ago•0 comments

I Got a Neko Full-Body Scan–and It Found 1 Thing None of My Devices Could See

https://www.inc.com/connor-jewiss/i-got-a-full-body-scan-and-it-found-1-thing-none-of-my-devices-...
1•connorjewiss•26m ago•0 comments

CosmicWatch: The Desktop Muon Detector

https://arxiv.org/abs/2508.12111
1•nill0•29m ago•0 comments

In-House LLM Serving at Netflix

https://netflixtechblog.com/in-house-llm-serving-at-netflix-a5a8e799ea2c?source=rss-c3aeaf49d8a4-...
3•dalvrosa•33m ago•0 comments

Claude Code skill for searching royalty-free stock photos via the Pexels API

https://github.com/amalshehu/pexels-skill
1•amalshehu•33m ago•0 comments

The Unpaid Invoices of 20th-Century Physics (and the Wolfram Overlap)

https://github.com/Michael-Ax64/K4-CompilingReality/blob/main/quantum/Q9-Founders.md
2•michael-ax•34m ago•0 comments

An invoice generator where your data never leaves the browser

https://corporatify.pro/
1•suitedgold•37m ago•0 comments

Show HN: Email for Agents with 1 Prompt

https://sente.run/
1•shim2k•38m ago•0 comments

Instagram could turn gender reveals into prediction markets

https://www.marginpoints.com/essays/instagram-could-turn-gender-reveals-into-prediction-markets
2•historian1066•39m ago•1 comments

Ask HN: Guidelines on GPT 5.6 Sol steering

1•arizen•40m ago•0 comments

Show HN: Subrust, a no_std, no alloc Subset-of-Rust interpreter

https://github.com/orbitalhigh/subrust
2•makira•41m ago•0 comments

Capacitor: Cross-platform native runtime for web apps

https://github.com/ionic-team/capacitor
1•toilet•41m ago•0 comments

Are the LLM Wars the Database Wars?

https://rruxandra.github.io/llm-wars-database-wars.html
2•rruxandra_l•44m ago•2 comments

Amazon Builder's Library – An overlooked goldmine of System Design knowledge

https://sumitgouthaman.com/posts/amazon-builders-library/
1•equinumerous•47m ago•0 comments
Open in hackernews

Automatically add missing "async/await" keywords to your TypeScript code

https://github.com/stanNthe5/typescript-autoawait
7•theThree•1y ago

Comments

bastawhiz•1y ago
Is this a problem that people actually have?
xeromal•1y ago
Fun side project man!
primitivesuave•1y ago
I took a peek at the implementation - I think this only works for a case where the typing explicitly contains the string "Promise". For example, I don't think it would work if I use `SomeInterface["some_promise_key"]` or might incorrectly add an async if I use `Awaited<Promise<...>>`.

I think what you're trying to build might be best served by Typescript's VFS - https://www.npmjs.com/package/@typescript/vfs. You can load the local files into an in-memory type system, and quickly extract async/await hints that might be more useful for a typical TS developer. I think there's a lot of really interesting static analysis you could do to improve async/await safety, as it certainly leads to issues from time to time.

joshstrange•1y ago
I do not want to be mean but I think you'd be much better served with ESLint rules to yell at you when you don't await when you should or do when you shouldn't.

This should _not_ be an automatic operation since it can change behavior in ways that will be unclear to the developer (completely undoing any gain from them being added automatically).

theThree•1y ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•1y ago
I created a ticket, using comments is not necessary because there is already the `void` syntax for when you don't want to wait:

https://github.com/stanNthe5/typescript-autoawait/issues/1

nextweek2•1y ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/