frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Papercrane-CLI – a BI tool built for Claude Code

https://papercrane.ai/blog/today-im-launching-papercrane-cli-a-bi-tool-built-for-claude-code
1•timliu9•46s ago•0 comments

You paid me, a long-time Linux user, to use Windows 11 exclusively for a month

https://www.osnews.com/story/145459/you-paid-me-a-long-time-linux-user-to-use-windows-11-exclusiv...
1•speckx•1m ago•0 comments

Meta's 'Super Sensing' Prototype Glasses Quietly Record Everything

https://www.macrumors.com/2026/07/09/meta-super-sensing-glasses-record-everything/
2•Brajeshwar•2m ago•0 comments

Prose Isn't Policy: Stop Writing Claude.md Rules

https://zernie.com/blog/stop-writing-claude-md-rules/
1•zernie•4m ago•0 comments

Croatia's Infobip acquires SocketLabs to expand enterprise email infrastructure

https://seenews.com/news/croatias-infobip-acquires-socketlabs-to-expand-enterprise-email-infrastr...
1•taubek•5m ago•0 comments

Launch HN: Context.dev (YC S26) – API to get structured data from any website

https://www.context.dev
3•TheYahiaBakour•5m ago•0 comments

Hy3

https://hy.tencent.com/research/hy3
1•andai•6m ago•0 comments

How to Set Up DKIM: From Key Generation to a Passing DMARC Report

https://dmarcguard.io/blog/dkim-setup-guide/
1•meysamazad•7m ago•0 comments

A Summer Creativity Experiment

https://brainbaking.com/post/2026/07/a-summer-creativity-experiment/
1•meysamazad•7m ago•0 comments

How to Write an Email

https://blog.dannycastonguay.com/how-to-write-an-email/
1•speckx•7m ago•0 comments

Show HN: Strata – guess the city from its real 3D terrain and bathymetry

https://flightq.app/strata
1•skyq•7m ago•0 comments

Show HN: ADarkTerminal

https://adarkterminal.electricsheep.games
1•rrotaru•7m ago•0 comments

Show HN: Blocks.ai – control plane and network layer for agents

https://blocks.ai
1•BlocksAI•8m ago•0 comments

A Possible Future for Damn Interesting

https://www.damninteresting.com/a-possible-future/
1•mzur•9m ago•0 comments

Show HN: I wrote a Libc-free AOT systems language in JavaScript with no VM

https://github.com/DO-SAY-GO/freelang
1•keepamovin•9m ago•0 comments

Good Pain

https://html-chunder.neocities.org/posts/good-pain/
1•meysamazad•9m ago•0 comments

Motion-first robotic action segmentation beats vision-first SOTA

https://www.nomadicai.com/blog/action-segmentation-benchmark
1•simbasdad•11m ago•0 comments

Deadly bacteria found in city's wastewater system tied to Meta data center

https://www.dailymail.com/sciencetech/article-15962981/mark-zuckerberg-meta-wyoming-ai-data-cente...
5•cdrnsf•13m ago•0 comments

Acronym Fatigue Series part 1: CAP, ACID and friends

https://devz.cl/posts/acronym-fatigue-series-cap-acid-etl-elt/
2•DanielVZ•13m ago•0 comments

New York Times and Other Publishers Ask Court to Penalize OpenAI

https://www.nytimes.com/2026/07/09/technology/new-york-times-openai.html
1•donohoe•14m ago•0 comments

Opinionated and Easy Pi.dev Configuration

https://lazypi.org/
2•lwhsiao•14m ago•0 comments

Coordination Without Consolidation: On Systems of States [pdf]

https://isonomiaquarterly.com/wp-content/uploads/2026/06/iq-4.2-summer-2026-macdonald-coordinatio...
1•brandonlc•15m ago•0 comments

Will We Ever Find Alien Civilizations?

https://www.quantamagazine.org/will-we-ever-find-alien-civilizations-20260709/
2•worldvoyageur•16m ago•1 comments

Stop Using reCAPTCHA – It's Not a Real Captcha

https://na0341.bearblog.dev/info/stop-using-recaptcha/
1•speckx•17m ago•0 comments

Dmars – A modern Core Wars toolchain

https://dmars.drpz.xyz/
1•holliplex•17m ago•1 comments

Childhood stunting fell dramatically over the 20th century

https://ourworldindata.org/childhood-stunting-fell-dramatically-over-the-20th-century
1•surprisetalk•18m ago•0 comments

Show HN: Sticky notes that disappear from screen sharing

https://www.noticky.app/en
1•leotryhard•21m ago•0 comments

Show HN: LastShelf – an emergency map of your family's documents bills& contacts

https://www.lastshelf.ai/
7•sbrown12•21m ago•1 comments

The Shifting Landscape of Headquarters Relocations: 2026 Update

https://www.cbre.com/insights/viewpoints/business-insights-the-shifting-landscape-of-headquarters...
1•throwoutway•21m ago•0 comments

Bytechef open source platform for AI agent orchestration and workflow automation

https://github.com/bytechefhq/bytechef/tree/master
1•taubek•21m 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/