frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Devourer – an open-source file shredder with multi-pass deletion

https://github.com/stgrass3/the-devourer
1•idolium•3m ago•0 comments

Ukrainian troops earn points for filmed kills in military tech 'Amazon'

https://www.businessinsider.com/ukraine-e-points-system-steers-units-toward-more-strategic-target...
1•mywacaday•4m ago•0 comments

Amazon points to water conservation steps in India amid data centre scrutiny

https://www.reuters.com/world/india/amazon-points-water-conservation-steps-india-amid-data-centre...
1•1vuio0pswjnm7•4m ago•1 comments

The failed plan to centralize the nukes

https://signoregalilei.com/2026/06/14/you-need-to-know-about-the-baruch-plan/
1•surprisetalk•5m ago•0 comments

Cocktail Optimization, an Integer Programming Problem

https://bunkum.us/2026/06/18/cocktail-ingredients-milp
1•ftgregg•5m ago•0 comments

Taste – Zero-config session-taste packer for AI agents

https://github.com/dvcoolarun/taste-ai
1•dvcoolarun•6m ago•0 comments

Feedbackmaxxing

https://codemanship.wordpress.com/2026/05/29/feedbackmaxxing/
1•flail•9m ago•0 comments

Le Monde blocked the bots. Now paying readers showing up as agents

https://digiday.com/media/le-monde-blocked-the-bots-now-its-working-out-what-to-do-about-paying-r...
1•giuliomagnifico•10m ago•0 comments

NextWeekAI – the AI tools you'll be using next week

https://nextweekai.com/
1•javatuts•11m ago•0 comments

UK considers putting age limits on VPNs to help enforce social media ban

https://www.ft.com/content/28807e71-b15d-4897-a3fe-0ff47c4abadc
2•zinekeller•12m ago•0 comments

Maven Central limits publishing packages

https://www.sonatype.com/blog/open-publishing-commercial-scale
1•theanonymousone•16m ago•0 comments

FlipCTL – Flipper's GUI framework for cyberdecks

https://blog.flipper.net/flipctl-our-gui-framework-for-embedded-linux-systems/
1•zhovner•17m ago•0 comments

Show HN: Sideffect – Effect like syntax for Cloudflare Workflows

https://github.com/eersnington/sideffect
1•Sreenington•18m ago•0 comments

Finding a Secure Document Editor for Your Organisation

https://www.collaboraonline.com/blog/finding-a-secure-document-editor-for-your-organisation/
1•collaboraonline•18m ago•0 comments

EDR Freeze on macOS

https://northpole.security/blog/edr-freeze
3•plm-nps•21m ago•0 comments

In Defense Of The Preventable Bad Trip

https://substack.com/@jamesmzech/p-200527796
2•optimalsolver•22m ago•0 comments

British Columbia, Time Zones, and Postgres

https://www.crunchydata.com/blog/british-columbia-and-time-zone-changes
2•plaur782•22m ago•0 comments

A frontier AI company should shut down

https://www.lesswrong.com/posts/bStYDEy8PQPt2c3Za/a-frontier-ai-company-should-shut-down
3•prakashqwerty•22m ago•0 comments

AA-Briefcase: a frontier knowledge work evaluation

https://artificialanalysis.ai/articles/aa-briefcase
2•theanonymousone•25m ago•0 comments

Sheaves in Haskell

https://www.tweag.io/blog/2026-06-18-sheaves-in-haskell/
3•ingve•25m ago•0 comments

Steady States in Dyson's Theory of the Cell

https://chillphysicsenjoyer.substack.com/p/steady-states-in-dysons-theory-of
2•crescit_eundo•27m ago•0 comments

US court rules Ohio can restrict children's use of social media

https://www.reuters.com/world/us/us-court-rules-ohio-can-restrict-childrens-use-social-media-2026...
3•1vuio0pswjnm7•30m ago•0 comments

Meta lobbies Congress for protection from child-harm lawsuits

https://www.reuters.com/world/meta-lobbies-congress-protection-child-harm-lawsuits-2026-06-18/
2•1vuio0pswjnm7•31m ago•0 comments

SpaceX shares fall as post-IPO frenzy loses steam

https://www.reuters.com/legal/transactional/spacex-shares-tumble-post-ipo-frenzy-loses-steam-2026...
2•1vuio0pswjnm7•31m ago•0 comments

Bitcoin Has Lost Nearly Half Its Value in 11 Months

https://www.cnbc.com/2026/06/12/bitcoins-price-drop-is-forcing-investors-to-revisit-why-they-own-...
3•throw0101a•31m ago•0 comments

Show HN: Wolffish – An OS personal desktop AI agent

https://www.wolffi.sh/
2•younes-alturkey•33m ago•0 comments

Ask Ad Manager by Google Ads

https://blog.google/products/admanager/ask-ad-manager/
2•czeizel•35m ago•0 comments

XyWrite Source code preserved and buildable on GitHub

2•xyquest4018•35m ago•0 comments

Shutting Down Fornjot

https://fornjot.app/blog/shutting-down-fornjot/
3•ilreb•35m ago•0 comments

Bun (the JavaScript runtime) is being vibe-ported from Zig to rust

https://github.com/oven-sh/bun/blob/claude/phase-a-port/docs/PORTING.md
3•birdculture•36m 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/