frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Taepdf – Turn your live DOM into a pixel-perfect PDF

https://github.com/silly-tae/taepdf
1•silly-tae•2m ago•0 comments

DOGE is done. What happened to its records?

https://www.ms.now/opinion/doge-government-efficiency-records-job-cuts-elon-musk-foia
2•ndsipa_pomu•2m ago•0 comments

We Must Act Now – A Statement on AI's Transformation of the Economy

https://www.wemustactnow.ai
1•tevlon•2m ago•0 comments

Go-Flavored Concurrency in C

https://antonz.org/concurrency-in-c/
1•ibobev•2m ago•0 comments

Show HN: Jacquard, a programming language for AI-written, human-reviewed code

https://github.com/jbwinters/jacquard-lang
1•jbwinters•2m ago•0 comments

An Alternative to Webmentions for the Emacs Carnival

https://en.andros.dev/blog/a70bbaf3/an-alternative-to-webmentions-for-the-emacs-carnival/
1•ibobev•3m ago•0 comments

Scaling Law for Quantization-Aware Training

https://arxiv.org/abs/2505.14302
1•JumpCrisscross•3m ago•0 comments

A bad X is better than none

https://en.andros.dev/blog/cdc5a0bc/a-bad-x-is-better-than-none/
1•ibobev•3m ago•0 comments

An army of cheap doers (and why we'll all end up being managers)

https://matteoforte.com/an-army-of-cheap-doers/
1•matteoforte•4m ago•0 comments

Samsung's Texas fab enters production for Tesla's AI5 chip on 2nm

https://electrek.co/2026/07/13/samsung-taylor-fab-tesla-ai5-chip-2nm/
1•Brajeshwar•4m ago•0 comments

Perplexity came dead last after testing agentic search tools 3,537 times

https://agenticresourceradar.com/
2•SmithersBot•5m ago•1 comments

Show HN: HTML, CSS and JavaScript in the Terminal

https://duetbrowser.com/krnl-ss-redirect?k2vh
1•keepamovin•6m ago•0 comments

Heat domes impeding radio and other signals in US Midwest

https://www.theguardian.com/us-news/2026/jul/13/heat-dome-radio-signals-us-midwest
3•howard941•6m ago•0 comments

Impossible to Install a ChatGPT Plugin with Adblock On

1•piotrgrudzien•7m ago•0 comments

Would you use AI to discover investment opportunities?

https://labhtark.com/ai/
1•LabhTark•8m ago•0 comments

Move Over Oppenheimer – climate scientists still minimising how bad things are

https://jacksondamian.substack.com/p/move-over-oppenheimer
1•simmerup•9m ago•0 comments

I Squeezed 31.9 TFLOPS out of an RTX 4060, Beating cuBLAS by 14%

https://github.com/houslast3/How-I-Squeezed-31.9-TFLOPS-out-of-an-RTX-4060-Beating-cuBLAS-by-14-
1•houslast•11m ago•0 comments

20problems.com – Daily Math Quiz

https://www.20problems.com/
2•BrodieH•13m ago•0 comments

Silvia – AI CFO built for serious investors

https://www.cfosilvia.com/
2•root-parent•13m ago•0 comments

Show HN: GraphCompose 2.0 – Java DSL for business PDFs, now split into modules

https://github.com/DemchaAV/GraphCompose
2•demchaav•13m ago•0 comments

Detection of a four-carbon sugar in interstellar space

https://www.nature.com/articles/s41550-026-02905-7
3•pontsprit•14m ago•0 comments

A/B Test results: Trying different homepage heroes got us 2.6x sign-ups

1•Salim99•15m ago•0 comments

Show HN: Overplane: Containers and formal verification for AI code

https://www.overplane.dev/
2•mayank•15m ago•1 comments

Show HN: S4Ready – Deduplicate and fix SAP data before an S/4HANA migration

https://s4ready.fenikstech.ai/
1•ceyhunkazel•16m ago•0 comments

Engineering High-Performance Parsers with Data-Oriented Design

https://www.arshad.fyi/writings/engineering-high-performance-parsers
1•klaussilveira•16m ago•0 comments

Trump invested crypto gains in stocks and bonds, filings show

https://www.reuters.com/legal/government/trump-invested-crypto-gains-stocks-bonds-filings-show-20...
2•tartoran•17m ago•2 comments

Show HN: Display Excel files in your web app

https://spreadsheetpreview.com
1•robbiejs•18m ago•1 comments

GPT 5.6 sets new record on proofreading benchmark

https://twitter.com/tmuxvim/status/2076692926059499646
1•artursapek•18m ago•0 comments

Elon Musk and Sam Altman spar on X after Apple files OpenAI lawsuit

https://www.cnbc.com/2026/07/12/elon-musk-and-sam-altman-spar-.html
1•root-parent•19m ago•0 comments

The Vulkan Kitchen: A Visual Tour of the Graphics Pipeline

https://fremaconsulting.ch/blog/vulkan
1•tohms•20m 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/