frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Xring: Crashing XQUIC with spec-compliant QPACK instructions

https://foxio.io/blog/xring-crashing-xquic-with-spec-compliant-qpack-instructions
1•PranaFlux•1m ago•0 comments

Promise Theory

https://en.wikipedia.org/wiki/Promise_theory
1•dmonay•2m ago•0 comments

Why Europe's tech ecosystem collapses in simulation (a causal-loop analysis)

https://hebelai.substack.com/p/why-europes-tech-ecosystem-collapses
1•bastbuch•5m ago•0 comments

Negative squaring – pre-tilted 3-bit quantization beat naive 4-bit

https://github.com/elpinyeknom/negative-squaring-/tree/main
1•faDOOM•8m ago•0 comments

Show HN: Airline pilot's interactive guide to aviation radio

https://jameshard.ing/posts/aviation-radio/
1•jamesharding•12m ago•1 comments

Ask your data in plain English

https://tablitsa.app/blog/ask-your-data-in-plain-english
1•valerko•13m ago•0 comments

Nearly half of U.S. retail spending comes from top 10% of earners

https://www.marketplace.org/story/2025/09/17/top-10-of-earners-make-up-half-of-us-retail-spending
1•akyuu•13m ago•0 comments

EasyJet is essential British travel infrastructure

https://revman.substack.com/p/easyjet-is-essential-british-travel
1•edward•13m ago•0 comments

Pgrust – Postgres, Rewritten in Rust

https://pgrust.com/
2•jonbaer•15m ago•0 comments

A Committee of Identical Agents Is Still One Mind

https://bugmedaily.substack.com/p/a-committee-of-identical-agents-is
1•enesunal•16m ago•0 comments

Comparing ML models in small molecule drug discovery

http://fbdd-lit.blogspot.com/2026/04/comparing-ml-models-in-small-molecule.html
1•surprisetalk•18m ago•0 comments

Late Bronze Age Collapse

https://acoup.blog/2026/01/30/collections-the-late-bronze-age-collapse-a-very-brief-introduction/
1•dmonay•18m ago•0 comments

Codex Chronicle

https://learn.chatgpt.com/docs/customization/chronicle
1•dmonay•19m ago•0 comments

Show HN: MCP Gateway – Turn existing APIs and databases into MCP servers

https://swaggertomcp.com
1•mhmt_dmr•20m ago•0 comments

Microcosm Industries: simulation toys and software microcosms

https://microcosm.industries/
1•arbesman•22m ago•0 comments

China's 'Silicon Valley' in Hangzhou: Home of DeepSeek, Alibaba and Ant Group [video]

https://www.youtube.com/watch?v=aEx7DvR5fZE
2•binyu•22m ago•0 comments

Hardening stb libraries using AI agents

https://mrunix.me/posts/stb-hardening/
2•mrunix•22m ago•0 comments

AI Slop by Robobun

https://github.com/oven-sh/bun/pull/33864
1•struanr•23m ago•0 comments

Show HN: Intel Desk, a geopolitical desk that scores sources and tracks Hormuz

https://www.inteldesk.app/
1•wudwerd01•25m ago•0 comments

Google DeepMind workers in UK vote to unionize amid deal with US Military

https://www.theguardian.com/us-news/2026/may/04/google-deepmind-uk-workers-union
2•nervai•25m ago•0 comments

Q1 2026 Innovation: Open-source collaboration is accelerating worldwide

https://github.blog/news-insights/policy-news-and-insights/q1-2026-innovation-graph-update-open-s...
1•AtroGi•26m ago•0 comments

Designing a Distributed Anti-Cheat Architecture

https://medium.com/@www.ahadprogamer/designing-a-distributed-anti-cheat-pipeline-14f13410d3e5
1•Ahadprogamer•29m ago•0 comments

Testing GPT 5.6 [video]

https://www.youtube.com/watch?v=SettwwX2cCI
1•mgh2•35m ago•0 comments

LLMs are bad at novelty, but that is our chance to Singularity

1•alex_brajkovic•35m ago•1 comments

I'm Quitting as Pluto.jl Maintainer

https://discourse.julialang.org/t/im-quitting-as-pluto-jl-maintainer/138028
3•fons-p•38m ago•1 comments

One local man's immunity to ticks could save us all (2015)

https://www.caryinstitute.org/news-insights/media-coverage/how-one-local-mans-immunity-ticks-coul...
1•downbad_•39m ago•0 comments

Production Data and AI Agents

1•Eapz_06•40m ago•0 comments

Accretive Editing

https://justindfuller.com/programming/accretive-editing
1•iamjfu•41m ago•0 comments

Show HN: An interactive double pendulum "fractal"

https://www.doublethe.fun
1•teaearlgraycold•42m ago•0 comments

A staggering class divide now separates how Americans experience AI

https://www.axios.com/2026/07/10/ai-class-divide-fable-sol-mythos
1•giuliomagnifico•44m 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/