frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Manus AI credit optimizer – 47% savings from analyzing 200 tasks

https://github.com/rafsilva85/credit-optimizer-v5
1•creditopt_dev•9s ago•0 comments

Geomancy

https://en.wikipedia.org/wiki/Geomancy
1•marysminefnuf•29s ago•0 comments

Spain's Wind-Farm Bargain

https://www.theatlantic.com/science/2026/03/spain-wind-power/686311/
1•a_w•1m ago•0 comments

Telegram Finance Bot Powered by OpenClaw

https://github.com/bisbeebucky/ai-bot
1•bisbeebucky•2m ago•1 comments

Asus Executive Says MacBook Neo Is 'Shock' to PC Industry

https://www.macrumors.com/2026/03/10/asus-executive-says-macbook-neo-is-a-shock/
3•alwillis•6m ago•0 comments

The Elders (Organization)

https://en.wikipedia.org/wiki/The_Elders_(organization)
1•beatthatflight•6m ago•0 comments

Show HN: OpenClaw Plugin for Claude Code and Codex Orchestration

https://github.com/goldmar/openclaw-code-agent
1•goldmar•8m ago•0 comments

BunnyCDN silently breaks Mastodon request signing, preventing DDoS protection

https://social.mikutter.hachune.net/@mok/116208294430782702
1•mystraline•9m ago•0 comments

MetaLayer –Compare answers of multiple AI models and generate a consensus result

https://metalayerlabs.com
1•PaulmHope•12m ago•1 comments

Bondi, Miller, Rubio, Noem, Hegseth Have Relocated to Military Bases (NYT)

https://www.nytimes.com/2026/03/10/us/politics/bondi-military-housing-threats.html
3•tbreschi•18m ago•2 comments

Eric Schmidt: China Could Dominate the Physical AI Future

https://time.com/7382151/china-dominates-the-physical-ai-race/
2•Anon84•22m ago•0 comments

Ask HN: How do you prevent MCP agents from looping in production?

3•aethis•23m ago•0 comments

Iran's Control of Hormuz Means It's Exporting More Oil Today Than Before the War

https://www.wsj.com/world/middle-east/irans-control-of-hormuz-means-its-exporting-more-oil-today-...
1•JumpCrisscross•29m ago•0 comments

Rlclaw autonomous ML research companion

https://github.com/photon-cat/rlclaw
2•photoncat•31m ago•1 comments

The "Bloomberg Terminal" for Agents – Real-Time Intelligence API for AI Agents

https://thepolarisreport.com/agents
1•JohnWeston•32m ago•1 comments

Towards a Neural Debugger for Python

https://arxiv.org/abs/2603.09951
1•E-Reverance•39m ago•0 comments

Semantically search 45k+ AI skills

https://skillsgate.ai/
2•sultanvaliyev•43m ago•2 comments

Python library for translating between embedding model vector spaces

https://github.com/PotentiallyARobot/EmbeddingAdapters/
3•Taranovski•47m ago•1 comments

Robinhood Agent Integration

https://github.com/kevin1chun/rh-for-agents
3•kevin1chun•57m ago•0 comments

Show HN: FizzBuzz Forever – Agent Edition

https://github.com/dleemiller/fizzbuzz-forever
1•deepsquirrelnet•1h ago•0 comments

T9 in the Terminal for Codex, Claude, Gemini

https://github.com/Xsamsx/T9T
1•kyivctoner•1h ago•1 comments

Writing my own text editor, and daily-driving it

https://blog.jsbarretto.com/post/text-editor
8•todsacerdoti•1h ago•0 comments

Why Systems Optimized for Metrics Eventually Drift from Reality [pdf]

https://offbrandguy.com/wp-content/uploads/2026/03/optimization-trap-reality-drift-framework-2023...
2•realitydrift•1h ago•1 comments

Show HN: OpenClaw skill for think-tank style analysis of crises like Iran war

https://github.com/vassiliylakhonin/global-think-tank-analyst
1•vassilbek•1h ago•1 comments

Ask HN: What are some good lectures or talks like this one? [pdf]

https://www.labouseur.com/projects/codeReckon/papers/The-Emperors-Old-Clothes.pdf
1•jdironman•1h ago•2 comments

New Design for Firefox.com

https://www.firefox.com/en-US/
4•pentagrama•1h ago•0 comments

Recursive Problems Benefit from Recursive Solutions

https://jnkr.tech/blog/recursive-benefits-recursive
3•luispa•1h ago•0 comments

How HN: Specwatch – Generate OpenAPI specs by watching live API traffic

https://github.com/rajeevramani/specwatch
1•rajeevramani•1h ago•1 comments

Storm [video]

https://www.youtube.com/watch?v=HhGuXCuDb1U
1•nomilk•1h ago•0 comments

Zig – Type Resolution Redesign and Language Changes

https://ziglang.org/devlog/2026/#2026-03-10
33•Retro_Dev•1h ago•4 comments
Open in hackernews

Automatically add missing "async/await" keywords to your TypeScript code

https://github.com/stanNthe5/typescript-autoawait
7•theThree•10mo ago

Comments

bastawhiz•10mo ago
Is this a problem that people actually have?
xeromal•10mo ago
Fun side project man!
primitivesuave•10mo 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•10mo 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•10mo ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•10mo 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•10mo ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/