Oliver Prompts's banner
Oliver Prompts's profile picture

Oliver Prompts

@oliviscusAI20,956 subscribers

Helping you understand AI. Software Engineer. Opinions are personal. DM for collabs.

Shorts

There's an open-source home robot vacuum you can actually build yourself. It's called OOMWOO. Runs on a Raspberry Pi with 2D LiDAR mapping, ROS2 navigation, and native Home Assistant integration. No cloud dependency, no vendor lock-in. The team spent real time researching before designing it. They reviewed the entire 2025-2026 robot vacuum market, from budget to flagship, and found real-world cleaning doesn't track advertised suction power. The anti-tangle brush design alone is worth mentioning. A tapered rubber roller that resists hair-wrap, one of the most common complaints with commercial models, easy to 3D-print yourself. If you've got a Raspberry Pi and a 3D printer sitting around, this is a genuinely interesting weekend project.

There's an open-source home robot vacuum you can actually build yourself. It's called OOMWOO. Runs on a Raspberry Pi with 2D LiDAR mapping, ROS2 navigation, and native Home Assistant integration. No cloud dependency, no vendor lock-in. The team spent real time researching before designing it. They reviewed the entire 2025-2026 robot vacuum market, from budget to flagship, and found real-world cleaning doesn't track advertised suction power. The anti-tangle brush design alone is worth mentioning. A tapered rubber roller that resists hair-wrap, one of the most common complaints with commercial models, easy to 3D-print yourself. If you've got a Raspberry Pi and a 3D printer sitting around, this is a genuinely interesting weekend project.

584,798 просмотров

someone just open-sourced their own neuro-sama. and it might be better than the original. it's called airi. a fully autonomous ai companion that talks to you in real time, plays minecraft and factorio with you, chats on discord and telegram, and has a live2d/vrm avatar body. runs entirely on your machine. → real-time voice conversations, speech recognition → animated avatar with auto-blink, eye tracking, idle animations → persistent memory across sessions → local inference via webgpu, no api calls needed supports 30+ llm providers, openai, claude, gemini, deepseek, ollama, groq, mistral, xai, local models. swap the brain with a config change. runs on native cuda and apple metal for real gpu acceleration. 17.5k stars. 101 contributors. 46 releases. 100% free. open source.

someone just open-sourced their own neuro-sama. and it might be better than the original. it's called airi. a fully autonomous ai companion that talks to you in real time, plays minecraft and factorio with you, chats on discord and telegram, and has a live2d/vrm avatar body. runs entirely on your machine. → real-time voice conversations, speech recognition → animated avatar with auto-blink, eye tracking, idle animations → persistent memory across sessions → local inference via webgpu, no api calls needed supports 30+ llm providers, openai, claude, gemini, deepseek, ollama, groq, mistral, xai, local models. swap the brain with a config change. runs on native cuda and apple metal for real gpu acceleration. 17.5k stars. 101 contributors. 46 releases. 100% free. open source.

286,924 просмотров

Microsoft killed the GPU mafia 🤯 They finally open-sourced their 1-bit LLM inference framework called bitnet.cpp. It lets you run 100B parameter models on your local CPU without GPUs. - 6.17x faster inference - 82.2% less energy on CPUs 100% Open Source.

Microsoft killed the GPU mafia 🤯 They finally open-sourced their 1-bit LLM inference framework called bitnet.cpp. It lets you run 100B parameter models on your local CPU without GPUs. - 6.17x faster inference - 82.2% less energy on CPUs 100% Open Source.

1,631,010 просмотров

"AI 3D models look melted" is officially outdated. Tripo's HD Model 3.1 outputs high-detail models with clean topology, ready for 3D printing, games, or film. No manual modeling.

"AI 3D models look melted" is officially outdated. Tripo's HD Model 3.1 outputs high-detail models with clean topology, ready for 3D printing, games, or film. No manual modeling.

208,238 просмотров

a Vietnamese AI engineer just built a real-time system that counts objects moving down a conveyor belt. it runs on ultralytics' objectcounter. train a detector, define the region you care about, and it handles the rest. works for anything on a line, parts, packages, produce. the clever bit: instead of hand-labeling thousands of frames, he took a single frame, pre-annotated it with meta's segment anything (sam-2, built into ultralytics), and trained yolo11-nano on just that. one annotated frame, and it tracks objects accurately across the entire video.

a Vietnamese AI engineer just built a real-time system that counts objects moving down a conveyor belt. it runs on ultralytics' objectcounter. train a detector, define the region you care about, and it handles the rest. works for anything on a line, parts, packages, produce. the clever bit: instead of hand-labeling thousands of frames, he took a single frame, pre-annotated it with meta's segment anything (sam-2, built into ultralytics), and trained yolo11-nano on just that. one annotated frame, and it tracks objects accurately across the entire video.

29,631 просмотров

Every AI agent scraping the web right now is running full chrome to do it. rendering a UI nobody looks at, for a browser that never displays a single pixel. lightpanda skips that entirely. written from scratch in zig, not a chromium fork, and it's 11x faster with 9x less memory than chrome in headless mode. → one-line docker install → drops into playwright, puppeteer, and chromedp through cdp, port 9222 11.8k stars for something that basically asks why you were running a full desktop browser to fetch json.

Every AI agent scraping the web right now is running full chrome to do it. rendering a UI nobody looks at, for a browser that never displays a single pixel. lightpanda skips that entirely. written from scratch in zig, not a chromium fork, and it's 11x faster with 9x less memory than chrome in headless mode. → one-line docker install → drops into playwright, puppeteer, and chromedp through cdp, port 9222 11.8k stars for something that basically asks why you were running a full desktop browser to fetch json.

39,629 просмотров

this might be the E2B killer for AI agent sandboxes. forkd is an open-source microVM sandbox runtime built on Firecracker, made for AI agent fan-out, code interpreters, eval harnesses, anything that spins up a lot of short-lived sandboxes. before: every sandbox cold-boots its own VM and re-imports the whole runtime from scratch, numpy, torch, JIT compilation, model weights, all of it. now: forkd boots one parent VM once, warms it with your runtime already imported, then forks children from that snapshot using copy-on-write memory. the repo's own benchmark: spawning 100 sandboxes takes 101ms with forkd, versus 759ms for a raw Firecracker cold-boot, and well over a minute for Docker or gVisor. the SDK is a literal drop-in for E2B's Python client, so if you're already running code-interpreter agents on it, swapping the import line gets you a self-hosted runtime with the same isolation model at a fraction of the per-sandbox cost. pre-built recipes ship for e2b-style code interpreters, Jupyter kernels, SWE-bench coding agents, and Playwright browser fan-out

this might be the E2B killer for AI agent sandboxes. forkd is an open-source microVM sandbox runtime built on Firecracker, made for AI agent fan-out, code interpreters, eval harnesses, anything that spins up a lot of short-lived sandboxes. before: every sandbox cold-boots its own VM and re-imports the whole runtime from scratch, numpy, torch, JIT compilation, model weights, all of it. now: forkd boots one parent VM once, warms it with your runtime already imported, then forks children from that snapshot using copy-on-write memory. the repo's own benchmark: spawning 100 sandboxes takes 101ms with forkd, versus 759ms for a raw Firecracker cold-boot, and well over a minute for Docker or gVisor. the SDK is a literal drop-in for E2B's Python client, so if you're already running code-interpreter agents on it, swapping the import line gets you a self-hosted runtime with the same isolation model at a fraction of the per-sandbox cost. pre-built recipes ship for e2b-style code interpreters, Jupyter kernels, SWE-bench coding agents, and Playwright browser fan-out

20,005 просмотров

Wow.. you can now instantly turn any GitHub repo into AI-generated documentation, just by changing the URL. Replace “github” with “deepwiki” in any GitHub URL and you’ll see: → Instant docs for any codebase → Chat with it like a conversation

Wow.. you can now instantly turn any GitHub repo into AI-generated documentation, just by changing the URL. Replace “github” with “deepwiki” in any GitHub URL and you’ll see: → Instant docs for any codebase → Chat with it like a conversation

122,082 просмотров

this free tool turns any browser session into a shared, watchable stream it's called neko. it streams a full desktop browser out of a docker container over webrtc, so multiple people can watch and control the same session in real time instead of relying on screen share. → multi-user control, not just viewing → built-in audio streaming, unlike guacamole or novnc → works for watch parties, remote testing, or shared demos free to self-host.

this free tool turns any browser session into a shared, watchable stream it's called neko. it streams a full desktop browser out of a docker container over webrtc, so multiple people can watch and control the same session in real time instead of relying on screen share. → multi-user control, not just viewing → built-in audio streaming, unlike guacamole or novnc → works for watch parties, remote testing, or shared demos free to self-host.

30,844 просмотров

every "open-source humanoid" i click on turns out to be a robot that stands still for one demo and can't be reproduced. roboto_origin runs and jumps, and every part is actually sourceable. structure, electronics, training code, all public. you can build this one, not just watch its video.

every "open-source humanoid" i click on turns out to be a robot that stands still for one demo and can't be reproduced. roboto_origin runs and jumps, and every part is actually sourceable. structure, electronics, training code, all public. you can build this one, not just watch its video.

12,004 просмотров

Someone just built a AI agent that connects to blender and builds full 3d models from a single image.

Someone just built a AI agent that connects to blender and builds full 3d models from a single image.

53,647 просмотров

An 100% open-source rival to n8n just launched. Sim is a drag-and-drop platform for building agentic workflows that runs entirely on your local machine. → Visual, Figma-like canvas interface → Works with any local LLM via Ollama → Native MCP support to connect 100+ tools

An 100% open-source rival to n8n just launched. Sim is a drag-and-drop platform for building agentic workflows that runs entirely on your local machine. → Visual, Figma-like canvas interface → Works with any local LLM via Ollama → Native MCP support to connect 100+ tools

77,286 просмотров

This free Claude skill will remove every sign of AI-generated writing from your text. It's called Humanizer. → Removes filler words and phrases → Cuts sycophantic openers → Fixes overused AI vocabulary → Eliminates em dashes and bullet overload → Matches your personal writing style Detects and rewrites 33 specific AI writing patterns.

This free Claude skill will remove every sign of AI-generated writing from your text. It's called Humanizer. → Removes filler words and phrases → Cuts sycophantic openers → Fixes overused AI vocabulary → Eliminates em dashes and bullet overload → Matches your personal writing style Detects and rewrites 33 specific AI writing patterns.

30,199 просмотров

YOU CAN NOW CONTROL ALL YOUR HERMES AGENTS FROM ONE INTERFACE. 🚨 Someone just built Hermes Workspace - the most complete GUI for Hermes Agent. Instead of jumping between tools, everything lives in one place. What's inside: > Chat, terminal, memory browser, and skills manager > Run unlimited agents with 1 orchestrator > Kanban board to track everything your agents are doing > 2,000+ skills to install without leaving the workspace > Works with any LLM provider Stop managing agents manually and start running them like a pro 👀 100% Free. Open Source.

YOU CAN NOW CONTROL ALL YOUR HERMES AGENTS FROM ONE INTERFACE. 🚨 Someone just built Hermes Workspace - the most complete GUI for Hermes Agent. Instead of jumping between tools, everything lives in one place. What's inside: > Chat, terminal, memory browser, and skills manager > Run unlimited agents with 1 orchestrator > Kanban board to track everything your agents are doing > 2,000+ skills to install without leaving the workspace > Works with any LLM provider Stop managing agents manually and start running them like a pro 👀 100% Free. Open Source.

19,409 просмотров

NVIDIA just removed the biggest friction point in voice AI. They open-sourced PersonaPlex 7B, a real-time conversational model. It listens and speaks simultaneously, so it handles natural interruptions and overlaps instead of freezing up like most voice models do. 100% Open Source.

NVIDIA just removed the biggest friction point in voice AI. They open-sourced PersonaPlex 7B, a real-time conversational model. It listens and speaks simultaneously, so it handles natural interruptions and overlaps instead of freezing up like most voice models do. 100% Open Source.

12,814 просмотров

Someone got tired of paying for Higgsfield and built the free version instead. Its called Open Generative AI → Packs 200+ models into one self-hosted interface. →Text to image, text to video, image to image → Cinema mode with actual camera controls → Your files never leave your machine Getting 200+ models talking to each other under one roof isn't a two-minute setup, but once it's running there's no subscription left to cancel. 100% Open-source.

Someone got tired of paying for Higgsfield and built the free version instead. Its called Open Generative AI → Packs 200+ models into one self-hosted interface. →Text to image, text to video, image to image → Cinema mode with actual camera controls → Your files never leave your machine Getting 200+ models talking to each other under one roof isn't a two-minute setup, but once it's running there's no subscription left to cancel. 100% Open-source.

13,022 просмотров

Videos

Больше нет контента для загрузки