frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: TogetLink – High-intent professional network built with Next.js

https://togetlink.com/en
1•Aeternexus•43s ago•0 comments

Meta forced engineers into AI training. Now it's giving some a way out

https://www.businessinsider.com/meta-lets-engineers-leave-ai-training-unit-after-mass-reassignmen...
1•samaysharma•44s ago•0 comments

Show HN: Top' for Redis Using eBPF

https://github.com/yeet-src/redissnoop
2•ok_major_9889•1m ago•0 comments

Direct I/O for Cassandra Compaction: Cutting p99 Read Latency by 5x

https://lightfoot.dev/direct-i-o-for-cassandra-compaction-cutting-p99-read-latency-by-5x/
1•tanelpoder•1m ago•0 comments

Repositioning Retail for the AI Era

https://www.technologyreview.com/2026/06/25/1137848/repositioning-retail-for-the-ai-era/
1•joozio•2m ago•0 comments

The State of the AI Economy

https://www.exponentialview.co/p/the-state-of-the-ai-economy
1•hunglee2•3m ago•0 comments

Updated Xbox Console Prices

https://news.xbox.com/en-us/2026/06/25/xbox-console-price-update/
1•0xedb•3m ago•0 comments

Cellebrite said it cut off Russia, but Russia used its tools anyway

https://techcrunch.com/2026/06/25/cellebrite-said-it-cut-off-russia-but-russia-used-is-tools-anyway/
1•Brajeshwar•4m ago•0 comments

Show HN: Better PDF Presentations (+Typst)

https://presio.xyz
1•armstrongb•6m ago•0 comments

How we made WINDOW JOIN parallel and vectorized

https://questdb.com/blog/window-join-parallel-vectorized/
1•tosh•7m ago•0 comments

AOL was down (1996) (2026)

https://ngrok.com/blog/aol-was-down-1996
1•birdculture•8m ago•0 comments

Carl de Marcken: Inside Orbitz (2001)

https://www.paulgraham.com/carl.html
1•wglb•8m ago•0 comments

Genetic diversity of late Neanderthals in northwestern Europe

https://www.nature.com/articles/s41586-026-10625-1
1•Jimmc414•8m ago•0 comments

The AI Memory Problem Nobody Is Incentivized to Solve

https://www.indiehackers.com/post/the-ai-memory-problem-nobody-is-incentivized-to-solve-9c294bdcaa
1•metaopai•9m ago•0 comments

Every Homo Naledi we know of is female, and the implications are fascinating

https://arstechnica.com/science/2026/06/every-homo-naledi-we-know-of-is-female-and-the-implicatio...
1•Jimmc414•10m ago•0 comments

New credit card sized tracking label could help solve rising cargo theft

https://techcrunch.com/2026/06/24/this-new-tracking-label-could-help-solve-cargo-theft/
1•Vaslo•11m ago•0 comments

The U.S. Strongarms Polestar Out of the American EV Market

https://insideevs.com/news/799796/polestar-exits-us-market-authorization-denied/
2•testing22321•11m ago•1 comments

Show HN: Engineer AI system full DataIQ pipeline choice u model Start training

https://zunagen.com/
1•Ouasif•12m ago•0 comments

LAUSD bans screen time before second grade

https://www.latimes.com/california/story/2026-06-23/lausd-strict-school-screen-time-limits
1•cfowles•13m ago•0 comments

First-ever Code Red alert issued for heat in the Netherlands

https://nltimes.nl/2026/06/25/first-ever-code-red-alert-issued-heat-netherlands-40degc-tomorrow
2•bill38•15m ago•0 comments

DuckDB isn't just fast (2024)

https://csvbase.com/blog/6
2•tosh•15m ago•0 comments

Frankenstein Was a Warning, Not a Blueprint for AI

https://ideatrash.net/2026/04/frankenstein-was-a-warning-not-a-blueprint-for-ai.html
2•speckx•16m ago•0 comments

Framework's 10G Ethernet module exposes USB-C's complexity

https://www.jeffgeerling.com/blog/2026/framework-10g-ethernet-module-usb-c-complexity/
1•Brajeshwar•16m ago•0 comments

Show HN: TreasuryBench – an open benchmark for personal-finance AI advice

https://github.com/Treasury-Technologies-Inc/treasurybench
1•juneadkhan•19m ago•0 comments

Codex Security Plugin Quickstart

https://developers.openai.com/codex/security/plugin
4•vantareed•20m ago•0 comments

Goalkeepers beware: Trionda World Cup ball hits 'crisis' point at certain speed

https://www.theguardian.com/football/2026/jun/25/goalkeepers-beware-trionda-world-cup-ball-hits-c...
1•prmph•20m ago•1 comments

Bankruptcy Capitals of America: Where US Small Businesses Are Closing Fastest

https://samslist.com/blog/bankruptcy-capitals-of-america
2•eatonphil•21m ago•0 comments

Of Cats and Women

https://anthrozoology.acadiasi.org/wp-content/uploads/2022/11/Anthrozoology.pdf#page=159
1•jruohonen•21m ago•0 comments

The KIDS Act Would Require Age Checks to Get Online

https://www.eff.org/deeplinks/2026/06/kids-act-would-require-age-checks-get-online
1•iamnothere•22m ago•0 comments

British Police Built a Sprawling Crime-Prediction Machine

https://www.wired.com/story/british-police-built-a-sprawling-crime-prediction-machine-some-result...
3•g0xA52A2A•22m 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/