frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Negotiating AI in Open Source Software Communities: A Case Study of LLVM Project

https://gupea.ub.gu.se/server/api/core/bitstreams/ad9b523e-f6d5-4dc2-b632-64f9734484cf/content
1•matt_d•11s ago•0 comments

What do you do when your to-do list gets out of hand?

https://www.taskloco.com/
1•taskloco_nyc•9m ago•1 comments

I built my DREAM New York City apartment from SCRATCH in 93 days [video]

https://www.youtube.com/watch?v=9hL4V3KFTKQ
1•tekacs•10m ago•0 comments

The Task Is Not the Unit of Work

https://sekoudoumbouya.com/blog/the-task-is-not-the-unit-of-work/
1•fakoli•13m ago•0 comments

Why the world is ordering buildings from China [video]

https://www.youtube.com/watch?v=qGqYaULHPV4
1•thelastgallon•14m ago•0 comments

Forward Deployed

https://andys.blog/forward-deployed/
1•andytratt•14m ago•0 comments

Why are US consumers so angry? It's not just high prices

https://www.theguardian.com/us-news/ng-interactive/2026/jun/04/us-consumer-rage-prices-economy
2•dilawar•14m ago•0 comments

Supernormal Stimulus

https://en.wikipedia.org/wiki/Supernormal_stimulus
1•thunderbong•16m ago•0 comments

TalkFitly – Practice high-EQ conversations with AI

https://apps.apple.com/us/app/talkfitly/id6776912365
1•sghick•18m ago•0 comments

Reducing HBM Bottlenecks in JAX-Based LLM Training with Host Offloading

https://developer.nvidia.com/blog/reducing-high-bandwidth-memory-bottlenecks-in-jax-based-llm-tra...
1•matt_d•22m ago•0 comments

Compiler Testing – Part 2: Metamorphic Testing with Verified Identities

https://nowarp.io/blog/compiler-testing-part-2/
1•matt_d•25m ago•0 comments

Martha Lillard, last US polio patient using iron lung, dies at 78 in Oklahoma

https://apnews.com/article/iron-lung-last-patient-died-polio-41e5b4da4f4e710344dd0872d7fcf987
2•gscott•26m ago•1 comments

OpenAI Engineer's 'LOL' Moment Set Stage for Legal Fight with Apple

https://www.bloomberg.com/news/articles/2026-07-11/openai-engineer-s-lol-moment-set-stage-for-leg...
2•sbulaev•35m ago•1 comments

All the Government's 385,837 frames of UFO files released thus far

https://hypergrid.systems/war.gov-ufo-viewer/microfilm5
1•keepamovin•43m ago•0 comments

Ukraine accuses Russia of creating conditions for the spread of anthrax

https://outbreaknewstoday.substack.com/p/ukraine-accuses-russia-of-creating
5•pinewurst•48m ago•1 comments

Don't You Mean Extinct?

https://fabiensanglard.net/extinct/index.html
1•markus_zhang•48m ago•0 comments

Survival guide: Key advice for what to do if you find yourself in a wildfire

https://www.euronews.com/my-europe/2026/07/10/survival-guide-key-advice-for-what-to-do-if-you-fin...
2•rawgabbit•53m ago•0 comments

Small Inventors Are Being Squeezed by a Convoluted Patent Process

https://www.nationalreview.com/news/small-inventors-are-being-squeezed-by-a-convoluted-patent-pro...
8•petethomas•59m ago•0 comments

Show HN: We beat Anubis with our stealth MCP

https://tilion.dev/blog/anubis-proof-of-work
7•armanluthra_•1h ago•3 comments

Show HN: Quantum-Qec / Matrix-Free Quantum Homeostatic Engine(Blueprint)

https://github.com/PJHkorea/quantum-mesh-qec
3•PJHkorea•1h ago•1 comments

We Know Simple Fluids Can Flow. Turns Out, Some Can Fracture

https://www.quantamagazine.org/we-know-simple-fluids-can-flow-turns-out-some-can-fracture-20260710/
17•Anon84•1h ago•0 comments

Show HN: Confessor – replay what private info Claude Code accessed on your PC

https://github.com/ninjahawk/Confessor
4•ninjahawk1•1h ago•0 comments

Thoughts on the 1989 Film the Abyss (2024)

https://www.sffchronicles.com/threads/586366/
2•andsoitis•1h ago•0 comments

The Energetic Costs of Cellular Computation (2012)

https://arxiv.org/abs/1203.5426
7•lioeters•1h ago•0 comments

Largest housing affordability bill in decades becomes law

https://www.npr.org/2026/07/10/nx-s1-5885027/housing-bill-without-trump-signature
4•saucymew•1h ago•0 comments

Computation in Physical Systems

https://plato.stanford.edu/entries/computation-physicalsystems/
2•lioeters•1h ago•0 comments

Atlas: ROMbug Wants to Reinvent the Browser

https://rombug.com/
2•chainbuilder•1h ago•0 comments

AI notetakers promise easy meeting recaps, but some question their use

https://apnews.com/article/ai-notetaker-work-meetings-privacy-data-c700299371ca7cfec77dafdfb948067f
5•billybuckwheat•1h ago•2 comments

A Hundred Years Dry: The U.S. Navy's End of Alcohol at Sea

https://news.usni.org/2014/07/01/hundred-years-dry-u-s-navys-end-alcohol-sea
6•keepamovin•1h ago•0 comments

Neverclick: Desktop application for performing mouse actions with your keyboard

https://github.com/LazoVelko/neverclick
5•thunderbong•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/