frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Gen Z is the first generation less cognitively capable than their parents

https://www.upworthy.com/gen-z-technology-schools-ex1-2/
2•atan2•1m ago•0 comments

AI now reads your bank

https://bankmcp.dk/
1•maxheyer•2m ago•0 comments

Astra Is Hard to Monitor

https://thezvi.substack.com/p/astra-is-hard-to-monitor
1•7777777phil•3m ago•0 comments

Getting Started with ECP5 FPGAs on the Colorlight I5 FPGA Development Board

https://tomverbeure.github.io/2021/01/22/The-Colorlight-i5-as-FPGA-development-board.html
1•Bluestein•5m ago•0 comments

How to decide what content to publish

1•writebysachin•5m ago•0 comments

Calling for Interop 2027 Proposals

https://blogs.windows.com/msedgedev/2026/09/03/calling-for-interop-2027-proposals/
1•ksec•11m ago•0 comments

The creators of Dark Sky have a new weather app that shares multiple predictions

https://www.theverge.com/tech/883089/acme-weather-forecast-app-ios-dark-sky-creators-subscription
1•bilsbie•11m ago•0 comments

Write Things Down

https://stratechery.com/2026/write-things-down/
1•maguay•12m ago•0 comments

We rebuilt the old Google Analytics on top of GA4's data

https://github.com/adacahq/adaca-analytics
1•LambrosPhotios•14m ago•0 comments

Perfection Is Faceless

https://wilsoniumite.com/2026/09/08/perfection-is-faceless/
1•Wilsoniumite•14m ago•0 comments

St Louis restaurants are generating AI images of their food Foodies are repulsed

https://www.stltoday.com/news/local/business/article_4049a9c9-e801-4073-a8a0-347494790282.html
1•pgrote•15m ago•0 comments

High doses of Vitamin C interfere with the expansion of glioblastoma

https://www.sciencedirect.com/science/article/abs/pii/S0024320519305831?via%3Dihub=
1•bilsbie•15m ago•0 comments

Human Atlas: Interactive 3D anatomy explorer built with GPT-6 Astra

https://human-atlas-seven.vercel.app
2•ksec•15m ago•0 comments

You have my democracy sword: Media Media

https://berjon.com/media-media/
1•raybb•16m ago•0 comments

A lost archive of NYC 9/11 street art memorials comes back online

https://gothamist.com/arts-entertainment/a-lost-archive-of-nyc-911-street-art-memorials-comes-bac...
1•geox•16m ago•0 comments

Robotics with Conan: consuming ROS as a regular package

https://blog.conan.io/cpp/conan/ros/ros2/robotics/2026/09/08/Robotics-with-Conan-consuming-ROS.html
1•czoido•17m ago•0 comments

PISA 2025 Students' reading and mathematics performance declined across the OECD

https://www.oecd.org/en/about/news/press-releases/2026/09/pisa-2025-students-reading-and-mathemat...
3•mazokum•18m ago•0 comments

Addy Osmani joins Anthropic

https://twitter.com/addyosmani/status/2097210828659564642
2•afshinmeh•22m ago•0 comments

How does a hacker access your customer or membership database in 7 steps?

https://www.itsecurityawareness.ie/news/90/
1•Rubayo•22m ago•1 comments

Show HN: A browser IDE for m68000, Z80 assembly (and more), with graphics

https://asm-editor.specy.app/
1•specy•23m ago•1 comments

A.I. Models Built a Computer Worm That Could Rapidly Hack WeChat Accounts

https://www.nytimes.com/2026/09/08/us/politics/calif-ai-worm-wechat-hack.html
1•0in•23m ago•0 comments

Show HN: Alethecs – fact-checks a claim and shows its own reasoning gaps

https://www.alethecs.app
1•Mobeen0119•24m ago•3 comments

I built an SMS alerting agent for failed database migrations

https://github.com/team-telnyx/telnyx-code-examples/tree/main/sql-migration-agent
1•harpreetseehra•24m ago•0 comments

Raids, shutdowns, warning labels – India's unprecedented food safety push

https://www.reuters.com/legal/litigation/raids-shutdowns-warning-labels-indias-unprecedented-food...
1•JumpCrisscross•26m ago•0 comments

Ask HN: How do you minimize access to raw PII inside a company?

1•Securelytixdev•27m ago•0 comments

Gen AI Tools Are Now Being Used to Push 'Slop Jihad'

https://www.wired.com/story/gen-ai-tools-are-now-being-used-to-push-slop-jihad/
2•joozio•30m ago•0 comments

Logistics of Restraint

https://www.kcoleman.me/2026/09/08/noloop-logistics-of-restraint.html
1•itake•30m ago•0 comments

Deterministic Rule based auto-approver for Claude/Codex

https://github.com/adityamatt/anumati
1•aditaymatt•31m ago•1 comments

Microsoft Tgrep

https://github.com/microsoft/tgrep
1•handfuloflight•35m ago•0 comments

OpenAI hires Chuck Schumer's daughter as lead lobbyist during regulatory talks

https://www.washingtonexaminer.com/policy/technology/4715947/openai-hires-chuck-schumer-daughter-...
3•healsdata•36m 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/