frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The $15 Servo Rabbit Hole: STS3215 Servo Hacking

https://www.enigma.inc/posts/sts3215-servo-hacking
1•ronfriedhaber•44s ago•0 comments

When the Red Light Goes On: How We Responded to the Linux Kernel 0-Day

https://nine.ch/en/blog/linux-kernel-0day-copy-fail/
1•nine_ch•1m ago•1 comments

To See Clearly, Annie Dillard

https://renovare.org/articles/to-see-clearly
1•mrmarket•1m ago•0 comments

The Download: AI's trillion-dollar gamble and OpenAI's biology data bid

https://www.technologyreview.com/2026/09/16/1144205/the-download-ai-trillion-dollar-build-openai-...
1•joozio•1m ago•0 comments

Iran school bombing: grounds to believe US was behind atrocity, UN finds

https://www.theguardian.com/world/2026/sep/17/iran-school-bombing-un-mission-us-military-behind-a...
2•hebelehubele•3m ago•0 comments

Architecting a Desktop App in 2026

https://www.fileside.app/blog/2026-09-09_architecting-desktop-app/
1•sharevari•6m ago•0 comments

Carney embraces a proposal for Canada to become the EU's first associate member

https://www.msn.com/en-za/news/other/carney-embraces-a-proposal-for-canada-to-become-the-european...
1•thunderbong•7m ago•0 comments

The Mathematics of Software Engineering

https://engineering.moniepoint.com/how-to-use-queueing-theory-to-stop-your-database-from-crashing
1•CellsD•8m ago•0 comments

How to Stop Data Centers from Grabbing Too Much Power, by Pedro Sanchez

https://www.bloomberg.com/opinion/articles/2026-09-17/ai-boom-how-to-stop-data-centers-from-takin...
3•mriet•9m ago•1 comments

BYD undercuts the Model 3 with its new Formula S EV, starting at under $29,000

https://electrek.co/2026/09/16/byd-undercuts-tesla-new-formula-s-ev-starting-29000/
2•cisc•9m ago•0 comments

Show HN: GLM-5.3 744B at 4 tok/s on a MacBook Pro, experts streamed from 4 SSDs

https://github.com/argonautlabsai/argodrive
2•Argonautlabs•10m ago•0 comments

A 99-year-old mathematician unraveled a century-old braid mystery

https://www.scientificamerican.com/article/how-a-99-year-old-mathematician-unraveled-a-century-ol...
2•prmph•10m ago•0 comments

Migrating the GitHub Copilot Runtime to Rust, Using Copilot

https://github.blog/ai-and-ml/generative-ai/migrating-the-github-copilot-runtime-to-rust-using-co...
2•CoderLim110•12m ago•0 comments

OpenAI admits its agents went off the rails another six times

https://www.theregister.com/ai-and-ml/2026/09/17/openai-admits-its-agents-went-off-the-rails-anot...
3•Lio•16m ago•2 comments

A Third of European Companies Turned DMARC on and Get No Reports Back

https://ciphercue.com/blog/europe-dmarc-reports-us-processors
2•adulion•17m ago•0 comments

Neovim have a ~$800k Bitcoin donation sitting untouched since 2023

3•jakemanger•19m ago•0 comments

When did we stop looking up?

https://ahmedhossamdev.com/writing/when-did-we-stop-looking-up/
4•ahmedhossamdev•19m ago•0 comments

Show HN: Berry Avenue Codes – a fast directory of Roblox asset IDs

https://berryavenuecodes.com/
1•richardharmer•19m ago•0 comments

Ask HN: What is your approach to sensitive data in LLM prompts and traces?

1•Securelytixdev•20m ago•2 comments

Show HN: Windows Automation Tool – System Center Orchestrator Replacement

https://github.com/Sev7eNup/NodePilot
1•Sev7eNup•22m ago•0 comments

Get Free SEO Backlinks

https://indexyour.link/
2•ajonline•23m ago•0 comments

EU moves toward restricting social media access for under-15s

https://www.euronews.com/my-europe/2026/09/15/leak-eu-commission-to-pitch-social-media-restrictio...
2•akyuu•28m ago•0 comments

Better Vector Search for Long Documents: Chunking Inside Manticore Search

https://manticoresearch.com/blog/auto-chunking/
8•GloriaVinogrado•33m ago•0 comments

Capturing Implicit Feedback from Users

https://langfuse.com/academy/monitoring/capturing-signals
1•clemo_ra•36m ago•0 comments

The White House Tussle to Sway Trump on AI

https://www.wsj.com/tech/ai/inside-the-white-house-tussle-to-sway-trump-on-ai-0043d567
3•tosh•39m ago•0 comments

Introducing GNOME 51, "A Coruña"

https://release.gnome.org/51/
2•coffeeaddict1•40m ago•0 comments

Libinput 1.32 Released with Circular Scrolling Support for Circular Touchpads

https://www.phoronix.com/news/libinput-1.32-Released
1•rbanffy•43m ago•0 comments

ARST ARSW: Star Wars sorted alphabetically (2014) [video]

https://www.youtube.com/watch?v=5GFW-eEWXlc
1•kristianp•43m ago•0 comments

Spiral Galaxies Font

https://erikdemaine.org/fonts/spiralgalaxies/
1•Bluestein•44m ago•0 comments

Noise wants to help everyday people become paid content creators

https://techcrunch.com/2026/09/16/noise-wants-to-help-everyday-people-become-paid-content-creators/
3•soltanov•46m ago•1 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/