frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AdbcBridge – any ODBC driver as an Apache Arrow ADBC driver (C, 0.1)

https://github.com/singhpratech/adbcbridge
1•aiexplore369•1m ago•0 comments

MS-Agent is a lightweight framework designed to empower agent auto exploration

https://github.com/modelscope/ms-agent
1•Bluestein•1m ago•0 comments

Please stop flooding our projects with AI slop to furnish your CV

https://neilalexander.dev/2026/06/30/flooding-contributions
2•lr0•2m ago•0 comments

The Cost of Cognitive Debt

https://ljtn.github.io/epiq/blog/cost-of-cognitive-debt.html
1•ionetan•2m ago•0 comments

Convert JPG and PNG tables to editable Excel files with JPG2Excel

https://jpg2excel.app
1•jpg2excel2026•3m ago•0 comments

Show HN: Gluestack – Open-Source UI Components for React and React Native

https://gluestack.io/
1•Harish_0089•3m ago•0 comments

Glippy WebMCP – a coding-agent plugin for making a site usable by browser agents

https://github.com/jbobbink/glippy-webmcp
1•jwbobbink•4m ago•0 comments

Thermal Anomaly Discovered Below Mars's South Pole

https://www.caltech.edu/about/news/thermal-anomaly-discovered-below-marss-south-pole
1•geox•4m ago•0 comments

Show HN: DriftScript – a scripting language for 3D engines

https://script.driftengine.dev/
1•DriftTechnologi•4m ago•0 comments

Why did the CIA chief go to Moscow? We have to assume the worst-case scenario

3•gitowiec•5m ago•0 comments

Junie Can Now Run on Your Mac – No Credits, No Cloud

https://blog.jetbrains.com/junie/2026/08/junie-local-launch/
1•chillax•7m ago•0 comments

The most upvoted Product Hunt launches are no more compliant than the least

https://lawcel.com/blog/compliance-does-not-arrive-with-traction
1•ulfaslak•8m ago•0 comments

Reverse-IP tracking and session logging for high-intent B2B traffic

https://www.dje-ka.com/post/abm-remarketing-engine-dark-web-traffic-saas-pipeline
1•AngelikaAttwood•10m ago•0 comments

AI-Generated ASCII Diagrams

https://www.johndcook.com/blog/2026/08/20/ai-generated-ascii-diagrams/
1•ibobev•11m ago•0 comments

ClickGap: Autonomous QA for ClickHouse

https://clickhouse.com/blog/clickgap-autonomous-qa-for-clickhouse
1•larebz•12m ago•0 comments

CSS Infinity Use Cases

https://nerdy.dev/css-infinity-use-cases
1•ibobev•12m ago•0 comments

Show HN: Claude Code sessions next to the macOS dock

https://github.com/palamim/port
1•leopalamim•14m ago•0 comments

The Foundation owns the IP. DuckLabs ships the release

https://query.farm/blog/ducklabs-ships-the-release/
1•rustyconover•15m ago•0 comments

Why didn't the Windows Entertainment Pack run a DOS version inside an emulator?

https://devblogs.microsoft.com/oldnewthing/20260825-00/?p=112645
3•ibobev•16m ago•0 comments

HuggingBay: Torrent Tracker for AI Models

https://huggingbay.xyz/
1•AbuAssar•17m ago•0 comments

Twitch Giveaway Tool – Pick random winners from Twitch chat

https://spinthewheel.io/more/twitch-giveaway-tool
1•AngelikaAttwood•17m ago•0 comments

Show HN: Remotevibe – remote coding sessions on your own VPS from your phone

https://github.com/alediaferia/remotevibe
1•alediaferia•21m ago•1 comments

Show HN: Ticket Fairy CLI for event ticketing

https://www.ticketfairy.com/cli
1•riteshpatel•21m ago•0 comments

The Independent AI Coding Community for Cursor, Claude Code and LLMs

https://promptcube3.com/en/
1•lucascaijia•21m ago•2 comments

Give this skill to your AI to build decks for you

https://github.com/kritikmodi/deckloom
1•kritikmodi•23m ago•0 comments

Getting a Cease and Desist from Waffle House (2025)

https://www.jack.bio/blog/wafflehouse
1•birdculture•23m ago•0 comments

LetItLoop: Resume crashed AI agent loops with 0% token waste (<1ms resume)

https://github.com/sdageltc/letitloop
1•sdageltc•23m ago•0 comments

To tell if a maze is solvable, just hang it by its corners

https://bsky.app/profile/matthen.com/post/3mtyxnfgd4s2j
1•yen223•29m ago•0 comments

I hear a lot seat based pricing is dead, Pagerduty is no exception

https://github.com/FluidifyAI/Regen
1•furyman•32m ago•0 comments

If I release it, you won't get the same experience I get

https://notes.highlysuspect.agency/cant-release-that.html
1•speckx•33m ago•0 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/