frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SAP just made the opposite bet from every other enterprise platform on AI agents

https://www.sap.com/documents/2026/04/dce9aee4-497f-0010-bca6-c68f7e60039b.html
1•millen_crusader•1m ago•0 comments

Google Research: A new light on neural connections

https://research.google/blog/a-new-light-on-neural-connections/
1•theorchid•2m ago•0 comments

GPT 5.5 flags accounts for "potential high-risk cybersecurity"

https://twitter.com/banteg/status/2047577218142871949
2•stared•4m ago•0 comments

Ask HN: Is Zuckerberg just a „one-hit-wonder"?

1•fandorin•5m ago•0 comments

The Lost Art of Structure Packing

http://www.catb.org/esr/structure-packing/
1•tosh•5m ago•0 comments

LinkedIn Premium Does Not Boost Your Posts

https://andrewpwheeler.com/2026/04/25/linkedin-premium-does-not-boost-your-posts/
1•apwheele•6m ago•0 comments

Flinku – I built a Firebase Dynamic Links replacement after the shutdown

https://www.flinku.dev/
1•luky_dev•6m ago•1 comments

Chernobyl 40 Years On

https://www.thetimes.com/world/europe/article/chernobyl-disaster-what-happened-why-nv2q28z9n
1•beejiu•8m ago•0 comments

Lambda Calculus Benchmark for AI

https://victortaelin.github.io/lambench/
1•marvinborner•9m ago•0 comments

KDE Plasma adds support for hardware overlay planes on Intel GPUs

https://www.neowin.net/news/good-news-for-intel-users-as-kde-adds-support-for-a-feature-amd-users...
1•bundie•11m ago•0 comments

RSME: A lightweight reactive encryption algorithm with internal anomaly sensing

https://zenodo.org/records/19712564
1•RanggaS•12m ago•1 comments

Discret 11, the French TV encryption of the 80s

https://fabiensanglard.net/discret11/
2•adunk•15m ago•0 comments

Roboticist-Turned-Teacher Built a Life-Size Replica of Eniac

https://spectrum.ieee.org/roboticist-turned-teacher-eniac-replica
2•pseudolus•15m ago•0 comments

Choose a Reliable Ruby on Rails Dev Partner for Ongoing Maintenance and Features

https://railsfever.com/blog/rails-development-partner-maintenance-feature-work/
3•quantum_mech•18m ago•0 comments

Only One Side Will Be the True Successor to MS-DOS – Windows 2.x

https://blisscast.wordpress.com/2026/04/21/windows-2-gui-wonderland-12a/
3•keepamovin•22m ago•0 comments

A web-based RDP client built with Go WebAssembly and grdp

https://github.com/nakagami/grdpwasm
4•mariuz•26m ago•0 comments

The eerie abandoned vehicles in Chernobyl's 'dead zone'

https://www.bbc.com/future/article/20260424-the-eerie-abandoned-vehicles-in-chernobyls-dead-zone
2•stephen-hill•26m ago•0 comments

Ask HN: Do you know the problem of "14" in India?

2•wasimsk•34m ago•0 comments

Amália- Open Source Large Language Model (LLM) for European Portuguese

https://portugal.gov.pt/gc24/comunicacao/noticias/modelo-de-linguagem-em-grande-escala-para-a-lin...
5•marcogarces•36m ago•1 comments

Another Microsoft Copilot AD injected into 4M GitHub commits

https://twitter.com/jitbit/status/2047990043688464443
4•jitbit•37m ago•1 comments

Martin Galway's music source files from 1980's Commodore 64 games

https://github.com/MartinGalway/C64_music
3•ingve•39m ago•0 comments

Morpheus spyware hijacks WhatsApp via fake Android update app

https://www.notebookcheck.net/Morpheus-spyware-hijacks-WhatsApp-via-fake-Android-update-app.12828...
2•DarrylLinington•41m ago•0 comments

With TPU 8, Google Makes GenAI Systems Better, Not Just Bigger

https://www.nextplatform.com/compute/2026/04/24/with-tpu-8-google-makes-genai-systems-much-better...
2•rbanffy•42m ago•0 comments

Happy Horse AI

https://www.happyhorseai.store
4•alanzhan•43m ago•0 comments

South Korean workers learn AI after work, outpacing their companies

https://english.kyodonews.net/articles/-/74668
1•01-_-•43m ago•0 comments

PR: Tim Cook Apple Investors: Drop Dead (2014)

https://nationalcenter.org/ncppr/2014/02/28/tim-cook-to-apple-investors-drop-dead/
4•SanjayMehta•44m ago•1 comments

Intel soars on signs AI boom for CPUs is here

https://www.reuters.com/business/intel-set-record-high-ai-driven-cpu-demand-powers-upbeat-forecas...
4•01-_-•44m ago•0 comments

Cafestol/kahweol concentrations in workplace machine coffee vs. other brewing

https://www.nmcd-journal.com/article/S0939-4753(25)00087-0/fulltext
3•beeforpork•46m ago•0 comments

Spotify: The archive – the tech behind your 2025 wrapped highlights

https://engineering.atspotify.com/2026/3/inside-the-archive-2025-wrapped
1•theorchid•46m ago•0 comments

Serendipity Machines

https://www.shishyko.com/essays/serendipity-machines.html
1•shishy•52m ago•0 comments
Open in hackernews

Automatically add missing "async/await" keywords to your TypeScript code

https://github.com/stanNthe5/typescript-autoawait
7•theThree•11mo ago

Comments

bastawhiz•11mo ago
Is this a problem that people actually have?
xeromal•11mo ago
Fun side project man!
primitivesuave•11mo 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•11mo 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•11mo ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•11mo 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•11mo ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/