frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

You Won't Notice You Have Hypothermia [video]

https://www.youtube.com/watch?v=OQrSg0t9rXk
1•skibz•1m ago•0 comments

We are a blog run by bots. Here is the org chart

https://bitsonbots.com/blog-run-by-bots-org-chart/
1•speckx•1m ago•0 comments

ShinyHunters tells The Reg: We hacked the FBI to 'protect our business'

https://www.theregister.com/cyber-crime/2026/09/25/shinyhunters-tells-the-reg-we-hacked-the-fbi-t...
1•geekinchief•2m ago•1 comments

Canadian language school files for bankruptcy, leaving students stranded

https://www.cbc.ca/news/canada/british-columbia/language-school-bankrupcy-9.7351082
1•hmokiguess•4m ago•0 comments

Created an online job aggregator platform and I need ideas

https://labelingjobs.net
1•nikolaospet•5m ago•0 comments

Show HN: Paper-docx – agent-native Python-docx fork with 78% fewer DOCX failures

https://github.com/paper-instruments/paper-docx
2•i_rush_carriers•6m ago•0 comments

Beef Grading Shields

https://www.ams.usda.gov/grades-standards/beef/shields-and-marbling-pictures
1•kamaraju•7m ago•0 comments

Show HN: CK3DNA – searchable CK3 character DNA and coat of arms codes

https://ck3dna.com/
1•richardharmer•9m ago•1 comments

Approaching a 10 Second Linux Kernel Build

https://www.phoronix.com/review/near-10-sec-kernel-build
1•fork-bomber•9m ago•0 comments

Show HN: Digitron – a virtual analog synth and sequencer

https://apps.apple.com/us/app/digitron-synthesizer/id6737997923
1•sillydevices•9m ago•0 comments

AI Infra Is Nothing Like the Classic Cloud Infra

https://ramansharma.substack.com/p/ai-infra-is-nothing-like-the-classic
1•intrepidsoldier•9m ago•0 comments

Lobsters: Rename vibecoding to LLMs (Greasemonkey script)

https://greasyfork.org/en/scripts
1•birdculture•10m ago•0 comments

Bringing HTTP's caching rules to DuckDB functions with VGI

https://query.farm/blog/http-caching-duckdb-vgi/
1•rustyconover•12m ago•0 comments

No country controls every layer: The hidden AI systems reshaping global power

https://www.abc.net.au/news/2026-09-24/ai-race-chips-data-energy-cake-stack-us-china-asia-pacific...
1•greysunsets•13m ago•0 comments

Fedora considers replacing LibreOffice with Collabora Office

https://digitalescapetools.com/2026/09/fedora-libreoffice-collabora-office-debate.html
2•xabd•13m ago•0 comments

Trump administration gutted data collection on US education

https://www.theguardian.com/us-news/ng-interactive/2026/sep/25/student-math-reading-test-scores
6•nxobject•14m ago•0 comments

Code is the future and present of hardware engineering

https://charlesazam.com/blog/engineering-as-code-manifesto/
1•couAUIA•14m ago•0 comments

Zelensky says Russia has widened attacks to hit Ukraine's data centres

https://www.bbc.com/news/articles/c84gkwgk7d06o
14•dabinat•15m ago•0 comments

Show HN: Get a .has-a.computer sub-domain for your website

https://has-a.computer/
1•aspizu•15m ago•0 comments

Poor Privacy Practices Leaves Revolut Customers Vulnerable (2020)

https://safereddit.com//r/Revolut/comments/gu5yyw/very_poor_privacy_practices_leaves_revolut/
1•exceptione•16m ago•1 comments

Drex: Open jev-like claims win on decision index

https://www.nace.ai/drex
1•rgbrgb•17m ago•0 comments

Gaming is expensive, ya, I'm Good

https://yaimgood.bearblog.dev/gaming-is-expensive-ya-im-good/
1•speckx•18m ago•0 comments

Show HN: Obsidian Plugin for OpenModelica

https://community.obsidian.md/plugins/modelica-studio
1•cs3f16•18m ago•0 comments

New photos show damage at U.S. positions caused by Iranian attacks

https://www.cbsnews.com/news/new-photos-damage-u-s-kuwait-saudi-arabia-iran-drone-missile-attacks/
1•johnny313•20m ago•0 comments

Ask HN: Which model do you use for work?

2•george_max•21m ago•2 comments

Microsoft disrupts AI-assisted platform that compromised 12,000 accounts

https://arstechnica.com/security/2026/09/microsoft-disrupts-ai-assisted-platform-that-compromised...
2•noashavit•21m ago•0 comments

Resell sneakers until you're a billionaire on OBLOCK

https://mattbusel.itch.io/oblock
1•Shmungus•21m ago•1 comments

Cambridge Analytica 2.0 – When the AI Assistant Becomes a Intelligence Graph

https://futurium.ec.europa.eu/en/apply-ai-alliance/community-content/cambridge-analytica-20-when-...
1•sangamdas•24m ago•0 comments

Levyra: Open-source music player for Android and Windows

https://github.com/LUC4N3X/Levyra-deepsound
1•LUC4N3X•24m ago•0 comments

Best TV shows of the 21st century

https://www.nytimes.com/interactive/2026/arts/television/best-tv-shows-21st-century.html
1•dewey•27m 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/