frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenAI is connecting ChatGPT to bank accounts via Plaid

https://firethering.com/chatgpt-bank-account-plaid-openai/
1•steveharing1•2m ago•0 comments

Ink/Stitch

https://inkstitch.org/
1•Tomte•2m ago•0 comments

The protocol that disclaimed itself

https://www.cognitivefusion.systems/insights/
1•JohnsonSLC•2m ago•0 comments

New York's Neue Galerie Will Merge with the Metropolitan Museum

https://www.theartnewspaper.com/2026/05/14/neue-galerie-metropolitan-museum-merger
1•Tomte•3m ago•0 comments

Mayo Clinic Is Using AI to Listen to Emergency Room Visits

https://www.404media.co/mayo-clinic-is-using-ai-to-listen-to-emergency-room-visits/
1•cdrnsf•3m ago•0 comments

Plato's Cave and the Rise of the Highly Educated Radical

https://www.thefp.com/p/platos-cave-and-the-rise-of-the-highly
1•rolph•4m ago•0 comments

Copilot and M365 Premium: 12 months free for students

https://www.microsoft.com/fr-fr/microsoft-365/college-student-pricing
1•K9987plus•4m ago•0 comments

Build a Radio Wave Detector with Balls of Aluminum Foil

https://www.wired.com/story/build-a-radio-wave-detector-with-balls-of-aluminum-foil/
2•Brajeshwar•4m ago•0 comments

Passwords suck. Can passkeys replace them?

https://kerkour.com/passkeys
1•birdculture•5m ago•0 comments

Show HN: Termini – Open-Source Menu Bar Terminal for macOS

https://github.com/ModernProgrammer/Termini
1•reflextech•5m ago•1 comments

Big Yellow – Inside the Spirit Airlines Repo Operation [video]

https://www.youtube.com/watch?v=moEixIux1b0
1•codezero•6m ago•1 comments

Anthropic investigating claim of unauthorised access to Mythos AI tool

https://www.bbc.com/news/articles/cy41zejp9pko
1•artsandsci•7m ago•0 comments

Skyscraper-Size Asteroids, Failed Supernovas, and Interstellar Visitors

https://www.quantamagazine.org/rubin-tracks-skyscraper-size-asteroids-failed-supernovas-and-inter...
1•ibobev•9m ago•0 comments

Personal Finance Experience in ChatGPT

https://openai.com/index/personal-finance-chatgpt/
2•clayallsopp•11m ago•0 comments

Starting My Content Delivery Network

https://www.apalrd.net/posts/2026/asn_cdn/
1•speckx•12m ago•0 comments

Fossil: A Coherent Software Configuration Management System

https://fossil-scm.org/home/doc/trunk/www/index.wiki
1•Tomte•16m ago•0 comments

Teleporty – Physics-Grounded Teleportation Research

https://github.com/ninjahawk/teleporty
1•ninjahawk1•16m ago•0 comments

A framework for systematically addressing undefined behaviour in C++ Standard [pdf]

https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2026/p3100r6.pdf
1•agluszak•16m ago•0 comments

Fork, Explore, Commit: OS Primitives for Agentic Exploration

https://arxiv.org/abs/2602.08199
1•matt_d•16m ago•0 comments

'The Dark Wizard' Deconstructs the Mythology of the Dirtbag Rebel

https://www.climbing.com/culture-climbing/how-the-dark-wizard-deconstructs-the-mythology-of-the-d...
1•bryanrasmussen•17m ago•0 comments

How banned AI chips end up in China

https://www.the-substrate.net/p/how-banned-ai-chips-end-up-in-china
2•erwald•17m ago•1 comments

Segment Heap support for C++ projects in Visual Studio

https://devblogs.microsoft.com/cppblog/segment-heap-support-for-c-projects-in-visual-studio/
1•ibobev•18m ago•0 comments

Show HN: Billoop – generate Factur-X and UBL e-invoices from Shopify orders

https://apps.shopify.com/billoop
1•max-roma•19m ago•0 comments

Negation Neglect: When models fail to learn negations in training

https://arxiv.org/abs/2605.13829
1•Timofeibu•19m ago•0 comments

Drone Mishap with XM183 MiniBlast Redacted

https://www.documentcloud.org/documents/28124600-drone-mishap-with-xm183-miniblast-redacted/
1•rolph•19m ago•0 comments

Liquid AI releases fine-tuning harness for AI agents

https://lqh.ai/
4•pember•19m ago•0 comments

Apple iPhone's share of U.S. smartphone sales hits 75% at Big 3 carriers

https://macdailynews.com/2026/05/15/apple-iphones-share-of-u-s-smartphone-sales-hits-75-at-big-3-...
1•mgh2•19m ago•0 comments

Should we chaos test our agents?

https://github.com/Corbell-AI/evalmonkey
1•himmi-01•19m ago•1 comments

Doctor's AI notetaker may be making things up, Ontario audit finds

https://arstechnica.com/health/2026/05/your-doctors-ai-notetaker-may-be-making-things-up-ontario-...
1•Timofeibu•20m ago•0 comments

Cisco announces record revenue and 4k layoffs in the same day

https://arstechnica.com/information-technology/2026/05/cisco-announces-record-revenue-and-4000-la...
1•taubek•20m 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/