frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Headlong: A Microharness for Persistent Agents

https://www.laude.org/updates/headlong-a-microharness-for-persistent-agents
1•lbw1215•8m ago•0 comments

AI algorithm for room temperature superconductor, candidate detected

https://zenodo.org/records/22073633
1•tsagaansuld•9m ago•0 comments

Ask HN: What's the current state of Quantum Vulnerability

1•vednig•9m ago•0 comments

'Normal' research trap limits EU scientific breakthroughs, disruptive innovation

https://www.researchgate.net/publication/408700233_A_%27normal%27_research_trap_limits_scientific...
1•musha68k•13m ago•0 comments

Decentralized Universal Computer

https://github.com/Skills03/universal-computer
3•RIshabh235•15m ago•1 comments

Ask HN: Good large format (>20 inches) touchscreen E-Paper display options?

4•foota•16m ago•0 comments

Self host sheets, docs, drive, email

1•smalltorch•17m ago•0 comments

Show HN: JSON Support – Free JSON and CSV to Excel Conversion Without Signups

https://www.jsonsupport.com/
1•Sharanxxxx•30m ago•0 comments

Have We Forgotten How to Design?

https://lmnt.me/blog/have-we-forgotten-how-to-design.html
3•maguay•32m ago•0 comments

Amazon EC2 Beta (20 years ago)

https://aws.amazon.com/blogs/aws/amazon_ec2_beta/
2•jeffbarr•34m ago•0 comments

Sleepwalker: Passive Backdoor with Its Own Command Language

https://r136a1.dev/2026/08/24/sleepwalker-a-passive-backdoor-with-its-own-command-language/
3•defrost•36m ago•0 comments

Show HN: Safepine OS – A Quantitative Finance Engine in D Language (LGPL)

https://safepine.co/
1•safepine•39m ago•0 comments

How to Design an Animation

https://kciter.so/posts/how-to-design-animation/en/
2•kciter•47m ago•1 comments

Show HN: How to Fish Wiki – Bosses, Fish and Guides

https://how-to-fish-game.wiki
1•light001•49m ago•0 comments

Right-Sized Language Model

https://joecooper.me/blog/cpuhaiku/
2•thatjoeoverthr•51m ago•0 comments

NYC's 911 System Had an Outage. Officials Kept Quiet About It

https://www.nytimes.com/2026/08/24/nyregion/mamdani-911-outage-nyc.html
4•ChrisArchitect•55m ago•2 comments

SiFive's First Server Platform

https://chipsandcheese.com/p/sifives-first-server-platform
2•geerlingguy•55m ago•0 comments

Nvidia Is Spending $6B to Build a Powerful U.S. Alternative to Chinese AI

https://www.wsj.com/tech/ai/nvidia-is-spending-6-billion-to-build-a-powerful-u-s-alternative-to-c...
4•Charles_Wdy•57m ago•0 comments

Show HN: Probability calibration that doesn't flatten your scores

https://github.com/finite-sample/calibre
1•neehao•59m ago•0 comments

The dementia vaccine some of us are taking without realising

https://www.sciencefocus.com/the-human-body/dementia-vaccine-taking-without-realising
4•bananamogul•1h ago•1 comments

Cursor Router chooses the right model for the task

https://cursor.com/blog/how-cursor-router-works
3•gmays•1h ago•0 comments

Thomson Reuters Standard for High Stakes AI

https://www.thomsonreuters.com/en-us/posts/innovation/thomson-reuters-standard-for-high-stakes-ai/
1•andsoitis•1h ago•0 comments

Don't take your subagent's word for it

1•Marvin_RunAI•1h ago•0 comments

IBM Z and LinuxONE Dual-ISA Processor and AI Acceleration at Hot Chips 2026

https://www.servethehome.com/ibm-z-and-linuxone-dual-isa-processor-and-ai-acceleration-at-hot-chi...
2•fork-bomber•1h ago•0 comments

Show HN: Aquifer – Admission control for bursty vLLM traffic

https://github.com/rjpruitt16/aquifer
1•rjpruitt16•1h ago•0 comments

FDA approves first Alzheimer's blood test for Americans as young as 40

https://newatlas.com/brain/alzheimers-dementia/fda-approves-first-alzheimers-blood-test/
2•Gaishan•1h ago•1 comments

We gave every agent a computer

https://onecli.sh/blog/why-we-gave-every-agent-a-computer
5•Jonathanfishner•1h ago•0 comments

Show HN: Hierarchical to-do calendar for solo founders

1•eltonlin•1h ago•1 comments

Canada to announce retaliatory tariffs as Trump tells leaders to 'fall in line'

https://apnews.com/article/canada-trade-trump-ontario-53c4f83c8365c14b372b314396ae8179
4•mikhael•1h ago•0 comments

AliExpress uses Inaudible sounds to fingerprint browsers

https://arstechnica.com/security/2026/08/aliexpress-caught-fingerprinting-visitors-after-sending-...
2•Gaishan•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/