frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Samosa Chat: Run Qwen3.6-35B-A3B Locally on a 16 GB Apple Silicon Mac

https://github.com/deepanwadhwa/samosa-chat
1•dwa3592•1m ago•0 comments

Ptolemaic and LLM Architecture Compared (In 3D)

https://celestial-llm-mirror.vercel.app/
1•mikemangialardi•3m ago•0 comments

Dell Is on a Roll with the XPS

https://world.hey.com/dhh/dell-is-on-a-roll-with-the-xps-5a09a84e
1•dotcoma•4m ago•0 comments

GPT 5.6 Sol Pro disproves long-standing hypothesis in statistics

https://twitter.com/i/status/2077082912021786660
1•qsi•4m ago•1 comments

John Archibald Wheeler: It from Bit

https://en.wikipedia.org/wiki/John_Archibald_Wheeler
1•lioeters•10m ago•1 comments

Fix CSS Problems

https://www.fix-css.com/
1•ilreb•11m ago•0 comments

vLLM prefill paired with TileRT decode

https://vllm.ai/blog/2026-07-14-vllm-tilert-pd
2•ilreb•13m ago•0 comments

3k-year-old Egyptian tomb with vivid afterlife paintings uncovered near Luxor

https://www.euronews.com/culture/2026/07/14/3000-year-old-egyptian-tomb-with-vivid-afterlife-pain...
3•devonnull•14m ago•0 comments

White House launches AI cybersecurity clearinghouse

https://www.cnn.com/2026/07/14/tech/ai-cybersecurity-clearing-house-white-house
1•1659447091•15m ago•0 comments

Cicada- an agentic Python IDE Free to use ( comes with built in small model)

https://github.com/godsonj64/Cicada/releases/tag/v0.4.0
1•godsonj64•15m ago•1 comments

Show HN: PullCard – Pull your AI coding style as a holographic trading card

https://pullcard.sakimyto.com
1•sakimyto•17m ago•0 comments

Show HN: I built an AI agent memory engine because Obsidian wasn't cutting it

https://perseus.observer/blog/built-perseus-vault-obsidian-wasnt-cutting-it/
1•perseusai•22m ago•0 comments

TPU and GPU Clusters: The Anatomy of Collective Communication

https://www.aleksagordic.com/blog/collective-operations
1•npalli•24m ago•0 comments

When China's open-source AI is a trap

https://www.economist.com/international/2026/07/14/when-chinas-open-source-ai-is-a-trap
1•andsoitis•25m ago•1 comments

Data for Agents

https://huggingface.co/blog/nvidia/open-data-for-agents
1•gmays•26m ago•0 comments

Midnight social media curfew proposed for older UK teens

https://www.bbc.com/news/articles/c982857nlrlo
2•dabinat•28m ago•0 comments

High-Bandwidth Flash offers efficient storage for model weights

https://spectrum.ieee.org/high-bandwidth-flash
1•Gaishan•29m ago•0 comments

Cisco licenses iOS name to Apple, screenshot shows iWork on iPhone (2010)

https://appleinsider.com/articles/10/06/08/cisco_licenses_ios_name_to_apple_screenshot_shows_iwor...
1•thunderbong•29m ago•0 comments

A Magazine with One Subscriber

https://matthodges.com/posts/2026-07-12-personal-magazine-claude-codex/
1•jv22222•31m ago•1 comments

When AI gets a pass: the rise of 'AI Exceptionalism'

https://www.magiclasso.co/insights/ai-exceptionalism/
2•bentocorp•31m ago•0 comments

Show HN: Gomoku AI Edu – A Native macOS Gomoku Game with AI Opponent

https://gomoku.w3cub.com/
1•terryXyz•33m ago•0 comments

UEFI shims undermining Secure Boot

https://www.welivesecurity.com/en/eset-research/forgotten-uefi-shims-undermining-secure-boot/
3•gnabgib•40m ago•0 comments

6 months of OpenClaw

https://notesbylex.com/6-months-of-openclaw
1•lexandstuff•42m ago•0 comments

Show HN: A web based VistaPro clone

https://toby.github.io/vista/
1•tobypadilla•43m ago•0 comments

Microsoft's Secure Boot has been broken for a decade and no one noticed

https://arstechnica.com/security/2026/07/microsoft-secure-boot-has-been-broken-for-most-of-its-ex...
3•Gaishan•46m ago•1 comments

Global Warming at 3 °C by 2050? What's Behind the New German Climate Warning

https://worldcrunch.com/focus/green-or-gone/global-warming-at-3c-by-2050-what-s-behind-the-new-ge...
7•tejohnso•49m ago•1 comments

Making it easier to party is becoming serious public policy

https://www.economist.com/united-states/2026/07/14/cities-are-rethinking-what-happens-after-dark
1•petethomas•50m ago•0 comments

The Web Won Because It Got Easier

https://www.gordonmclean.co.uk/2026/06/18/on-the-indiefediactivitymastoweb/
1•zetamax•52m ago•0 comments

Teleparallel Gravity: From Theory to Cosmology(2021)

https://arxiv.org/abs/2106.13793
1•rolph•57m ago•0 comments

Piuma – A minimal, feather-weight, site builder in Go

https://github.com/sprawz/piuma
1•H501•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/