frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Good results fine tuning a local LLM like Qwen 3:0.6B to categorize questions

https://www.teachmecoolstuff.com/viewarticle/fine-tuning-a-local-llm-to-categorize-questions
1•dev-experiments•28s ago•0 comments

The Revolution Will Not Be Digitized

https://lareviewofbooks.org/article/social-codes-tech-workers-class-identity-digital-capitalism/
1•colinb•1m ago•0 comments

Simple hard way to conjugate Japanese verbs

https://underreacted.leaflet.pub/3mmevu6woys27
1•valzevul•2m ago•0 comments

Show HN: Real-Life Deception Detection Without Uploading Video

https://github.com/WhissleAI/lie_detection_binary
1•ksingla025•4m ago•0 comments

Evaluating sugar-sweetened beverage tax effects

https://pmc.ncbi.nlm.nih.gov/articles/PMC12669988/
1•luu•8m ago•0 comments

I Canceled My French Tutor and Built an LLM Tool That Does It Better

https://alshe.substack.com/p/i-canceled-my-french-tutor-and-built
1•Anon84•9m ago•0 comments

PebbleOS

https://github.com/coredevices/PebbleOS
1•arbayi•10m ago•0 comments

Robust Jobserver

https://codeberg.org/mlugg/robust-jobserver/src/branch/main/spec.md
1•birdculture•12m ago•0 comments

The Deadly Rise of Giant Trucks and S.U.V.s

https://www.nytimes.com/interactive/2026/06/21/us/trucks-suv-pedestrian-crashes.html
1•xnx•13m ago•0 comments

Migrating from Claude to DeepSeek without breaking everything

https://blog.firetiger.com/migrating-from-claude-to-deepseek-without-breaking-everything/
1•eric_khun•14m ago•0 comments

Compass – guardrails and a hard budget cap for AI coding agents

https://github.com/dshakes/compass
1•chandu1221•17m ago•0 comments

The Crusade of Hormuz

https://www.historytoday.com/archive/history-matters/crusade-hormuz
1•Thevet•22m ago•0 comments

Real-Time GPS Tracking Station

https://www.gps-satellites.com/
1•gnabgib•25m ago•0 comments

Show HN: Fold-logging.nvim – fold logging and debug-print statements in Neovim

https://github.com/markosnarinian/fold-logging.nvim
1•markosn•25m ago•0 comments

Swift, Gay and Pope's season in the sun

https://www.theguardian.com/books/2026/jun/12/the-twitnam-summer-by-hester-grant-review-swift-gay...
1•Petiver•34m ago•0 comments

I just released Mango Launcher

https://www.mangolauncher.com/
2•PinyaApps•35m ago•0 comments

Street Traffic Regulation (1909)

https://rosap.ntl.bts.gov/view/dot/16295
1•willmeyers•37m ago•1 comments

I Gave an AI a Civilization to Run. It Built a Nuke – Launching CivBench

https://www.lwilko.com/blog/i-gave-an-ai-a-civilization
3•LiamWilko•39m ago•2 comments

AI Is Discovering the Doorman Fallacy [video]

https://www.youtube.com/watch?v=f-QzIum9bNU
1•CHB0403085482•41m ago•1 comments

Show HN: Tunr – Expose your local server in 3 seconds

https://github.com/ahmetvural79/tunr
2•ahvural•41m ago•0 comments

Improvements to Std:Format in C++26

https://mariusbancila.ro/blog/2026/06/19/improvements-to-stdformat-in-c26/
1•rbanffy•48m ago•0 comments

Show HN: Bifrost Edge: runs on PC of ur organization and routes all AI traffic

https://docs.getbifrost.ai/edge/overview
2•aanthonymax•50m ago•1 comments

Daily Probiotic May Help Fight Depression in Older Adults

https://scitechdaily.com/scientists-say-a-daily-probiotic-may-help-fight-depression-in-older-adults/
1•Gaishan•51m ago•0 comments

Pixi: Fast, modern, and reproducible package management tool

http://pixi.prefix.dev/latest/
1•__rito__•52m ago•0 comments

Show HN: EGC - MCP server that gives AI coding tools memory across sessions

https://github.com/Fmarzochi/EGC
1•fmarzochi•54m ago•0 comments

PostGIS pull requests just a bunch of AI bots

https://en.osm.town/@zverik/116787982770421751
2•aendruk•55m ago•0 comments

Rent collections are down in New York – and no one's sure why

https://www.politico.com/news/2026/06/21/rent-collections-are-down-in-new-york-and-no-ones-sure-w...
18•JumpCrisscross•1h ago•10 comments

We just shipped something I don't think exists anywhere else in this space

https://www.moodlenstodo.info/
3•MoodlensTodo•1h ago•0 comments

A Small Fintech Challenge, and Why I Let Postgres Hold the Money

https://e-mahmoudi.me/blog/a-small-fintech-challenge-and-why-i-let-postgres-hold-the-money/
2•jeyem•1h ago•0 comments

W: Europe's alternative to mainstream social media

https://www.euronews.com/next/2026/06/19/w-thinks-it-has-the-x-factor-everything-to-know-about-eu...
2•vinni2•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•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/