frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: How did your boss's behavior change with the rise of AI?

1•aredirect•1m ago•0 comments

Granola Class Action Lawsuit

https://twitter.com/RobertFreundLaw/status/2083350273758728216
1•freestylematt•2m ago•0 comments

WTF Happened in 1971?

https://wtfhappenedin1971.com/
1•baxtr•3m ago•0 comments

Show HN: Wisp – a Linux shell with Lua scripting and structured pipelines

https://github.com/Hinikaa/wisp
1•hinikaa•3m ago•0 comments

Bloom Filters

https://arpitbhayani.me/blogs/bloom-filters/
1•vishwajeet_thok•5m ago•0 comments

AI doesn't generate working products, that's still your job

https://weeraman.com/the-prototype-isnt-the-product/
2•smckk•7m ago•1 comments

Amgen Reports Breach to SEC

https://databreaches.net/2026/07/31/amgen-reports-breach-to-sec/
1•WaitWaitWha•13m ago•0 comments

How Functional Is Human Tetrachromacy? (Ooqui) [video]

https://www.youtube.com/watch?v=NLC38iB7deE
1•zeristor•16m ago•0 comments

Google plans to exempt sanctioned nations from Android developer verification

https://arstechnica.com/gadgets/2026/07/google-plans-to-exempt-sanctioned-nations-from-android-de...
1•01-_-•16m ago•0 comments

Show HN: Habit Dungeon – RPG gamification that helps good habits stick

https://gamifyhabits.app/
1•jackedv•17m ago•1 comments

Solid Queue 1.6.0 now supports fiber workers

https://github.com/rails/solid_queue/releases/tag/v1.6.0
2•earcar•17m ago•0 comments

Silicon Valley loves young founders. Until it doesn't

https://techcrunch.com/2026/07/31/build-in-public-fail-in-public-what-its-like-to-be-a-founder-un...
1•01-_-•18m ago•0 comments

Situated Software (2004)

https://devonzuegel.com/situated-software
1•chr15m•18m ago•1 comments

Ten advances in mathematics and theoretical computer science

https://openai.com/index/ten-advances-in-mathematics/
17•milkshakes•21m ago•1 comments

Is AI Conscious? [video]

https://www.youtube.com/watch?v=DRbZyuY8EN8
1•abc42•28m ago•1 comments

Ats Resume Checker

https://www.apply-tracker.com/en/resume-checker
1•mirnumbing•30m ago•0 comments

The OpenCode default session prompts for plan and edit

https://github.com/anomalyco/opencode/tree/dev/packages/opencode/src/session/prompt
1•walrus01•32m ago•0 comments

Marketing sucks when all you want to do is build."builder's dopamine"

https://www.reddit.com/r/SaaS/comments/1vblhwy/comment/p0z1i6b/
2•absolutedev•35m ago•0 comments

Future euro banknote design proposals

https://www.ecb.europa.eu/euro/banknotes/future_banknotes/html/design-proposals.en.html
2•austinallegro•35m ago•0 comments

Most speed readers break on Japanese, Chinese and Thai

https://www.readkinetic.com/blog/speed-reading-japanese-chinese-thai
1•SamuraiLion•43m ago•0 comments

Show HN: Lightweight, S3-compatible object storage server

https://vaults3.com/
1•open_source_new•43m ago•0 comments

Police in US are using the power of podcasts to crack unsolved murders

https://www.bbc.co.uk/news/articles/cpw9q0ekd9eo
1•zeristor•44m ago•0 comments

Churchill's Ersatz Meeting with Lincoln's Ghost (2018)

https://richardlangworth.com/lincolns-ghost-churchill-white-house
1•thunderbong•52m ago•0 comments

A migrant surge tests Spain's open policies

https://economist.com/europe/2026/07/31/a-migrant-surge-tests-spains-open-policies
22•andsoitis•56m ago•29 comments

Chinese AI Researchers Are Finding Their Voice on X

https://www.wired.com/story/chinese-ai-researchers-are-finding-their-voice-on-x/
6•joozio•57m ago•0 comments

A big win for Android interoperability

https://www.openhomefoundation.org/blog/a-big-win-for-android-interoperability/
1•saeedesmaili•1h ago•0 comments

Spain Regains Control of Enclave After Migrants Overrun It

https://www.wsj.com/world/europe/spain-rushes-to-control-border-after-tens-of-thousands-of-migran...
3•andsoitis•1h ago•0 comments

GPT has proved nonsofic groups are exist

https://twitter.com/iron_redux/status/2083360414037938609
4•demirbey05•1h ago•0 comments

OpenAI's work on Git for large repositories

https://openai-git-upstream.openai.chatgpt.site/
3•fratellobigio•1h ago•0 comments

Applied Electrodynamics (YC S26) A new kind of camera that can see through walls

https://twitter.com/bavser/status/2082868602240385526
2•max_zorin_phd•1h 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/