frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why AI code review is not enough

https://blog.codacy.com/ai-code-review-is-not-enough-how-engineering-leaders-should-gate-ai-gener...
1•ARayOutOfBounds•35s ago•1 comments

8Bit Computers

https://8bit.gioorgi.com//
1•daitangio•1m ago•1 comments

GPS Map Camera: Timestamp

https://play.google.com/store/apps/details?id=com.gpsmapcamera.gpscameratimestamp.photo.video&hl=...
1•karlnelsone•2m ago•0 comments

ICD-10 chapters and code letters

https://www.johndcook.com/blog/2026/07/14/icd-10-chapters-letters/
1•ibobev•3m ago•0 comments

Thermodynamic Computers Go with the (Energy) Flow

https://www.quantamagazine.org/thermodynamic-computers-go-with-the-energy-flow-20260715/
1•ibobev•4m ago•0 comments

Detecting Full Table Scans with SQLite

https://tenderlovemaking.com/2026/07/15/detecting-full-table-scans-with-sqlite/
1•ibobev•4m ago•0 comments

Apple in talks with PrismML, which shrinks AI models up to 15x to run on iPhones

https://www.cnbc.com/2026/07/14/apple-prismml-ai-compression-iphone.html
1•mgh2•5m ago•0 comments

Men Without Guns- Tribute to Larry McMurtry

https://religiondispatches.org/2021/05/03/men-without-guns-tribute-larry-mcmurtry
1•oliculipolicula•6m ago•0 comments

Uber Agrees to Buy Delivery Hero in $14.8 Billion Deal

https://www.bloomberg.com/news/articles/2026-07-16/uber-agrees-to-buy-delivery-hero-as-food-secto...
1•thm•12m ago•0 comments

AWS CloudFront Is Down

https://health.aws.amazon.com/health/status?eventID=arn:aws:health:global::event/CLOUDFRONT/AWS_C...
6•komape•19m ago•1 comments

Atelier, an open source local AI desktop app for everyone

https://open-atelier.app
1•acleefr•20m ago•0 comments

Nervé: Some Things Here Are Not Right

https://www.royalroad.com/fiction/103797/the-journals-of-noiruzi-sangsung/chapter/2485794/nerve-s...
1•bryanrasmussen•20m ago•0 comments

WorkOS Having a Major Outage

https://status.workos.com
3•weli•22m ago•1 comments

Show HN: LHIC – Deterministic browser automation without an LLM in the fast path

1•pinyencheng•22m ago•0 comments

Rtings Is Now Paywalled

https://www.rtings.com/company/revamping-our-membership-program
1•ivanjermakov•25m ago•0 comments

Engineering Leader's Guide to Outcome-Based Pricing

https://www.thewitn.com/blog/an-engineering-leaders-guide-to-implementing-outcome-based-pricing
1•georgekats•26m ago•0 comments

OpenInterstate – Canonicalized U.S. Interstate Highway Data

https://tomjohnell.com/openinterstate-canonicalized-us-interstate-highway-data/
1•dnw•26m ago•0 comments

How many people still write code by hand?

1•intenex•29m ago•11 comments

Horse – Fast, Opinionated, Minimalist Web Framework for Delphi and Lazarus

https://github.com/HashLoad/horse
2•TheWiggles•30m ago•0 comments

Reinventing Daydreaming Machines

https://zzbbyy.substack.com/p/reinventing-daydreaming-machines
1•nairboon•31m ago•0 comments

Ask HN: How do you handle OSS project with private artifacts?

1•mrsalty•33m ago•0 comments

From Modern Data Stack to Agentic Data Stack

https://seatunnel.apache.org/blog/modern-data-stack-to-agentic-data-stack/
1•luckypeter•34m ago•0 comments

We Rebuilt a Securities Firm's FICC Data Stack – Queries Got 10x Faster

https://medium.com/@DolphinDB_Inc/we-rebuilt-a-securities-firms-ficc-data-stack-queries-got-10x-f...
3•yiweileng•35m ago•0 comments

Is Anthropology Hopelessly Politicized?

https://www.chronicle.com/article/is-anthropology-hopelessly-politicized
1•Michelangelo11•35m ago•0 comments

Native Inotify in FreeBSD

https://klarasystems.com/articles/native-inotify-in-freebsd/
2•fanf2•42m ago•1 comments

HuggingFace is down due to global AWS outage

https://status.huggingface.co/
3•armcat•43m ago•1 comments

Spotify removes 75 million "AI slop" songs

https://www.abc.net.au/news/2026-07-16/spotify-making-ai-music-easier-to-detect/106919814
2•lexandstuff•45m ago•0 comments

A free, hands-on cybersecurity foundations certificate

https://hackviser.com/core
1•sadican•46m ago•1 comments

At DocuWriter.ai, the documentation will make you smile:)

https://www.docuwriter.ai/
1•magarrent•46m ago•0 comments

Tell HN: CloudFront VPC Origins is down

7•cyounkins•48m ago•2 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/