frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Carcinisation

https://en.wikipedia.org/wiki/Carcinisation
1•yladiz•5m ago•0 comments

Everything is free now, so why not a floating orb in my IDE

https://eighttrigrams.net/post/79
1•eighttrigrams•5m ago•0 comments

US strikes three Iranian oil tankers

https://www.reuters.com/world/middle-east/explosions-heard-near-irans-kharg-island-gulf-origin-un...
3•TechTechTech•5m ago•1 comments

Space industry lacks workers needed to rebuild satellites lost in war: report

https://www.defensenews.com/industry/techwatch/2026/09/04/space-industry-lacks-workers-needed-to-...
4•billybuckwheat•6m ago•0 comments

Lenovo unveils ThinkBook AeroBlade: 14", Ultra 7, 830 grams, solid-state cooling

https://www.notebookcheck.net/Lenovo-unveils-ThinkBook-AeroBlade-14-inch-laptop-that-weighs-under...
3•cromka•9m ago•0 comments

OSHintosh IIxi Works

https://tech.lgbt/@DosFox/117218857930993108
2•mariuz•10m ago•0 comments

OSHintosh – an open source hardware 68000 Macintosh with a Bootable ROM Disk

https://github.com/DosFox1/OSHintosh
1•mariuz•11m ago•0 comments

AfterQuery becomes Y Combinator's fastest-ever unicorn, now valued at $3.2B

https://techcrunch.com/2026/09/01/afterquery-reportedly-becomes-y-combinators-fastest-ever-unicor...
1•andsoitis•12m ago•0 comments

NeurIPS started desk-rejecting papers over references that don't exist

https://strictcite.com/blog/neurips-2026-hallucinated-citations-desk-reject
1•Tughan•13m ago•0 comments

Capta – The Mac screen recorder that edits itself

https://capta.cam/
1•gorgekara•14m ago•0 comments

UN agrees text on lethal autonomous weapons

https://www.dawn.com/news/2027728
2•fork-bomber•15m ago•0 comments

Warmbly: Open-Source Cold Email

https://github.com/warmbly/warmbly
1•handfuloflight•16m ago•0 comments

Bad Apple but It's Frontier Lab Benchmarks [video]

https://www.youtube.com/watch?v=o3CJnpUG3tY
1•TheIronYuppie•16m ago•0 comments

America has a whopping debt. But Europe has the whopping debt problem

https://www.economist.com/europe/2026/09/03/america-has-a-whopping-debt-but-europe-has-the-whoppi...
2•andsoitis•17m ago•1 comments

LLMs as a Cognitive Virus

https://arxiv.org/abs/2609.03344
2•canjobear•18m ago•0 comments

Discord Is Bringing Back Age Verification

https://www.gadgetreview.com/discord-is-bringing-back-age-verification-for-millions-of-users
2•variety8675•19m ago•0 comments

Effect Agent

https://github.com/danieljvdm/effect-agent
1•handfuloflight•20m ago•0 comments

How work makes families more equal

https://www.economist.com/international/2026/09/03/how-work-makes-families-more-equal
1•andsoitis•23m ago•0 comments

Patterns, Predictions, and Actions: A story about machine learning [pdf]

https://mlstory.org/pdf/patterns.pdf
1•Anon84•25m ago•0 comments

NoGraphicsAPI

https://github.com/sebbbi/NoGraphicsAPI
2•coffeeaddict1•25m ago•0 comments

GitHub issues on Laravel open-source packages are disabled now

https://twitter.com/taylorotwell/status/2095516796748996843
2•heyiamlukas•27m ago•1 comments

Does KaiOS sell my text message data?

https://www.reddit.com/r/KaiOS/comments/1w4op2m/does_kaios_sell_my_text_message_data/
1•endofreach•27m ago•0 comments

How (Not) to Find a SWE Job in North America

https://tolkunov.dev/posts/how-to-find-a-job-in-north-america/
2•frant1c•31m ago•0 comments

Kevin Bass on X: "Women gained all of the new jobs since January 2025

https://twitter.com/kevinnbass/status/2096073961524076916
2•bilsbie•33m ago•1 comments

There's No Such Thing as an AI 'Lab'

https://www.theatlantic.com/technology/2026/09/stop-calling-ai-companies-labs/688528/
1•Anon84•33m ago•0 comments

Discrete Dipole Approximation Code Ddscat 7.2 (2012)

https://arxiv.org/abs/1202.3424
1•doener•35m ago•0 comments

OpenSourceRail

https://github.com/modernecotech/OpenSourceRail/tree/main
1•modernecotech•37m ago•1 comments

ISAR Aerospace 5 Sept Mission Onward and Upward

https://isaraerospace.com/mission-updates-overview
2•t43562•39m ago•1 comments

Trump Officials Draft Plan to Pay At-Home Parents, Using Funds for Working Ones

https://www.nytimes.com/2026/09/05/us/politics/stay-at-home-parents-subsidies.html
4•koolba•40m ago•0 comments

Who Killed the American Demoscene? (2019)

https://www.vice.com/en/article/who-killed-the-american-demoscene-synchrony-demoparty/
3•wy35•42m ago•1 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/