frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Comma.ai Launches a PCIe Gen4 X4 to USB4 Dock with Open-Source Firmware

https://www.phoronix.com/news/Comma.ai-PCIe-Gen4-USB4-Dock
1•ferryth•1m ago•0 comments

Best AI solution to hunt for buffer overflows in open source apps?

1•firefax•3m ago•0 comments

VTCode

https://github.com/vinhnx/VTCode
1•handfuloflight•7m ago•0 comments

Vivodyne launches largest human biological datacenter

https://www.businesswire.com/news/home/20260812148428/en/Vivodyne-Launches-the-Worlds-Largest-Hum...
1•george_max•8m ago•0 comments

Peter Sarnak on "The AlphaZero Test" for Mathematics

https://www.ams.org/journals/notices/202607/noti3373/noti3373.html
1•the-mitr•10m ago•0 comments

People Who Will Thrive in the AI Age

https://www.theatlantic.com/ideas/2026/06/ai-open-ai-anthropic/687689/
2•jdkee•14m ago•0 comments

destruction-certificate.txt

https://stallman.org/articles/destruction-certificate.txt
2•lr0•22m ago•0 comments

Dynatrace to buy AI observability startup Arize for $915M

https://app.dealroom.co/news/note/dynatrace-to-buy-ai-observability-startup-arize-for-915m
1•doughnutstracks•23m ago•0 comments

Mesa activists oppose Japanese data center, seek audience with city council

https://www.abc15.com/news/region-southeast-valley/mesa/mesa-activists-oppose-japanese-data-cente...
1•spking•24m ago•0 comments

Show HN: Supervice – process supervisor for agentic processes. zero dependencies

https://github.com/rodmena-limited/supervice
1•rodmena•24m ago•0 comments

Tron (Hacker)

https://en.wikipedia.org/wiki/Tron_(hacker)
2•lr0•24m ago•0 comments

Water Ring Toss Game

https://projects.arkon.digital/threejs/water-ring-toss-game/
2•memalign•32m ago•0 comments

Performative Agreement — The False Alignment Trap

https://hbr.org/2026/07/the-false-alignment-trap
1•soupspaces•33m ago•0 comments

Flock Say Their Surveillance Tech Would've Solved the Nancy Guthrie Case

https://www.vanityfair.com/story/flock-founders-interview-privacy-stalking
2•jhonovich•34m ago•1 comments

The End of Mathematics

https://www.daniellitt.com/blog/2026/8/11/the-end-of-mathematics
2•practal•35m ago•0 comments

On Hacking

https://stallman.org/articles/on-hacking.html
1•lr0•36m ago•0 comments

He Mined 300 Bitcoin, Wiped the Computer, and Sold It for $200 [video]

https://www.youtube.com/watch?v=XHeMsXDyw2A
1•pierrephpguru•37m ago•0 comments

Nvidia Jetson chip found in Russian cruise missile

https://www.tomshardware.com/tech-industry/artificial-intelligence/nvidia-jetson-chip-found-in-ru...
2•raphar•38m ago•0 comments

Flutter_scene 0.21.0 runs 3D apps with Flutter GPU and Impeller

https://xcancel.com/antibot/captcha
1•chem83•41m ago•0 comments

Revised Rules of Engineering Leadership

https://lethain.com/revised-rules-of-engineering-leadership/
1•samuel246•41m ago•0 comments

Coal: The Next Chokepoint

https://thehonestsorcerer.substack.com/p/coal-the-next-chokepoint
1•iamnothere•44m ago•0 comments

Let's Take a Look at Lower Java Tail Latencies with ZGC

https://www.morling.dev/blog/lower-java-tail-latencies-with-zgc/
1•ksec•45m ago•0 comments

Quake Version 1.07 on RS/6000 Systems

https://public.dhe.ibm.com/aix/freeSoftware/games/Quake/
2•nazgulsenpai•46m ago•1 comments

Bees make decisions better and faster than we do

https://lighthouse.mq.edu.au/for-media/bees-make-decisions-better-and-faster-than-we-do-for-the-t...
1•andsoitis•47m ago•0 comments

Inhibitory synapses influence signals in the brain with high precision

https://maxplanckneuroscience.org/inhibitory-synapses-influence-signals-in-the-brain-with-high-pr...
1•andsoitis•48m ago•0 comments

2nd brain scrolls corners of X for you so you can focus on other things

https://trydewey.ai/?v=2
1•second_brain2•48m ago•0 comments

Decision-making and action selection in insects

https://pmc.ncbi.nlm.nih.gov/articles/PMC4539514/
1•andsoitis•49m ago•0 comments

State of Open Models: Summer 2026 Observations

https://huggingface.co/blog/state-of-open-models-summer-2026
2•kristianpaul•49m ago•0 comments

Neuroscientists have underestimated brain cells' computing power

https://www.scientificamerican.com/article/neuroscientists-have-vastly-underestimated-brain-cells...
4•signa11•54m ago•0 comments

Google Turns on Gemini A.I. For Students Using Its Classroom App

https://www.nytimes.com/2026/08/14/business/google-gemini-ai-schools.html
1•goldfishgold•54m 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/