frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Pg_AI_query – AI powered SQL inside PostgreSQL

https://github.com/benodiwal/pg_ai_query
1•benodiwal•3m ago•0 comments

Leaked Celebrite Android Payload

https://donotsta.re/notice/B0etpuWyWytSdbRnTU
1•Aissen•3m ago•0 comments

Coffee Making

https://tldp.org/HOWTO/html_single/Coffee/
1•Lunar5227•4m ago•0 comments

Chinese businesses are transforming Mexico City's poshest neighborhood

https://restofworld.org/2025/chinese-tech-companies-mexico-city/
1•Brajeshwar•7m ago•0 comments

Founder-led sales, from the perspective of a Founder, leading sales

https://substack.com/inbox/post/180021176
1•mnbbrown•10m ago•0 comments

OpenDesk 1.10. Enhanced security architecture

https://www.opendesk.eu/en/blog/opendesk-1-10
1•doener•14m ago•0 comments

Tell HN: Stall AI progress for the benefit of humanity

1•blutoot•17m ago•2 comments

Show HN: Whisper Money – A privacy‑first, E2E encrypted personal finance app

https://github.com/whisper-money/whisper-money
1•falcon_•20m ago•0 comments

Show HN: Flux 2–High-Fidelity Image Generation with Multi-Reference Consistency

https://www.fluxproai.net/?i=d1d5k
2•lu794377•25m ago•0 comments

Show HN: Fixing LLM memory degradation in long coding sessions

https://github.com/robertomisuraca-blip/LLM-Entropy-Fix-Protocol
2•robertomisuraca•25m ago•0 comments

Tell HN: DuckDuckGo doesn't have bangs for Chatbots like ChatGPT, Grok, Gemini

1•faebi•28m ago•1 comments

Record Club: indie social network for music lovers

https://record.club/
1•thwg•30m ago•1 comments

RL is more information inefficient than you thought

https://www.dwarkesh.com/p/bits-per-sample
2•cubefox•32m ago•0 comments

Show HN: I built a language learning movie app

https://kanjieight.vercel.app/
1•Mikecraft•36m ago•0 comments

How to Synthesize a House Loop

https://loopmaster.xyz/tutorials/how-to-synthesize-a-house-loop
2•stagas•40m ago•0 comments

Morgan Stanley Warns Oracle Credit Protection Nearing Record High – Above 2008

https://www.bloomberg.com/news/articles/2025-11-26/morgan-stanley-warns-oracle-credit-protection-...
3•zerosizedweasle•41m ago•1 comments

DARPA Lift Challenge

https://www.darpa.mil/news/2025/lift-challenge
2•T-A•44m ago•0 comments

Deploying a back end on UpCloud without containers or orchestration (demo video

https://youtu.be/OpRDVpvT5Ak?si=rVUcSk4iKP2yIxAR
1•Nimer•45m ago•1 comments

How to Create an Effective Prompt for Nano Banana Pro

https://www.radicalcuriosity.xyz/p/how-to-create-an-effective-prompt
3•simonebrunozzi•46m ago•0 comments

Show HN: I built a tool to help find profitable creator niches

https://www.clurly.com
1•marksaver•48m ago•0 comments

Bionic Limbs

https://www.bloomberg.com/news/audio/2025-11-20/bloomberg-businessweek-daily-bionic-limbs-podcast
2•I_Nidhi•52m ago•0 comments

NHS Open Source Policies – All Removed [video]

https://youtube.com/watch?v=dQqFNP39sKM
3•jesprenj•53m ago•2 comments

Bollock to GitHub

https://samthursfield.wordpress.com/2025/11/27/bollocks-to-github/
1•icar•54m ago•0 comments

Stripe had enough of fake 10k MRR posts

https://twitter.com/stripe/status/1993382198851100733
2•marcelbundle•55m ago•0 comments

Show HN: Unified memory across all LLMs

https://hiperyon.com/
2•Ambroise75•55m ago•0 comments

Click to call no longer working (tell:) (on desktop)

https://support.google.com/chrome/thread/214777576/click-to-call-no-longer-working?hl=en
1•chagaif•1h ago•1 comments

Old PC

https://old-pc-x.vercel.app
3•Areibman•1h ago•0 comments

URL in C Puzzle

https://susam.net/url-in-c.html
2•birdculture•1h ago•0 comments

Finding the grain of sand in a heap of Salt

https://blog.cloudflare.com/finding-the-grain-of-sand-in-a-heap-of-salt/
1•privacyops•1h ago•0 comments

Is psql's scripting language Turing complete? Or: Fibonacci in psql

https://www.enterprisedb.com/blog/psqls-scripting-language-turing-complete-or-fibonacci-psql
2•ingve•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/