frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Switzerland's invisible skyline: why Zug towers over the rest

https://prospex.ch/blog/switzerlands-invisible-skyline-companies-by-building/
1•theanonymousone•2m ago•0 comments

A Figma clone built by GPT-6 Astra

https://wieslawsoltes.github.io/Vellum/
1•aghuang•5m ago•1 comments

Ask HN: Do you route only certain websites through a VPN?

1•dennysora-main•7m ago•0 comments

The Structured Vacuum: Thinking about Nothing [pdf]

https://rafelski.com/~johann/Books/StructVacuumE.pdf
2•rramadass•15m ago•0 comments

Revealing a Hidden Class of Task-in-Prompt Adversarial Attacks on LLMs

https://aclanthology.org/2025.acl-long.334/
1•aghuang•15m ago•0 comments

Show HN: Rust and Box2D browser physics game – build destructive machines

https://v-yanakiev.itch.io/machina
1•v-yanakiev•18m ago•0 comments

MyNoise – Custom Soundscapes for Focus, Relaxation and Sleep

https://mynoise.net/index.php
1•pan69•20m ago•0 comments

Show HN: Vera – A memory log that leaves interpretation to AI agents

https://ag3497120.github.io/call-me-vera/
1•pakupaku•21m ago•0 comments

Robot writes in languages it has never seen before

https://www.wired.com/story/robot-writing/
2•euanming•22m ago•0 comments

The biggest problem in buying AI compute is credit

https://twitter.com/gpugene/status/2096427973893411312
1•MrBuddyCasino•22m ago•0 comments

Anthropic IPO launch shifts toward mid-October

https://www.cnbc.com/2026/09/05/anthropic-ipo-launch-shifts-toward-mid-october-reuters.html
2•aghuang•23m ago•0 comments

Show HN: Assist (Voice Screenshot)

https://assistapp.dev
1•abhishekucs•27m ago•1 comments

TR-106

https://en.wikipedia.org/wiki/TR-106
2•num42•28m ago•0 comments

LA District Bans Most A.I. For Students

https://www.nytimes.com/2026/09/03/us/lausd-schools-ban-ai-artificial-intelligence.html
2•narenst•28m ago•1 comments

Greenland forces Trump's US oil firm to delay drilling

https://www.theguardian.com/world/2026/aug/12/trump-greenland-oil
5•Alien1Being•31m ago•0 comments

Consciousness, creativity andunderstanding not obstacles to machine intelligence

https://link.springer.com/article/10.1007/s11229-026-05655-1
2•klaustro•32m ago•0 comments

'Huge Breakthrough' in the Math of Imbalance

https://www.quantamagazine.org/huge-breakthrough-in-the-math-of-imbalance-20260821/
1•diazc•34m ago•0 comments

Find fastest DoH provider for you

https://dnsspeedtest.online/
1•snihalani•36m ago•0 comments

Why Laser Beams Are the Hottest New Tech in Defense

https://www.bloomberg.com/news/articles/2026-09-04/why-laser-beams-are-the-hottest-new-tech-in-de...
1•Alien1Being•36m ago•0 comments

After 30 Years of Silence, the Original NSA Whistleblower Looks Back

https://therealnews.com/after-30-years-of-silence-the-original-nsa-whistleblower-looks-back
2•Eridanus2•38m ago•0 comments

LMMS 1.3.0-alpha.2 Release (after 5 yrs of last release)

https://github.com/LMMS/lmms/releases/tag/v1.3.0-alpha.2
1•xiaoyu2006•43m ago•0 comments

I Run Grok Bot with BotOps

https://granda.org/en/2026/09/06/how-i-run-grok-bot/
3•granda•44m ago•0 comments

Joy and Curiosity #98

https://twitter.com/thorstenball/status/2096466015055953967
6•tosh•44m ago•0 comments

Ada: An open-source data analyst that tells you when its own forecast is useless

https://github.com/saineshnakra/automated-data-analyst
5•saineshnakra•45m ago•0 comments

An Empirical Study on Soundness Bugs in the Rust Compiler

https://arxiv.org/abs/2608.28713
1•rvz•49m ago•0 comments

Extract and Review Web Page Links Using a Bookmarklet

https://www.adamsdesk.com/posts/extract-review-web-page-links/
1•rdmuser•50m ago•0 comments

What "Decolonizing" Israel Looks Like. | Professor Noura Erakat - Full Interview

https://www.youtube.com/watch?v=TuBMKhObhgs
1•xbmcuser•52m ago•0 comments

Revise is the Figma of machine learning

https://www.revise.live/
3•Aadi_Ajmire•53m ago•0 comments

A volunteer stopped a backdoor from exposing Linux systems worldwide (2024)

https://www.theverge.com/2024/4/2/24119342/xz-utils-linux-backdoor-attempt
6•joebig•55m ago•0 comments

RecallDock

2•ashishmallur•57m 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/