frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Storj begins court-supervised restructuring, proposes equity for token holders

https://www.storj.io/blog/an-open-letter-to-the-storj-token-community-the-restructuring-the-netwo...
1•Manouchehri•16s ago•0 comments

Architecting Persistent Memory for Multi-Agent System [video]

https://www.youtube.com/watch?v=lw52w7Pw86M\
1•handfuloflight•3m ago•0 comments

Playing Computer Music via Am Radio on Computers Like Altair, IMSAI, PDP8, etc.

https://github.com/rcl9/Playing-Computer-Music-via-AM-Radio-on-IMSAI-8080-PDP8-Sorcerer-TRS80-etc...
1•TMWNN•6m ago•1 comments

Show HN: A macOS Port of Ventoy2disk

https://github.com/fcjr/ventoy-mac
1•fcjr•9m ago•0 comments

Sam Altman: "Never a Better Time to Do a Startup" [video]

https://www.youtube.com/watch?v=ZIaOBAjvc38
1•tvvocold•11m ago•0 comments

39,535+ hours of open robot data

https://datasets.bot/
1•ilreb•15m ago•0 comments

Walk on Decomposed Subdomains

https://clementjambon.github.io/wods/index.html#blogpost
1•E-Reverance•17m ago•0 comments

ICE launching operation in New York City

https://thehill.com/policy/national-security/5992642-ice-queens-long-island-raids/
2•Alien1Being•18m ago•0 comments

Key Considerations for On-Premises Project Management Platform Planning

https://ones.com/blog/10-key-considerations-for-on-premises-project-management-platform-planning/
1•coding1134•19m ago•0 comments

Tracked Capabilities for Safer Agents

https://martinodersky.substack.com/p/tracked-capabilities-for-safer-agents
2•matt_d•20m ago•0 comments

Street videos 'exploiting' vulnerable people

https://www.bbc.com/news/articles/c0rdglq4nvlo
1•1659447091•24m ago•0 comments

Dunning-Kruger effect is the result of statistical artifact

https://neurosciencenews.com/dunning-kruger-inversion-confidence-31132/
1•_superposition_•24m ago•0 comments

Can AMD Break the CUDA Moat? AMD Advancing AI 2026

https://newsletter.semianalysis.com/p/can-amd-break-the-cuda-moat-amd-advancing
2•gmays•29m ago•0 comments

Claude's code comments – too much or just enough?

4•lalaleslieeeee•38m ago•1 comments

CharaLab

https://aicharalab.com/
2•zzkk•43m ago•0 comments

Deep in This Lake, a Contagious Cancer Is Spreading

https://www.nytimes.com/2026/07/22/science/contagious-cancer-catfish.html
1•gmays•45m ago•0 comments

Playing with Playbook; the scheduling app for astronauts (2015)

https://blogs.esa.int/iriss/2015/09/09/playing-with-playbook/
1•prawn•48m ago•0 comments

Show HN: SeaTicket – AI agent that resolve GitHub and Discord issues

2•Daniel-Pan•50m ago•0 comments

Show HN: Coast – Turn an iPhone into a control surface for a Mac

https://coast.masn.studio
1•MasonChen•51m ago•0 comments

Ask HN: What apps are you building?

7•totaldude87•56m ago•4 comments

Using an open model feels surprisingly good

https://matthewsaltz.com/blog/using-an-open-model-feels-surprisingly-good/
40•msaltz•57m ago•15 comments

An Uncomplicated Man

https://www.lrb.co.uk/the-paper/v48/n14/emily-wilson/an-uncomplicated-man
3•andsoitis•59m ago•0 comments

Zureka: A way forward to solving the thorniest issues in quantum mechanics

https://deivondrago.substack.com/p/zureka-a-way-forward-to-solving-the
2•mellosouls•1h ago•0 comments

Is This What Comes After AI Slop?

https://www.theatlantic.com/technology/2026/07/daggermouth-novel-bestseller-ai/688067/
3•acmnrs•1h ago•0 comments

A Gang of Thieves Pulled Off a Multimillion-Dollar Data Center Heist

https://www.nytimes.com/2026/07/12/magazine/data-center-heist.html
2•acdanger•1h ago•0 comments

EYG: A Programming Language for Humans

https://crowdhailer.me/2026-06-08/a-programming-language-for-humans/
18•crowdhailer•1h ago•6 comments

A $500 RL fine-tune of a 9B open model beat frontier models on catalog review

https://fermisense.com/when-machines-take-the-wheel/
24•ilreb•1h ago•5 comments

Review: Neil Postman's 'Amusing Ourselves to Death' (2016)

https://www.refsmmat.com/posts/2016-01-23-amusing-ourselves-to-death.html
4•jruohonen•1h ago•0 comments

Fundraiser to Bolster Monero's Security Through Automated Testing

https://old.reddit.com/r/Monero/comments/1v8exyy/fundraiser_to_bolster_moneros_security_through/
2•lunarthegrey•1h ago•0 comments

Venture Mindset

https://herbertlui.net/venture-mindset/
2•herbertl•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/