frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Testing CIMD support across Anthropic's Claude products

https://leduccc.medium.com/testing-cimd-support-across-anthropics-claude-products-585366dbe089
1•mooreds•22s ago•0 comments

Build an SMS Auto-Reply Bot with the Telnyx Messaging API

https://telnyx.com/resources/sms-auto-reply-bot
1•harpreetseehra•2m ago•0 comments

Deadly abuse of mobilized men in Ukraine

https://eventsinukraine.substack.com/p/concentration-camp-army
1•rainworld•2m ago•1 comments

Ornith-1.0: Self-Scaffolding open source LLMs for Agentic Coding rivaling Claude

https://deep-reinforce.com/ornith_1_0.html
1•itvision•2m ago•0 comments

Volkswagen reportedly planning to axe 100k jobs

https://www.cnn.com/2026/06/26/economy/volkswagen-job-cuts
1•rawgabbit•5m ago•0 comments

Hey HN, I built local char an open source local AI platform like character AI

https://github.com/KishaWeb/local-char
1•KishaWeb•5m ago•0 comments

Show HN: I built a tool that matches Founders to VCs based on their pitch deck

https://investormatch.pro
2•MartinTobias•5m ago•0 comments

Sony's Clever but Flawed PlayStation Copy Protection [video]

https://www.youtube.com/watch?v=XUwSOfQ1D3c
1•tosh•6m ago•0 comments

Multi-harness session monitoring app for heavy AI users

https://cctop.app/
1•st0012•6m ago•1 comments

AI and Liability

https://www.schneier.com/blog/archives/2026/06/ai-and-liability.html
1•simonw•8m ago•0 comments

The Teen Believers in Christian Nationalism

https://www.newyorker.com/magazine/2026/06/29/the-teen-believers-in-a-christian-america
1•rbanffy•8m ago•0 comments

Automated My Homelab with the Bat Stack (Bootc, Ansible, Terraform/OpenTofu)

https://keijilohier.com/blogs/recreating-my-homelab-with-infrastructure-as-code/
1•Klohier•9m ago•0 comments

Climate.us launches independent website for trusted climate information

https://www.climate.us/news-features/feed/climateus-launches-independent-website-trusted-climate-...
1•ChrisArchitect•9m ago•0 comments

How much "Super Mario" per year?

https://sethmlarson.dev/super-mario-per-year
1•surprisetalk•9m ago•0 comments

Atari Video Music

https://www.generationamiga.com/2026/06/26/atari-video-music-the-1977-atari-console-that-turned-m...
1•Lio•10m ago•1 comments

AI inference is obviously profitable

https://www.seangoedecke.com/ai-inference-is-obviously-profitable/
2•medbar•10m ago•1 comments

Where the wild Discovery Loops are

https://blog.christianperone.com/2026/06/where-the-wild-discovery-loops-are/
1•perone•11m ago•0 comments

I Wish I Knew This Before Building an AI Second Brain

https://pub.towardsai.net/i-wish-i-knew-this-before-building-an-ai-second-brain-6179aa439aef
1•majidfekri•12m ago•0 comments

Skills vs. knowledge – formalizing how agents need both

https://blog.herlein.com/post/procedures-travel-knowledge-stays-home/
1•gherlein•13m ago•0 comments

NYC Off Tech

https://nycofftech.com
1•anandbaburajan•14m ago•1 comments

I Am Behind on C# 14 Features, and I Can't Prove It but Does It Matter?

https://medium.com/c-sharp-programming/i-am-behind-on-csharp-14-features-and-i-cant-prove-it-but-...
1•sukhpinder0804•15m ago•1 comments

Trump administration asks OpenAI to stagger release of GPT 5.6

https://old.reddit.com/r/OpenAI/comments/1ufnwkh/breaking_trump_administration_asks_openai_to/
1•samber•17m ago•0 comments

SpaceX's newest Starmind will make earth data centers obsolete

https://www.teslarati.com/spacex-starmind-ai-satellite-vs-starlink/
2•avgarrison•20m ago•1 comments

Show HN: ShotBrief – Daily photography briefings, should you shoot tomorrow?

https://shotbrief.app/
1•bigwindow1•21m ago•1 comments

Was GLM-5.2 trained on Opus 4.5 outputs?

https://1chat.com/research/was-glm-5-2-trained-on-outputs-from-opus-4-5
2•coolspot•21m ago•1 comments

Anthropic's Claude is winning over paid consumers, a market owned by ChatGPT

https://techcrunch.com/2026/06/25/anthropics-claude-is-winning-over-paid-consumers-a-market-owned...
2•sambcui•22m ago•2 comments

Foundation and Manifesto of Futurism (1909)

https://thelastpromontory.com/texts/foundation-and-manifesto-of-futurism/
1•Schlagbohrer•22m ago•0 comments

Ceiling Fans [video]

https://www.youtube.com/watch?v=_KWdCqpXB7A
3•tosh•24m ago•0 comments

Bureaucracy Is Eating the World

https://xn--gckvb8fzb.com/bureaucracy-is-eating-the-world/
2•surprisetalk•24m ago•0 comments

Adobe is buying Topaz Labs, the AI video enhancer

https://thenextweb.com/news/adobe-acquires-topaz-labs-ai-enhancement
2•microflash•25m 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/