frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How to use infer keyword in TypeScript

https://www.geodev.me/blog/how-to-use-the-infer-keyword-in-typescript
1•icelandico_•1m ago•0 comments

To Fight ICE, Portland's Leaders Turn to What They Know Best: Zoning

https://www.nytimes.com/2025/10/20/us/politics/portland-ice.html
1•JumpCrisscross•1m ago•0 comments

Resonant Computing Manifesto

https://resonantcomputing.org/
1•herbertl•3m ago•0 comments

First Self-Propagating Worm Using Invisible Code Hits OpenVSX and VS Code

https://www.koi.ai/blog/glassworm-first-self-propagating-worm-using-invisible-code-hits-openvsx-m...
1•dnslavin•3m ago•0 comments

[Aristotle], On Trolling (2016)

https://philarchive.org/archive/BARAOT-9
1•aebtebeten•4m ago•0 comments

BofA Warns of Forced Stocks Selling If Credit Problems Persist

https://www.bloomberg.com/news/articles/2025-10-20/bofa-warns-of-forced-stocks-selling-if-credit-...
3•zerosizedweasle•6m ago•0 comments

Show HN: NativeBlend – Text to fully editable 3D Models that don't suck

https://native-blend-app.vercel.app/
1•addy999•11m ago•0 comments

What if AI worked like a forest?

https://worldsensorium.com/what-if-ai-worked-like-a-forest/
1•dnetesn•12m ago•0 comments

More Than a Feeling: How awe and wonder transform science and you

https://nautil.us/more-than-a-feeling-1242661/
1•dnetesn•13m ago•0 comments

Graying Hair May Reflect a Natural Defense Against Cancer Risk

https://www.ims.u-tokyo.ac.jp/imsut/en/about/press/page_00079.html
1•geox•15m ago•0 comments

Ask HN: How Do You Hire?

1•lazaruslong•17m ago•1 comments

Anthropic Sandbox Runtime (Srt)

https://github.com/anthropic-experimental/sandbox-runtime
1•lawrencechen•17m ago•0 comments

How YouTube algorithm manufactures consent

https://archive.org/details/youtube-icw
2•lr0•18m ago•0 comments

Go's experimental Green Tea garbage collector didn't help performance

https://www.dolthub.com/blog/2025-09-26-greentea-gc-with-dolt/
1•PaulHoule•18m ago•0 comments

Nix CI Benchmarks

https://garnix-io.github.io/benchmarks/
2•jkarni•18m ago•0 comments

China has 55% of the high-IQ working-age people

https://sofiechan.com/p/4571
6•speckx•18m ago•0 comments

Cancer patients who got a Covid vaccine lived much longer

https://www.sciencedaily.com/releases/2025/10/251019120503.htm
1•amichail•19m ago•0 comments

Europe's plan to ditch US tech is built on open source and it's gaining steam

https://www.zdnet.com/article/europes-plan-to-ditch-us-tech-giants-is-built-on-open-source-and-it...
1•CrankyBear•19m ago•0 comments

Halloween video generated for AWS incident

https://scarystories.live/story/aws-cluster-is-down-i-want-t-58f38c/run/2051
2•gmdnn•20m ago•1 comments

OpenEvidence, the ChatGPT for doctors, raises $200M at $6B valuation

https://techcrunch.com/2025/10/20/openevidence-the-chatgpt-for-doctors-raises-200m-at-6b-valuation/
3•brandonb•20m ago•0 comments

Parallel Updates with Homebrew

https://adrg.se/blog/parallel-updates-with-homebrew
1•behnamoh•20m ago•0 comments

Show HN: Tunneling WireGuard over HTTPS Using Wstunnel

https://kroon.email/site/en/posts/wireguard-wstunnel/
1•resill•20m ago•0 comments

Cropple – A Daily image guessing game

https://cropple.app/
2•leonaves•21m ago•0 comments

Ask HN: What invention/discovery/event do you want to see in your lifetime?

2•Razengan•21m ago•3 comments

AI Is Killing the Magic

https://www.ft.com/content/d003cdfc-aded-4a9d-9a24-e1aff5261cfa
3•bookofjoe•23m ago•1 comments

Ask HN: As a developer, am I wrong to think monitoring alerts are mostly noise?

3•yansoki•23m ago•6 comments

Beyond the Machine

https://frankchimero.com/blog/2025/beyond-the-machine/
1•FromTheArchives•23m ago•0 comments

LeafTok – AI Reading App – Turn Books into Smart Cards

https://leaftok.github.io/site/
1•lsferreira42•25m ago•0 comments

Show HN: Every single network-related tool you'll ever need, in one place

https://networking-toolbox.as93.net/
1•lissy93•25m ago•0 comments

AmigaOS 3.3 Ready for Release in 2026

https://www.facebook.com/HyperionEntertainment/posts/amigaos-33-ready-for-release-in-2026earlier-...
1•doener•25m ago•0 comments
Open in hackernews

Show HN: Visual autocomplete for drawings (real-time Human-AI interaction)

https://github.com/olwal/AiDrawing
4•olwal•3h ago
I've been interested in real-time Human-AI interaction for a while. This project is a prototype closed-loop drawing system, like "visual autocomplete" for drawings. The idea is that the user just draws along with the AI, without disrupting the flow through manual text prompting.

It works by AI continually observing and responding to live drawing on a canvas. A vision model (using Ollama) interprets what it sees, and that description drives real-time image generation (StreamDiffusion).

For real-time performance, this project is built in C++ and Python, leveraging the GPU for Spout-based texture sharing with minimal overhead.

Reusable components include:

- StreamDiffusionSpoutServer: lightweight Python server for real-time image generation with StreamDiffusion. Designed for interfacing with any Spout-compatible software and uses OSC for instructions.

- OllamaClient: minimal C++ library for interfacing with Ollama vision language models. Includes implementations for openFrameworks and Cinder.

The "visual autocomplete" concept has been explored in recent papers (e.g., arxiv.org/abs/2508.19254, arxiv.org/abs/2411.17673).

Hopefully, these open source components can help accelerate others experimenting and advancing this direction!