frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Drivers, Dynamics, and Applications of the Pro-Russia Influence Ecosystem

https://cloud.google.com/blog/topics/threat-intelligence/pro-russia-influence-ecosystem/
1•hacb•2m ago•0 comments

Verification, not generation, is the bottleneck in AI coding

https://spark.temrel.com/p/the-audit-tax-why-your-agent-made-you-slower-d4e0
1•bentemrel•2m ago•0 comments

American Pride Falls to 25-Year Record Low

https://news.gallup.com/poll/711938/american-pride-falls-year-record-low.aspx
2•giuliomagnifico•5m ago•0 comments

Show HN: I indexed 37h of my videos using an RTX 4090 and local ML models in 24h

1•iliashad•8m ago•1 comments

A single MR with 52k commits had stalled GitLab CI

https://gitlab.com/gitlab-com/gl-infra/production/-/work_items/22412
2•ramon156•10m ago•0 comments

GitLab CI Is Down

https://status.gitlab.com/
3•absqueued•10m ago•1 comments

VPSMaxxing – Migrate Your Codex, Claude Code and Other Agents to a VPS

https://github.com/Kuberwastaken/VPSmaxxing
1•kuberwastaken•11m ago•1 comments

The emergence of human influence on the ozone layer by the 1960s

https://www.pnas.org/doi/10.1073/pnas.2608286123
1•croes•12m ago•0 comments

Why does AI still forget what your codebase is "for"?

https://www.reddit.com/r/Brunelly/s/UdTgItmmlS
1•RihabAI•13m ago•1 comments

On Lazy Secrets Management

https://radekmie.dev/blog/on-lazy-secrets-management/
1•thunderbong•18m ago•0 comments

Show HN: ZenLocks – A privacy-first, subscription-free iOS screen time blocker

https://zenlocks.haogre.com
1•haogre•19m ago•0 comments

I found a vulnerability in an IRS authorized e-file vendor's app. What's next?

2•kevinminehart•21m ago•0 comments

TheoremGraph: Search 18M+ Mathematical Dependencies

https://www.theoremsearch.com/theorem-graph
1•ilreb•21m ago•0 comments

AMD Versal Architecture and Product Data Sheet (New Premium Series Gen 2)

https://docs.amd.com/v/u/en-US/ds950-versal-overview
2•oneofthose•23m ago•2 comments

Herdr: One terminal for he whole herd

https://herdr.dev/
2•rldjbpin•24m ago•0 comments

Japan has 72 micro-seasons. In 2021 it stopped officially watching most of them

https://jivx.com/microseasons
3•momentmaker•27m ago•0 comments

Hunting a 16-year-old SQLite WAL bug with TLA+

https://ubuntu.com/blog/hunting-a-16-year-old-sqlite-bug-with-tla-is-dqlite-affected
2•peterparker204•29m ago•1 comments

Tokki – language learning app because Duolingo is useless

https://apps.apple.com/us/app/tokki-chat-learn/id6768467025
1•kozielgpc•29m ago•1 comments

Claude Code Is Quietly Fingerprinting China-Linked API Routers

https://www.vincentschmalbach.com/claude-code-china-router-fingerprint/
7•vincent_s•29m ago•0 comments

6 Months of Rift

https://monster0506.dev/blog/6-months-of-rift
1•Monster0506•32m ago•0 comments

I built a browser video editor where you can verify no footage is uploaded

https://Aethercut.app
1•AetherCut•33m ago•0 comments

Should every baby's DNA be sequenced?

https://www.economist.com/science-and-technology/2026/06/29/should-every-babys-dna-be-sequenced
10•nedruod•33m ago•6 comments

Coding with DeepSeek 4 on a 128GB MacBook Pro

https://ronreiter.com/posts/running-deepseek-v4-flash-locally/
2•ronreiter•33m ago•0 comments

We built the hackathon idea we gave up on in 2011

2•EngineeringStuf•34m ago•0 comments

Building tech in the secret R&D hub

https://www.technologyreview.com/2026/06/30/1139661/building-tech-in-the-worlds-secret-rd-hub/
1•joozio•34m ago•0 comments

Sony erases digital content from libraries; reminded we don't own what we buy

https://arstechnica.com/gadgets/2026/06/sony-erases-digital-content-from-libraries-were-reminded-...
34•pseudolus•34m ago•7 comments

Digiplot – automatically extract data from chart images with AI

https://digiplot.ai/
1•Jeremy_DH•35m ago•1 comments

Microsoft builds a bouncer to keep bots out of Teams meetings

https://www.theregister.com/software/2026/06/30/microsoft-builds-a-bouncer-to-keep-bots-out-of-te...
3•LorenDB•37m ago•0 comments

All you need is PostgreSQL

https://ebellani.github.io/blog/2026/all-you-need-is-postgresql/
1•schonfinkel•38m ago•0 comments

The .join() that should be a bug

https://kronotop.com/blog/the-join-that-should-be-a-bug/
1•mastabadtomm•40m 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/