frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Fable 5 Export Controls Harm US Cyber Defense

https://www.lutasecurity.com/post/the-fable-5-export-controls-harm-us-cyber-defense
1•epaga•26s ago•0 comments

Found a useful open-source repo called Undoable

https://github.com/AkhilNam/undoable
1•hellokittydev•2m ago•0 comments

Commodore retro-styled flip phone

https://www.wired.com/story/commodore-callback-8020-is-a-digital-detox-phone-that-isnt-dumb/
1•seomint•2m ago•1 comments

Academic freedom declined in 50 countries

https://academic-freedom-index.net/
1•dash2•2m ago•0 comments

Breakthrough in electron microscopy delivers sharper images of tiniest proteins

https://news.berkeley.edu/2026/06/11/a-breakthrough-in-electron-microscopy-delivers-sharper-image...
1•thunderbong•3m ago•0 comments

Neither Parallel nor Sequential: How DiffusionGemma Commits Tokens

https://arxiv.org/abs/2606.14620
1•Topfi•8m ago•0 comments

Disbatch – turn a PowerShell/batch script into a GUI, with a risk analyzer

https://github.com/SlashRevet/disbatch
1•revet•8m ago•0 comments

Notes Art: iPhone Notes Drawings

https://notes.art/
1•rishikeshs•8m ago•0 comments

Show HN: Fig0 – 0-Manual AI Scientific Figure and Illustration Generator

https://fig0.ai/
1•zizheruan•11m ago•0 comments

Grind LeetCode questions with Claude Code dsa mentor

https://github.com/Stewie-pixel/claude-with-leetcode
1•Stewie-pixel•12m ago•1 comments

Snap Launches $2,195 'Specs' Augmented Reality Glasses

https://www.macrumors.com/2026/06/16/snap-specs-ar-glasses/
1•tosh•14m ago•0 comments

Apple's 2028 iPhones to Use 1.4nm A22 Pro Chips

https://www.macrumors.com/2026/06/16/2028-iphones-a22-pro-chips/
2•tosh•14m ago•0 comments

Yellow spaceship machines used to prevent algae

https://www.bbc.co.uk/news/articles/cpwez5qgj5xo
1•zeristor•15m ago•1 comments

The Coming Quantum National Security Crisis

https://www.foreignaffairs.com/china/coming-quantum-national-security-crisis
3•0in•19m ago•0 comments

Waiting for the Weekend (1991)

https://www.theatlantic.com/magazine/archive/1991/08/waiting-for-the-weekend/376343/
2•helloplanets•22m ago•0 comments

Peter Thiel's private society attendance list leaked via hard-coded HTML

https://github.com/nzaki-dev/dialog
7•helloamigo•27m ago•0 comments

TradersCompanion, a trading journal that helps prop firm traders pass challenges

https://www.traderscompanion.org
1•mathono•28m ago•0 comments

Tell HN: Just scammed for $5207.11 by "10-4 by WEX" (Mercury Personal)

1•bojangleslover•28m ago•0 comments

Britain arrests more for social media posts than China, Russia, Turkey combined

https://twitter.com/XFreeze/status/2066778611227709885
4•Dig1t•35m ago•0 comments

A primer on cloud seeding (2024)

https://www.theclimatebrink.com/p/a-primer-on-cloud-seeding
1•sneela•35m ago•1 comments

Cursor CEO omits information geometry contraints helping programming activity

https://twitter.com/a16z/status/2066932717871301046
1•__patchbit__•38m ago•0 comments

India temporarily bans Telegram over exam paper leak concerns

https://www.bbc.com/news/articles/cn074j04l3eo
3•thisislife2•39m ago•0 comments

BoronEngine, (c++ vulkan dx11) gameengine

2•Kahviz_•42m ago•1 comments

Show HN: Product Validation

https://ideas.trk7.app/
2•cosmok•45m ago•0 comments

Zygohistomorphic Prepromorphism Is All You Need

https://wiki.haskell.org/index.php?title=Zygohistomorphic_prepromorphisms
2•wseqyrku•46m ago•0 comments

Bill Joy: Co-Founder of Sun Microsystems

https://engineering.berkeley.edu/bill-joy-co-founder-of-sun-microsystems/
3•teleforce•50m ago•0 comments

Apple plans change to Hide My Email that could make it less effective

https://techcrunch.com/2026/06/16/apple-plans-to-change-its-hide-my-email-privacy-feature-that-co...
17•memalign•56m ago•1 comments

European leaders meet with the Trump and Amodei over Fable 5

https://www.politico.eu/article/eu-donald-trump-anthropic-amodei-row-at-g7/
4•jonash54•58m ago•0 comments

Dancing the Limbo

https://schrottner.at/2026/06/14/Dancing-the-limbo.html
3•RyeCombinator•1h ago•0 comments

Show HN: Convert the raw HealthKit DB from an iPhone backup to SQLite

https://github.com/ninyawee/healthkit-from-backup-to-sqlite
1•circleoncircles•1h 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/