frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Website Font Usage Explorer

https://explorer.withfudge.com
1•sim04ful•2m ago•0 comments

Title: Show HN: Gitoro – European Git Hosting, CI/CD and Collaboration Platform

https://gitoro.com/
1•steffenrudk•3m ago•1 comments

Hard to wake up for Fajr prayer so Ive developped an impossible to snooze alarm

https://play.google.com/apps/testing/com.appforfajr.app;https://groups.google.com/g/betatesters-f...
1•luckylokman•5m ago•1 comments

Title: DeepSeek V4 Is Live on ClawBox, and the Agentic Coding Jump Is Real

https://clawbox.com/blog/2026-08-14-deepseek-v4-is-live-on-clawbox-agentic-coding-jump
1•PeturID•5m ago•0 comments

Europe is stuck between "rock and a hard place" on launch costs & rocket reuse

https://arstechnica.com/space/2026/08/policy-experts-europe-stuck-between-rock-and-a-hard-place-o...
1•bell-cot•6m ago•0 comments

Writing and Reading Practices Revisited

https://www.laviniamarin.eu/writing-and-reading-practices-revisited/
1•plastic-enjoyer•11m ago•0 comments

Show HN: Agent-shell – vendor-neutral chat with AI agents in Emacs

https://xenodium.com/agent-shell-0-73-updates#agent-shell-enters-the-chat
1•xenodium•11m ago•1 comments

Build Airbnb on WordPress – Steem WP Plugin Generator

https://steem.dev/signin?next=%2Fapp%3Fproject%3D4e4419f5-0fbd-4371-9bec-0e4334a46388
1•startuphubai•11m ago•0 comments

STL Studio – a free, self-hosted library manager for 3D print files

https://github.com/RBStephenson/STL-Studio
1•azulrathas•13m ago•0 comments

Show HN: A Control Panel for Electronics Prototypes

https://blog.oxplot.com/electronics-prototype-control-panel/
2•oxplot•17m ago•0 comments

Double limits (in Calculus) Understood Visually [pdf]

https://projecteuclid.org/journals/bulletin-of-the-american-mathematical-society/volume-3/issue-2...
1•srean•20m ago•0 comments

Show HN: Build SaaS Applications Without Writing Back End Code [video]

https://www.youtube.com/watch?v=qdGSEJaJS78
1•WolfOliver•21m ago•0 comments

New YouTube changes target automated content farms [video]

https://www.youtube.com/watch?v=bB3WUap3aSM
2•Gecko4072•21m ago•0 comments

Predicting delivery times without asking devs for a single estimate

https://tyle-brown.vercel.app/about
1•byronical•21m ago•0 comments

Lilo – A tiny Markdown notes widget with a knowledge graph

https://github.com/HellterEnjoy/Lilo
1•HellterEnjoy•25m ago•2 comments

Lazy loading YouTube embeds in Hugo

https://eternodevir.com/palimpsests/logs/lazy-loading-youtube-embeds/
1•sedboyz•28m ago•0 comments

Ask HN: Have you worked or collaborated with anyone from HackerNews?

1•miroljub-petrov•29m ago•0 comments

Map: 5.2-Magnitude Earthquake Strikes Southern Spain

https://www.nytimes.com/interactive/2026/08/14/world/europe/spain-quake-tracker.html
2•Bluestein•34m ago•0 comments

Agentic Reasoning for Large Language Models

https://arxiv.org/abs/2601.12538
1•Anon84•38m ago•0 comments

A community for ideas that haven't earned their place yet

https://articles.ideaorbits.org/a/ideaorbits-design-guide/
1•yannana•41m ago•0 comments

Instagram's New Logo

https://www.theverge.com/tech/979583/this-is-instagrams-new-logo
2•embedding-shape•45m ago•2 comments

Minnesota Senate Primary: The Growing Partisan Divide over Israel

https://medium.com/freedomofthought/minnesotas-senate-primary-and-the-growing-partisan-divide-ove...
1•raynchad•46m ago•0 comments

OpenAI slows release of Astra model citing cyber capabilities

https://www.axios.com/2026/08/07/openai-astra-model-delay-cybersecurity-risks
2•Bluestein•46m ago•0 comments

The Download: Flock's new rules, cloning's future, and children's cells

https://www.technologyreview.com/2026/08/14/1142033/the-download-flock-new-rules-cloning-future/
1•joozio•51m ago•0 comments

Reliance on Vision Drove Varied Brain Development in Primates

https://trinity.duke.edu/news/brain-development-primates-research
2•wjSgoWPm5bWAhXB•53m ago•0 comments

Anthropic sees AI risks rising, no plan to release stronger "Model 2"

https://www.axios.com/2026/08/14/anthropic-model-2-ai-risk
2•ironyman•53m ago•0 comments

Auto-research with codex: How I achieved a 232x Faster Kernel

https://sankalp.bearblog.dev/autoresearch/
3•tosh•53m ago•0 comments

Chrome Web Store will remove all MV2 extensions on August 31st

https://developer.chrome.com/docs/extensions/develop/migrate/mv2-deprecation-timeline
2•insin•55m ago•1 comments

DNA reveals a society organised around women in pre-Roman Britain

https://www.newscientist.com/article/2584364-dna-reveals-a-society-organised-around-women-in-pre-...
3•Anon84•55m ago•1 comments

OpenAI rolling out ads for Europe later this month

https://openai.com/policies/eu-privacy-policy-preview/
8•notenlish•1h ago•2 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/