frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

NEXO, a daily diagnosis game scored on the ICD-10 tree

https://nexo.wiki.br/en
1•nexoapp•32s ago•0 comments

Pakistan Tells Hospitals to Clear Bed Space for "Mass Casualty Incident"

https://www.dropsitenews.com/p/pakistan-military-protest-imran-khan-sisters-detained-hospitals-beds
2•Georgelemental•1m ago•0 comments

The Advisory Group on Mathematics and Artificial Intelligence

https://terrytao.wordpress.com/2026/09/21/advisory-group-on-mathematics-and-artificial-intelligence/
3•digital55•4m ago•0 comments

Swarm Scaling

https://www.tobyord.com/writing/swarm-scaling
2•rdslw•4m ago•0 comments

Microsoft patents system to freeze games and inject ads during downtimes

https://www.tomshardware.com/video-games/microsoft-patents-system-to-freeze-games-and-inject-ads-...
3•ricobecks•5m ago•0 comments

Show HN: Grid flex rhymes with derivatives trading: an observation

https://www.academia.edu/2998-3665/3/3/10.20935/AcadEnergy8514
2•DamonHD•5m ago•0 comments

Wall Street Is Growing Skeptical of the Data Center Boom

https://www.nytimes.com/2026/09/21/business/ai-data-center-ipos.html
4•mikhael•7m ago•0 comments

HHS Seeks Public Input on Electromagnetic Fields and Wireless Radiation

https://www.hhs.gov/press-room/hhs-seeks-public-input-electromagnetic-fields-wireless-radiation.html
2•XnoiVeX•7m ago•0 comments

The Steam Deck Is Being Used to Test Mars Rovers [video]

https://www.youtube.com/watch?v=IJSO-BL3pEU
2•HelloUsername•7m ago•0 comments

The NASA/ESA Mars Sample Return mission has been canceled

https://www.science.org/content/article/nasa-s-mars-sample-return-mission-dead
2•Muhammad523•7m ago•0 comments

Show HN: VernLLM – LLM fallback, no gateway

https://vernllm.dev/
2•Buddo•8m ago•0 comments

B.C. government to sue OpenAI after Tumbler Ridge mass shooting

https://www.cbc.ca/news/canada/british-columbia/bc-government-announce-update-openai-legal-action...
4•dagmx•11m ago•0 comments

Enabling teachers to create learning interactives with generative UI

https://research.google/blog/the-future-of-practice-enabling-teachers-to-create-learning-interact...
1•raahelb•11m ago•0 comments

Is iPhone 18 Pro Max camera really stands out? Keynote was sharper for sure

https://twitter.com/iHarnoorSingh/status/2101129453418295507
1•iharnoor•12m ago•0 comments

V7 gives AI agents institutional memory

https://openai.com/index/v7/
2•rdslw•12m ago•0 comments

Woven Matter v0.2.0 adds tooling for deeper workspace integration

https://github.com/wovenmatter/wovenmatter/releases/tag/v0.2.0
1•trey131•12m ago•1 comments

A scrollable feed of scientific papers

https://papertok.app/feed
2•jslakro•13m ago•0 comments

Show HN: Factlabel: catches AI agents lying about the data they're reporting on

https://github.com/generallymatthew/factlabel
1•generallymatt9•14m ago•0 comments

Bugs that broke driving: Machine Learning edition

https://blog.comma.ai/ml-bugs/
1•LorenDB•14m ago•0 comments

We Are Simulating Humanity

https://www.null0.ai
1•amaarc•16m ago•0 comments

In Search of a Compositional Theory of Self-Stabilization

http://muratbuffalo.blogspot.com/2026/09/in-search-of-compositional-theory-of.html
5•matt_d•17m ago•0 comments

You can use any LLM just like JEV

https://www.reddit.com/r/LocalLLaMA/comments/1wlxpaw/you_can_use_any_llm_just_like_jev/
3•theanonymousone•18m ago•0 comments

Evergarden

https://evergarden.moe/
1•birdculture•20m ago•0 comments

Adaptive Business Engine (ABE): Evidence, Authority and Governance

https://zenodo.org/records/22881485
1•ileuza_maya•20m ago•0 comments

Temporary Flight Restriction over SpaceX's McGregor, Texas, Test Facility

https://notams.aim.faa.gov/notamSearch/createNotamPdf?transactionid=82465898
2•uticus•21m ago•1 comments

RoboHarm: Do Frontier Robot Policies Refuse Unsafe Instructions?

https://robocurve.org/roboharm/
1•msadowski•23m ago•0 comments

An Age of Experimentation [pdf]

https://thomasdullien.github.io/about/slides/An-age-of-experimentation-BlueHat-Asia-2026.pdf
1•porridgeraisin•23m ago•0 comments

Jevmade.com

https://jevmade.com/#jev
1•zenoware•24m ago•0 comments

Can JEV Play Chess

1•dev_marcospimi•24m ago•0 comments

I'm so bad at billiards that I ended up in the hyperbolic plane [video]

https://www.youtube.com/watch?v=kL9BTbIGxLg
2•accrual•28m ago•1 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/