frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

3D Printing Agentic Automation

https://praveenvijayan.substack.com/p/3d-print-automation-text-a-link-get
1•praveenvijayan•2m ago•0 comments

Ask HN: Dear Anthropic, can we please have thought traces back?

1•exabrial•3m ago•0 comments

Where the Automation Has to Stop

https://yusufaytas.com/where-the-automation-has-to-stop
7•montrealish•3m ago•0 comments

The 'dean of valuation' says pain is headed for more AI companies soon

https://www.businessinsider.com/ai-stock-market-correction-dean-of-valuation-aswath-damodaran-2026-8
1•mapping365•4m ago•0 comments

Personal computer is not that personal

https://prahaladhchandrahasan.github.io/thoughts/your-personal-computer-is-not-that-personal/
1•pdawg0518•5m ago•0 comments

Uber's Autonomous Vehicle Strategy: Slow Their Adoption

https://www.wired.com/story/ubers-autonomous-vehicle-strategy-slow-their-adoption/
1•dmitriy_ko•7m ago•0 comments

Should designers publicly share killed or speculative work?

https://benbarry.com/writing/should-designers-publicly-share-killed-or-speculative-work
1•herbertl•8m ago•0 comments

S

2•Sidhant_ch•9m ago•1 comments

Show HN: A search engine for VPS servers with an automatic crawler pipeline

https://vpspricetracker.com
1•davidebaldini•11m ago•0 comments

Codes, Chess and Kubrick: The Life of Jack Good – GCHQ

https://www.gchq.gov.uk/information/codes-chess-and-kubrick-life-jack-good
1•rbanffy•11m ago•0 comments

Data centers have a politics problem

https://www.politico.com/news/2026/08/01/data-centers-have-a-politics-problem-and-industry-knows-...
1•mapping365•12m ago•0 comments

Success of New Federal Housing Law Rests on States and Localities

https://ifp.org/the-success-of-the-new-federal-housing-law-now-rests-on-states-and-localities/
3•atlasunshrugged•12m ago•0 comments

Count Binface: Britain's 'joke' election candidates should be taken seriously

https://theconversation.com/count-binface-why-britains-joke-election-candidates-deserve-to-be-tak...
3•samizdis•12m ago•0 comments

Resistance grows nationwide against AI data center boom

https://www.cbsnews.com/video/resistance-grows-nationwide-against-ai-data-center-boom/
4•mapping365•13m ago•0 comments

An AI voice agent running locally on a $50 Arduino uno Q

https://projecthub.arduino.cc/neelbuilds/build-a-voice-based-kiosk-for-retail-store-using-moorche...
3•supportm•13m ago•0 comments

Could You Still Be "You" Without a Single Memory?

https://comuniq.xyz/post?t=1501
1•01-_-•13m ago•0 comments

Show HN: Mcpscore – validate any MCP server compliance with a new MCP version

https://github.com/mcp-box/mcpscore
1•alex_akimov•13m ago•0 comments

Atomic Vibe Coding

https://unengineered.substack.com/p/atomic-vibe-coding
1•josharsh•15m ago•2 comments

GPT-5.6 fuses frontier intelligence with frontier efficiency

https://openai.com/index/gpt-5-6-frontier-intelligence-efficiency/
1•gmays•15m ago•0 comments

How the Sony Walkman Failed to Destroy Civilization

https://www.tokyoweekender.com/entertainment/tech-trends/sony-walkman-history-moral-panic/
2•ecliptik•16m ago•0 comments

Tokenpolitik: The new geopolitics of artificial intelligence

https://decode39.com/16003/tokenpolitik-the-new-geopolitics-of-artificial-intelligence/
2•huna_huna•16m ago•0 comments

Third-party cyber evaluations involving OpenAI models

https://openai.com/index/third-party-cyber-evaluations-involving-openai-models/
2•glub•17m ago•0 comments

Oxide RFD 284: Loading the Host Operating System

https://rfd.shared.oxide.computer/rfd/0284
2•tosh•17m ago•1 comments

Ask HN: What if there was an 8th day of the week?

2•cyanregiment•17m ago•0 comments

The Budget Behind Your Favorite Songs

https://monictheory.com/articles/the-hidden-budget-behind-your-favorite-songs
1•song_synth•18m ago•0 comments

Incident Report: unsanctioned agent behaviour during cyber testing

https://www.aisi.gov.uk/blog/incident-report-unsanctioned-agent-behaviour-during-cyber-testing
2•Philpax•18m ago•0 comments

Japan's superior alternative to Paxlovid called Xocova, finally available in US

https://www.shionogi.com/global/en/news/2026/07/20260729.html
3•ck2•19m ago•1 comments

Thanks FedEx, This Is Why We Keep Getting Phished (2024)

https://www.troyhunt.com/thanks-fedex-this-is-why-we-keep-getting-phished/
26•stymaar•21m ago•0 comments

Typing Tests for Programmers

https://software-typing.vercel.app/typing
2•joseph-bucholtz•21m ago•1 comments

Harness Archaeology

https://av.codes/blog/agentic-harness-archaeology/
1•everlier•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/