frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Moss Survives 9 Months in Space Vacuum

https://scienceclock.com/moss-survives-9-months-in-space-vacuum/
1•ashishgupta2209•4m ago•0 comments

mRNA flu vaccine is up to 34.5% more effective than current flu vaccines

https://www.scimex.org/newsfeed/expert-reaction-mrna-flu-vaccine-is-up-to-34-5-percent-more-effec...
2•lysp•7m ago•0 comments

Lester: A New Era for Rotoscoping in Indie Animation and Retro Game Development

https://rtous.github.io/lester/
1•LostMyWords•7m ago•0 comments

Topological Adam: An experiment in energy-stabilized optimization

https://github.com/RRG314/topological-adam
1•sreid90•8m ago•0 comments

Pin Analysis

http://www.datagenetics.com/blog/september32012/index.html
1•WhyNotHugo•10m ago•0 comments

Apple shows how much faster the M5 runs local LLMs compared to the M4

https://9to5mac.com/2025/11/20/apple-shows-how-much-faster-the-m5-runs-local-llms-compared-to-the...
1•geoffbp•13m ago•0 comments

Daily logic puzzles with juicy gossipy themes

https://www.gossipdle.com
1•Qpphello•17m ago•1 comments

Breakthrough in Antimatter Production

https://home.cern/news/news/experiments/breakthrough-antimatter-production
4•thunderbong•20m ago•1 comments

New research reveals the cognitive hurdles created by our number systems

https://www.psypost.org/new-research-reveals-the-cognitive-hurdles-created-by-our-number-systems/
1•DrierCycle•29m ago•0 comments

Re-Centering Academics at Harvard College: Update on Grading and Workload [pdf]

https://chronicle.brightspotcdn.com/76/62/5e01812a413a8a50183c08dc71c5/harvard-grade-report.pdf
1•gmays•30m ago•0 comments

Iran president says capital move now a necessity as water crisis deepens

https://www.iranintl.com/en/202511209098
1•DrierCycle•33m ago•0 comments

Nvidia GPUs Compare to Google's and Amazon's AI Chips [video]

https://www.youtube.com/watch?v=RBmOgQi4Fr0
1•mgh2•33m ago•0 comments

Is there a webpage or service that tailor your style?

1•Joacooribe•42m ago•0 comments

Evidence suggests sex differences in the brain are ancient and evolutionary

https://www.psypost.org/evidence-suggests-sex-differences-in-the-brain-are-ancient-and-evolutionary/
1•DrierCycle•43m ago•0 comments

The housing strategy that has Beverly Hills NIMBYs in a corner

https://www.nytimes.com/2025/11/20/business/economy/california-housing-nimby.html
2•Izikiel43•44m ago•0 comments

Agoda 24-JAM Hubungi 0817395377

1•Outreach_Refer•44m ago•0 comments

Ask HN: Suggest tiny website ideas that I can build this Christmas holiday

1•ms7892•46m ago•0 comments

BranchEducation

https://www.youtube.com/channel/UCdp4_l1vPmpN-gDbUwhaRUQ
1•casey2•49m ago•0 comments

Call Center Agoda Reschedule

https://sites.google.com/view/nomor-call-center-agoda/bio
1•Outreach_Refer•51m ago•3 comments

Auditing JDBC Drivers at Scale with AI led to 85000 bounty

https://www.hacktron.ai/blog/jdbc-audit-at-scale
2•Mohansrk•53m ago•0 comments

Gemini 3 Tools System Prompt

https://gist.github.com/sshh12/ec2c7eb1ae5f156a9cdc8e7f8fef512f
1•sshh12•1h ago•0 comments

Show HN: I made yet another AI headshot app because the world needed one more

https://apps.apple.com/pt/app/ai-headshot-editor-glowtap/id6754992714
1•CarlosArthurr•1h ago•0 comments

Is Apple Intelligence Smart? We Tested Every Feature

https://www.steaktek.com/tech/is-apple-intelligence-actually-smart-we-tested-every-feature/
2•genuser•1h ago•1 comments

Microsoft Will Preload Windows 11 File Explorer to Fix Bad Performance

https://blogs.windows.com/windows-insider/2025/11/21/announcing-windows-11-insider-preview-build-...
32•ksec•1h ago•32 comments

Show HN: 12K Reddit posts scraped and AI-scored for startup ideas

https://search.reddit-business-ideas.workers.dev/
1•shadowjones•1h ago•0 comments

React Suite v6: A Steady Step Toward Modernization

https://medium.com/rsuite/react-suite-v6-a-steady-step-toward-modernization-2af78029978d
2•simonguo•1h ago•1 comments

Ask HN: Where can you find old NetBSD packages?

3•GaryBluto•1h ago•2 comments

Show HN: MoodLens – Provide insights about your emotional state

https://moodlens.aiwith.me/
1•struy•1h ago•0 comments

Cryptographers Held an Election. They Can't Decrypt the Results

https://www.nytimes.com/2025/11/21/world/cryptography-group-lost-election-results.html
3•ceejayoz•1h ago•0 comments

Empathetic, Available, Cheap: When A.I. Offers What Doctors Don't

https://www.nytimes.com/2025/11/16/well/ai-chatbot-doctors-health-care-advice.html
1•uxhacker•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•6mo ago

Comments

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