frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Honey Gets Terminated as Lawsuits Proceed [video]

https://www.youtube.com/watch?v=EXDemfGNGz0
1•nomilk•3m ago•0 comments

Death March (Project Management)

https://en.wikipedia.org/wiki/Death_march_(project_management)
2•Austin_Conlon•11m ago•0 comments

Apache Fory JSON: JSON Serialization for Java, 10x faster than Jackson

https://fory.apache.org/blog/fory_json_fastest_java_json_framework/
1•theanonymousone•14m ago•0 comments

YouTube sets Made For Kids flag on inappropriate video,won't let owner change it

https://twitter.com/nihaho13/status/2087317049278075130
1•Nition•14m ago•1 comments

The poverty of anti-tech thought

https://www.noahpinion.blog/p/the-poverty-of-anti-tech-thought
1•Ariarule•15m ago•0 comments

Show HN: Lethe is a portable identity layer – user consented

https://lethe-ai.vercel.app
1•NamanaManohar•26m ago•0 comments

Mark Zuckerberg: The Future Is for Everyone

https://about.fb.com/news/2026/08/the-future-is-for-everyone/
3•nedruod•30m ago•1 comments

Meta can't stop states' $1.4T lawsuit from going to trial

https://arstechnica.com/tech-policy/2026/08/meta-cant-stop-states-1-4-trillion-lawsuit-from-going...
4•oenton•34m ago•2 comments

World Encyclopaedia of Puppetry Arts

https://wepa.unima.org/en/
2•nephihaha•34m ago•0 comments

Rootless Container Sandbox for Claude Code and Codex

https://www.reddit.com/r/ClaudeAI/comments/1vm2w0e/a_lightweight_rootless_container_sandbox_for/
1•syumei•37m ago•0 comments

CVE-2026-53361 AF_Unix GC vs. MSG_PEEK use-after-free container escape

https://github.com/sgkdev/bad_garbage
3•eyberg•38m ago•0 comments

DoorDash Flux: Delegating Engineering Work to Cloud Based Agents

https://careersatdoordash.com/blog/delegating-engineering-work-to-cloud-based-agents/
1•rayval•38m ago•0 comments

DARPA heavy lift challenge ends with winner at a 3.84:1 payload to weight ratio

https://dronexl.co/2026/08/10/darpa-lift-challenge-results-avidrone/
2•daau•42m ago•0 comments

LSPs for LLMs

https://ianbarber.blog/2026/08/11/lsps-for-llms/
1•matt_d•44m ago•0 comments

Hannah Arendt's American Education

https://www.newyorker.com/magazine/2026/08/17/hannah-arendt-life-of-the-mind-thomas-meyer-book-re...
2•mitchbob•46m ago•1 comments

Supreme Computation – Fail-closed governance for AI execution

https://github.com/KnowledgeeKZA3224/scqos-reference-implementation
1•Knowledgee_KZA•46m ago•0 comments

Trump's childhood vaccine order: what it does and what doctors say

https://www.reuters.com/legal/litigation/trumps-childhood-vaccine-order-what-it-does-what-doctors...
2•gverrilla•46m ago•0 comments

Ask HN: How do you handle uncertain GPU capacity needs months in advance?

1•plainviewinstru•51m ago•0 comments

Spy cameras on Royal Navy drones sent data to China

https://www.telegraph.co.uk/news/2026/08/09/spy-cameras-on-navy-drones-secretly-sent-data-to-china
3•delichon•51m ago•0 comments

Show HN: DisplayWave – open-source and simple tool for Mac display management

https://github.com/kah-ve/DisplayWave
1•warpbin•55m ago•0 comments

Show HN: Memftprt, a consistent, process-tree-wide memory footprint on Linux

https://github.com/menzew/memoryfootprint
1•benzewdu•59m ago•0 comments

Measuring the Wrong Thing: Internal Harmfulness Scores Anti-Rank Successful

https://arxiv.org/abs/2608.09624
1•sbulaev•1h ago•0 comments

I built a PII pdf parser for your agent

https://www.pdfagent.net/
2•mattmerrick•1h ago•1 comments

Male redback spider's dramatic death somersault during sex coded in its DNA

https://www.abc.net.au/news/science/2026-08-12/redback-spiders-backflip-katipo-sex/107022976
4•Gaishan•1h ago•0 comments

Move 37 Is the Moment AI Changes Everything. It's Suddenly Happening Everywhere

https://www.wsj.com/tech/ai/move-37-ai-demis-hassabis-google-deepmind-alphago-ec832a41
4•RyanShook•1h ago•0 comments

Dogs can tell when you're happy, sad or frustrated

https://www.washingtonpost.com/lifestyle/2026/08/11/dogs-can-tell-when-you-happy-scared-or-sad-ne...
5•wslh•1h ago•3 comments

Crew, a multiplayer workspace for humans and AI agents to work together

https://github.com/JamelHammoud/crew
2•alihammoud21•1h ago•0 comments

The 7T AI Gamble Is Failing. Big Tech Is Trapped

https://www.youtube.com/watch?v=OunJtLnyPT4
5•cable2600•1h ago•0 comments

The StubHub Customers Who Battled for Tickets–and Battle Harder for a Refund

https://www.wsj.com/business/stubhub-tickets-resell-refund-de5ef8c3
2•fortran77•1h ago•1 comments

Talk to ELIZA

https://findingeliza.org/try.html
3•droidjj•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/