frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Scientific research trying to find the world funniest joke

https://richardwiseman.substack.com/p/1000-free-jokes-and-a-personal-look
1•thinkingemote•2m ago•0 comments

Apologise or Lose Safe Harbour: Parliament Panel's 3-Day Ultimatum to Zuckerberg

https://www.news18.com/india/take-action-in-3-days-or-lose-safe-harbour-parliament-panels-warning...
1•thisislife2•4m ago•0 comments

Dev proves LLMs will run on anything – even a $10 microcontroller

https://www.theregister.com/edge-and-iot/2026/08/04/dev-proves-llms-will-run-on-anything-even-a-1...
2•Lio•9m ago•0 comments

What AI doesn't say about AI

https://claudiocaletti646669.substack.com/p/what-ai-doesnt-say-about-ai
1•calettippo•10m ago•0 comments

Replacing static back end endpoints with an autonomous agent

https://docs.ardor.cloud/introduction
1•Daniiar9•11m ago•0 comments

Australia's Jetstar to charge for carry-on bags in overhead lockers

https://www.reuters.com/world/asia-pacific/australias-jetstar-charge-carry-on-bags-overhead-locke...
1•geox•12m ago•0 comments

No Data Centers in My Backyard

https://jasmi.news/p/no-data-centers-in-my-backyard
1•Anon84•13m ago•0 comments

Mark Cuban, Michael Burry send strong warning on Nvidia, AI stocks

https://www.thestreet.com/investing/stocks/mark-cuban-michael-burry-send-strong-warning-on-nvidia...
3•mapping365•15m ago•0 comments

Advert banned for glamorising smoking – BBC shows it

https://www.bbc.co.uk/news/articles/cly843vd3jmo
1•al_be_back•16m ago•2 comments

Liquid Glass Effect for GNU/Emacs

https://github.com/larrasket/emacs-liquid-glass
1•birdculture•17m ago•0 comments

Show HN: I built an economy designed to crash

https://glaxom.netlify.app
1•alias_12•18m ago•0 comments

Google Earnings, the Frontier Case, Amazon Earnings

https://stratechery.com/2026/google-earnings-the-frontier-case-amazon-earnings/
1•swolpers•18m ago•0 comments

Let's call Trump's approach to Iran what it is: kindergarten diplomacy

https://www.theguardian.com/commentisfree/2026/aug/05/trump-iran-war-diplomacy
4•mapping365•20m ago•0 comments

Most security keys ship without a PIN, and websites rarely ask

https://www.notebookcheck.net/Most-security-keys-ship-without-a-PIN-and-websites-rarely-ask.13596...
1•yread•20m ago•0 comments

Show HN: A multiplayer play-money terminal casino for downtime

https://anteroom.johnramsey.com/
1•jramsey27•24m ago•0 comments

Microsoft never learns, IT admins rage as a new OneDrive app invades Windows 11

https://www.windowslatest.com/2026/08/04/microsoft-never-learns-it-admins-rage-as-a-new-onedrive-...
3•latein•25m ago•1 comments

AI Agents for Logistics, Pitfall?

1•srguarapo•28m ago•0 comments

Show HN: An open-weight background removal model for difficult images

https://withoutbg.com/open-model
1•kocabiyik•31m ago•0 comments

Out-of-court settlement between Amiga and Hyperion is publicly available

https://amiga-news.de/en/news/AN-2026-08-00028-EN.html
2•doener•33m ago•0 comments

Yemen's Houthis say they attacked Saudi oil tanker in Red Sea

https://www.reuters.com/world/middle-east/yemens-houthis-say-they-attacked-saudi-oil-tanker-red-s...
1•mapping365•35m ago•0 comments

Man arrested for Grim Reaper costume on hospital roof and staring at patients

https://www.mirror.co.uk/news/uk-news/hospital-grim-reaper-man-arrested-37511832
2•chistev•35m ago•1 comments

CtrlVibe AI Keypad – An OpenAI Micro Alternative for AI Workflows (Crowdfunding)

https://www.cnx-software.com/2026/08/05/ctrlvibe-ai-console-keypad-an-openai-codex-micro-alternat...
1•giuliomagnifico•39m ago•0 comments

OpenAI, Anthropic AI Models Breached Systems During UK Safety Tests

https://www.bloomberg.com/news/articles/2026-08-04/openai-says-models-breached-boundaries-during-...
3•sbulaev•45m ago•0 comments

Mach-1 Additive, a 35B model that can inference without multiplying

https://xcancel.com/antibot/captcha
1•imtany•46m ago•1 comments

City Heat Field

https://city-heatmap-online.vercel.app/
2•altilunium•48m ago•1 comments

SpaceX plans to become a mobile carrier

https://www.theverge.com/science/975480/spacex-mobile-terrestrial-cellphone-company
3•BlueBerry2001•49m ago•3 comments

Run full-blown macOS on iPadOS 16

https://github.com/nfzerox/VirtualMacOniPad
1•71bw•50m ago•0 comments

Making difficulty curves in games

http://www.davetech.co.uk/difficultycurves
1•hakkikonu•52m ago•0 comments

What Is Cloud.microsoft?

https://support.microsoft.com/en-us/office/what-is-cloud-microsoft
1•iso1631•56m ago•1 comments

The Depths She'll Reach (2021)

https://thedepths.longlead.com/
1•Thunder_rumbles•57m 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/