frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Can One Disgruntled Employee Destroy Big Tech? A Chilling Truth

https://comuniq.xyz/post?t=1197
1•01-_-•43s ago•0 comments

SpaceX blocked from early benchmark index entry as S&P reaffirms existing rules

https://www.reuters.com/business/finance/sp-global-keeps-fast-entry-proposal-unchanged-spacex-lis...
1•healsdata•2m ago•0 comments

Show HN: One AI agent for all your support issues

2•Daniel-Pan•2m ago•1 comments

Agent Harness Engineering: A Survey

https://picrew.github.io/LLM-Harness/
1•rippeltippel•10m ago•0 comments

Google is quietly laying off staff in its cloud division

https://www.businessinsider.com/google-clouds-quiet-layoffs-hit-cybersecurity-teams-2026-6
2•neilfrndes•15m ago•0 comments

Fresh: Terminal based IDE and text editor

https://github.com/sinelaw/fresh
1•sudenmorsian•15m ago•0 comments

Dear Microsoft, enough is enough

https://www.politico.eu/sponsored-content/dear-microsoft-enough-is-enough/
2•giuliomagnifico•16m ago•0 comments

Tokyo's Tower of Babel: The 10-Kilometer-High Megastructure Japan Almost Built

https://www.tokyoweekender.com/art_and_culture/design/tokyo-tower-of-babel/
1•techdar42•16m ago•1 comments

Ask HN: Is Apple taking AI seriously?

1•circuitfable•20m ago•1 comments

1M node reactive graph, 2.687ms updates, stealth privacy, 303 tests passing

https://neurons-me.github.io/.me/
1•suiGn•22m ago•0 comments

Hong Kong Surpasses Switzerland as the Largest Cross-Border Wealth Hub

https://www.bcg.com/press/27may2026-hong-kong-surpasses-switzerland-largest-cross-border-wealth-hub
1•LopRabbit•28m ago•0 comments

A simple product for small businesses to collect private feedback

https://telltheowner.com
1•vijayst•29m ago•0 comments

PivCo-Huffman: a novel approach to Huffman decoding

https://marcinzukowski.github.io/pivco-huffman/
1•felixhandte•29m ago•0 comments

The IsUpMap lets you check the status of over 100 major sites at once

https://isupmap.com/
2•mikelgan•33m ago•0 comments

Reusable Brick Walls for the Construction Industry

https://www.tugraz.at/en/news/article/reusable-brick-walls
1•geox•33m ago•0 comments

Show HN: Sencho – a self hosted Docker Compose UI with multi-node fleet support

https://github.com/Studio-Saelix/sencho
1•ansocode•34m ago•0 comments

The Pentagon is running an AI propaganda mill targeting Latin America

https://theintercept.com/2026/06/02/la-tilde-propaganda-latin-america-pentagon/
5•Fricken•39m ago•0 comments

Science with military applications is cited more than civilian-only research

https://www.nature.com/articles/d41586-026-01770-8
1•ilreb•39m ago•0 comments

Nouri – AI nutrition that adjusts your workouts

https://nouriwellness.app/
1•iconmarketing•40m ago•1 comments

C++: The Documentary Released Today

https://herbsutter.com/2026/06/04/c-the-documentary-released-today/
2•ingve•41m ago•0 comments

JITDomain: Instruction-level JIT code isolation

https://www.sciencedirect.com/science/article/pii/S0141933126000426
2•matt_d•42m ago•0 comments

Show HN: Lessons learned from running Claude Code swarms at scale

3•sermakarevich•44m ago•0 comments

Criticome: The Critical Period in Human Development

https://genomicpress.kglmeridian.com/view/journals/brainhealth/aop/article-10.61373-bh026i.0021/a...
2•rramadass•46m ago•1 comments

Cursus Publicus

https://en.wikipedia.org/wiki/Cursus_publicus
2•thebigship•56m ago•0 comments

RobotValues: Evaluating Household Robots When Human Values Conflict

https://arxiv.org/abs/2606.03312
2•berlianta•1h ago•0 comments

Bot web traffic has overtaken human web traffic, data shows

https://www.nbcnews.com/tech/tech-news/bot-web-traffic-overtaken-human-web-traffic-data-shows-rcn...
5•psychanarch•1h ago•1 comments

Mark Rober's $60M Science Experiment [video]

https://www.youtube.com/watch?v=RDFGkBE2O50
2•migueloller•1h ago•0 comments

Ask HN: How do you track FIRE progress?

2•Tesnix•1h ago•2 comments

Magenta RealTime 2: Open and Local Live Music Models

https://magenta.withgoogle.com/magenta-realtime-2
3•selvan•1h ago•1 comments

BrowseComp-Plus: A More Fair and Transparent Benchmark of Deep-Research Agent

https://github.com/texttron/BrowseComp-Plus
2•colonCapitalDee•1h 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/