frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Please Switch to Python. Or R. Or Anything. Just Not Stata, SAS, SPSS, or Matlab

https://presentofcoding.substack.com/p/please-switch-to-python
1•heterodoxjedi•15s ago•0 comments

Urban wrens are singing at 1am: Six months of birdsong data from BirdNET-go

https://beaktech.org/blog/urban-vs-rural-bird-activity
1•deepvibrations•28s ago•0 comments

Maxproof

https://arxiv.org/abs/2606.13473
1•ilreb•53s ago•0 comments

Python 3.14 garbage collection rigamarole

https://theconsensus.dev/p/2026/06/06/python-3-14-garbage-collection-rigamarole.html
1•eatonphil•1m ago•0 comments

From US Military job code to civilian career

https://vetswhocode.io/career-guides
1•mooreds•1m ago•0 comments

Show HN: On-device pose estimation in React Native ExecuTorch

https://twitter.com/_jakubchmura/status/2065401634075636064
1•chmjkb•2m ago•0 comments

A BIOS update won't fix a board-specific ROCm bug on Strix Halo

https://thefrontierlab.ai/bios-update-wont-fix-6182/
1•thefrontierlab•2m ago•0 comments

'How ASML is applying AI-native engineering for the next technology era'

https://www.asml.com/en/news/stories/2026/machines-behind-machines
1•felipevb•5m ago•0 comments

Vendor data feed is wrong

https://coloneltoad.substack.com/p/why-i-built-my-own-data-pipeline
1•tolugenius•9m ago•0 comments

How Does the Video Codec Influence the Prediction Scores of an AI Model?

https://www.fourthline.com/newsroom/supervised-vs-contrastive-classification
2•Doch88•15m ago•0 comments

Build a Web App for Your Machine Learning Model

https://mljar.com/blog/web-app-machine-learning/
2•pplonski86•17m ago•0 comments

AWS Tunes Up Graviton5 for Agentic AI, Boosts Bang for the Buck Bigtime

https://www.nextplatform.com/compute/2026/06/11/aws-tunes-up-graviton5-for-agentic-ai-boosts-bang...
1•rbanffy•17m ago•0 comments

Facing US chip curbs, China launches photonics lab to power AI with light

https://www.scmp.com/tech/tech-war/article/3356901/facing-us-chip-curbs-china-launches-photonics-...
3•outrunner•17m ago•0 comments

"This cannot continue": Xbox leaders lay out "hard truths" behind sagging brand

https://arstechnica.com/gaming/2026/06/this-cannot-continue-xbox-leaders-lay-out-hard-truths-behi...
2•rbanffy•18m ago•0 comments

China's chip design software firms catch US rivals?

https://www.scmp.com/tech/big-tech/article/3356853/chinas-chip-software-firms-back-huaweis-new-sc...
1•merlioncity•18m ago•0 comments

Alaskans will be flying blind after NSF decommissions ocean monitoring network

https://insideclimatenews.org/news/09062026/alaska-ocean-monitoring-instruments-nsf-cuts/
1•rbanffy•20m ago•0 comments

Show HN: Grops – Stop the Information Overload

https://grops.biz
1•filippo_ciprian•24m ago•0 comments

Ask HN: Is Claude Fable 5 built from scratch or just better data?

1•throwaw12•24m ago•0 comments

The Aesthetics of Multicoding Esolangs (2020) [pdf]

https://danieltemkin.com/Content/Esolangs/multicoding_esolangs.pdf
1•thalium•25m ago•0 comments

Finding code duplicated by AI without AI

https://github.com/Rafaelpta/dupehound
2•rafaepta•26m ago•1 comments

Show HN: Passwd.page – give agents secrets without pasting them into prompts

https://passwd.page/
1•davidfeldi•28m ago•0 comments

AI will be massively deflationary

https://geohot.github.io//blog/jekyll/update/2026/06/11/ai-will-be-deflationary.html
2•dalvasorsali•31m ago•0 comments

David Hockney, Who Restored the Human Form to Art, Dies at 88

https://www.nytimes.com/2026/06/12/arts/design/david-hockney-dead.html
13•SirLJ•34m ago•0 comments

AI Will Cheat to Win: Reward Hacking from 1994 to 2025

https://adversariallogic.com/when-ai-finds-the-shortcut-reward-hacking-from-1994-to-2025/
1•joshgracie•35m ago•0 comments

Tron Algorithm Competition

https://tron.erik.gdn/
1•zinngr•36m ago•0 comments

Horizon Trade revolutionises trading with AI

https://horizon.trade
1•LaurenzBauer•38m ago•1 comments

How and why we moved our knowledge base from Notion to Markdown

https://blog.fortrabbit.com/moving-knowledge-base-from-notion-to-markdown
1•esher•44m ago•0 comments

Flash Drive has Every File [video]

https://www.youtube.com/watch?v=w6rkhvdAqHU
1•Gys•46m ago•0 comments

Anthropic Mythos: Modelling Bank Strategies

https://neuralcore.brainterms.ai/share/rpt_mq9ayvj0
1•Jderenne•46m ago•1 comments

Celebrated British artist David Hockney dies aged 88

https://www.bbc.co.uk/news/live/c4gye2zk29zt
2•max-amb•47m 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/