frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Medical Student Created Top Influencer 'Emily Hart' Using AI, Making $ Thousands

https://www.ibtimes.co.uk/ai-generated-influencer-emily-hart-maga-1793120
1•Baljhin•4m ago•0 comments

The System of Context for Production AI

https://www.mezmo.com/aura
1•pranay01•7m ago•0 comments

Nev – keyboard focused GUI and terminal text editor

https://github.com/Nimaoth/Nev
1•archargelod•10m ago•0 comments

I used to generically engineer plants to increase yield,now I sell garlic online

https://Demeterfamilyfarm.com
1•Hilliard_Ohiooo•11m ago•0 comments

XOXO Festival Archive

https://xoxofest.com/
1•surprisetalk•15m ago•0 comments

Introducing Data Exports

https://socket.dev/blog/introducing-data-exports
1•ilreb•21m ago•0 comments

Show HN: RustNmap

1•greatwallisme•22m ago•0 comments

These are the countries moving to ban social media for children

https://techcrunch.com/2026/04/23/social-media-ban-children-countries-list/
1•evo_9•27m ago•0 comments

AI agent designs a complete RISC-V CPU from 219-word spec sheet in just 12 hours

https://www.tomshardware.com/tech-industry/artificial-intelligence/ai-agent-designs-a-complete-ri...
2•maxloh•28m ago•0 comments

Fancy-Regex 0.18.0 Release

https://github.com/fancy-regex/fancy-regex/releases/tag/0.18.0
1•indentit•29m ago•1 comments

Why I Write (1946)

https://www.orwellfoundation.com/the-orwell-foundation/orwell/essays-and-other-works/why-i-write/
9•RyanShook•29m ago•0 comments

Vibe Check: GPT-5.5 Has It All

https://every.to/vibe-check/gpt-5-5
1•swolpers•30m ago•0 comments

Cert-Checker

https://github.com/mrtoadie/go-check-cert
1•ashitlerferad•34m ago•0 comments

A Eulogy for Vim

https://drewdevault.com/blog/Forking-vim/
2•signa11•34m ago•1 comments

Short and Long-Term Consequences of Intra-Household Disease Spread [pdf]

https://www.nber.org/system/files/working_papers/w29524/w29524.pdf
1•alphabetatango•39m ago•0 comments

Project Omni

https://github.com/misaeldasilva123ms96-commits/Projeto-Omni
1•zaydenrivas•43m ago•0 comments

Too much noise with AI startups

1•xtannotnoise•43m ago•0 comments

Apple Changes Prongs on MacBook Chargers; Breaks Compatibility

https://discussions.apple.com/thread/256262949?sortBy=rank
1•gardnr•43m ago•1 comments

Show HN: Trustless Campaigns – Gecko transforms brand-creator deals

https://www.geckovision.tech
1•ernanibmurtinho•44m ago•0 comments

A flood of useful security reports

https://lwn.net/Articles/1066581/
1•signa11•46m ago•0 comments

Show HN: Sprite sheets from prompts (Codex skill)

https://github.com/0x0funky/agent-sprite-forge
1•super135799•46m ago•0 comments

The George Business, by Roger Zelazny (1980)

https://www.eternal-flame.org/library/oldlibrary/georgebusiness.html
1•xeonmc•47m ago•0 comments

Canonical Releases Ubuntu 26.04 LTS Resolute Raccoon

https://ubuntu.com//blog/canonical-releases-ubuntu-26-04-lts-resolute-raccoon
2•jruohonen•48m ago•1 comments

Ireland must recuse itself from EU Presidency digital files

https://www.iccl.ie/press-release/ireland-recuse-eu-presidency-digital-files-enforce/
1•jruohonen•51m ago•2 comments

How Hard Is It to Open a File?

https://blog.sebastianwick.net/posts/how-hard-is-it-to-open-a-file/
1•ffin•54m ago•0 comments

US climate sees decline in both hot and cold extreme temperatures since 1899

https://phys.org/news/2026-04-climate-decline-hot-cold-extreme.html
1•plun9•56m ago•1 comments

Mojo language, any hardware. Systems-level performance. Pythonic syntax

https://www.modular.com/open-source/mojo
1•KnuthIsGod•57m ago•0 comments

Agyn: A Multi-Agent System for Team-Based Autonomous Software Engineering

https://arxiv.org/abs/2602.01465
1•wek•58m ago•0 comments

Bret Taylor's Sierra Buys YC-Backed AI Startup Fragment

https://techcrunch.com/2026/04/23/bret-taylors-sierra-buys-yc-backed-ai-startup-fragment/
1•zachdotai•1h ago•0 comments

Light-activated material offers new approach to carbon dioxide conversion

https://phys.org/news/2026-03-material-approach-carbon-dioxide-conversion.html
1•PaulHoule•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•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/