frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

You Can Game AI Peer Review with Presentation-Only Revisions

https://arxiv.org/abs/2606.13044
1•ilreb•7s ago•0 comments

Learning to Measure Time in Love and Loss

https://www.nytimes.com/2013/12/29/fashion/learning-to-measure-time-in-love-and-loss.html
1•ChaseRensberger•3m ago•1 comments

Choose a Claude Plan

https://support.claude.com/en/articles/11049762-choose-a-claude-plan
1•teleforce•5m ago•0 comments

The MDN MCP Server

https://developer.mozilla.org/en-US/blog/introducing-mdn-mcp-server/
1•soheilpro•6m ago•0 comments

UFC to pay White House fighters in crypto issued by Trump company

https://www.theguardian.com/us-news/2026/jun/14/white-house-ufc-fighters-crypto
2•krambs•8m ago•0 comments

Teaching Machine Learning to Software Engineers

https://arxiv.org/abs/2606.14618
1•ilreb•11m ago•0 comments

Using OSINT to find the real One Piece ocean drop location [video]

https://www.youtube.com/watch?v=eY-W9gmwxhg
1•phyzix5761•14m ago•0 comments

Nvidia Is the Federal Reserve of AI

https://ramansharma.substack.com/p/nvidia-is-the-federal-reserve-of
1•intrepidsoldier•21m ago•0 comments

Show HN: Dream Server – Turn your PC, Mac, or Linux box into a private AI server

https://github.com/Light-Heart-Labs/DreamServer
1•dreamserver•21m ago•0 comments

Horizons JPL Solar System Data Demo and NASA DSN Updates: Datastar, Common Lisp

https://horizons.lambda-combine.net/
1•adityaathalye•25m ago•0 comments

Inside the 24 hours that led to pulling Fable 5

https://www.businessinsider.com/why-white-house-ordered-export-controls-anthropic-mythos-fable-20...
3•twostorytower•33m ago•0 comments

Ask HN: What did you think of Apple's announcements around their 27 OS releases?

1•Austin_Conlon•40m ago•0 comments

Enterprise AI Agents Are Leaving the Server

https://focused.io/lab/enterprise-ai-agents-are-leaving-the-server
1•mooreds•44m ago•0 comments

British forces intercept Russian shadow fleet tanker in the Channel

https://www.reuters.com/world/europe/uks-starmer-says-armed-forces-intercepted-russian-shadow-fle...
2•MilnerRoute•44m ago•0 comments

I built a defense procurement marketplace – free for vendors

https://birka.ai
1•jaywashere•45m ago•0 comments

Agentic Credit Card MCP

https://robinhood.com/us/en/support/articles/agentic-credit-card/
1•barbacoa•58m ago•0 comments

Pyhn 0.4.0: Hacker News in your terminal

https://github.com/toxinu/pyhn
3•toxinu•1h ago•0 comments

Surge in scams as fraudsters use AI to target people

https://www.bbc.com/news/articles/cwykp9ygxlvo
3•1659447091•1h ago•0 comments

Monitoring LLM Inference with Prometheus and Grafana (vLLM, TGI, Llama.cpp)

https://www.glukhov.org/observability/monitoring-llm-inference-prometheus-grafana/
1•nryoo•1h ago•0 comments

Even More Batteries Included with Emacs

https://karthinks.com/software/even-more-batteries-included-with-emacs/
9•signa11•1h ago•0 comments

The next frontier of innovation is coming back to the physical world

https://productnow.ai/blogs/a-dose-of-hope-for-the-future
1•kadhirvelm•1h ago•0 comments

Smashed Toilet Phone Web Server

https://www.offthebricks.com/articles/smashed-toilet-phone-web-server
2•mircerlancerous•1h ago•0 comments

DBOS Network Sensing: A Web Services Approach to Collaborative Awareness

https://arxiv.org/abs/2509.09898
2•teleforce•1h ago•0 comments

Decouple the Agent: Why Prompts, Tools, and Models Don't Belong in Your Client

https://vivgrid.com/decoupling-prompts-tools-models-from-agent-client
6•fanweixiao•1h ago•0 comments

AI Has Amnesia. Here's Every System Built to Fix It

https://medium.com/@alanayalag/your-ai-has-amnesia-heres-every-system-built-to-fix-it-ad7dee117a75
5•AlanAAG•1h ago•1 comments

Ask HN: How do you design CLIs for agents?

2•vokneruk•1h ago•0 comments

Lsp85 – an lsp for the Intel 8085 assembly

2•irhs•1h ago•0 comments

Show HN: Go-To-Market for Engineers article series

https://supramono.com/blog/go-to-market-for-engineers-distribution-is-the-product/
4•supramono•1h ago•0 comments

Netlify Drop

https://app.netlify.com/drop
2•skogstokig•1h ago•0 comments

Tech's Next IPO Wave Promises a Charitable Windfall

https://www.wsj.com/finance/investing/techs-next-ipo-wave-promises-a-charitable-windfall-885a1e74
3•builtbystef•1h 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/