5,976 results for work out · 2.386s

News for “work out”
18 results • 2381 ms server time
Moozonian News
bing.com• Aug 11, 2026• 1 min read
Ordinary WiFi can now identify you with near-perfect accuracyOrdinary WiFi networks could quietly become powerful surveillance tools, allowing people to be identified without cameras, special sensors, or even carrying a connected device. Researchers showed that ...
Moozonian News
picklebrowser.com• Aug 11, 2026• 1 min read
Show HN: Pickle – token efficient AI agent browser with policy-gated actionsI use agents for a lot of my own work, but whenever they access my browser they end up wasting a lot of tokens reading HTML, so I tried building a browser that simplifies webpage content for them.Pickle is an agent browser and it has all the features a regular browser has (tabs, search history, bookmarks, etc.), but pages load as compact structured data instead of raw HTML to reduce token usage.Overview for those curious:It's policy-gated (blocked domains, actions that need approval like purchases) and every action is logged, so you're always able to see what your agent is doing and can take over at any time.It's also compatible with weaker/local models as it auto-routes by model strength. i.e. small local models are limited to picking actions one step at a time so they don't hallucinate actions or make up element IDs. Stronger models can plan multiple steps ahead.On the token compression side, I've been seeing around 32x less token usage.Other useful features: - shared notebook that y
Moozonian News
news.ycombinator.com• Aug 11, 2026• 1 min read
Ask HN: Have you used LLMs to reinvigorate you niche programming community?I've seen a few discussions over the years about how niche languages like Lisp, Forth, Prolog, etc. would be great to use, but even for personal projects the lack of available packages makes them hard to use. However, with an LLM you can have it replicate whatever package you'd like from a more popular language. You can even port software to your favorite niche architecture. If you really want to run your homelab off a PA-RISC machine you just give an agent SSH access and tell it to make the software work.For myself, I have only done very little of this. I did add POWER vectorization to POV-Ray so that I can get a little more speed out of a machine that has more power than it needs for other things. Instead of letting it use something like Python or Go for small scripts I'll tell the LLM that the more logical choice is Prolog. But mostly I have been using mainstream languages because the code is being generated and, therefore, I'm not playing with it, so I'm interested in hearing if ot
Advertisement
Moozonian News
news.ycombinator.com• Aug 11, 2026• 1 min read
2. Ask HN: We built a solution for 100B-node P2P. Does anyone care about this?We have developed an architecture and algorithms that enable search in a peer-to-peer network of over 100 billion nodes in under one second, and under half a second in low-orbit satellite networks. The routing requires less than 80 KB of memory per device, allowing the network to run entirely on consumer devices like smartphones.We are two researchers. We spent years trying to build a mathematically protected secret voting system. In the process, we were forced to solve many networking problems that typically prevent a pure P2P network from reaching global scale:— Search: Deterministic, under 1 second, 100B+ nodes, under 80 KB routing memory per device.— Identity: Anonymous authentication without CAs. One person, many devices, no passwords. — Recovery: Session restoration without passwords or seed phrases.— Subnets: Fully autonomous, isolated networks of any scale.— Anonymization: Traffic analysis resistance built into the protocol.— Integrity: Consensus-based recovery of routing data
Moozonian News
hqbase.io• Aug 11, 2026• 1 min read
Show HN: HQBase – team email that runs in your Cloudflare accountI built HQBase, an open-source email workspace that runs in your Cloudflare account.I originally built it for myself. I wanted multiple addresses and domains - support@, sales@, personal addresses, etc. - without paying for a separate mailbox for every address or running a mail server.It uses Cloudflare Workers, Email Routing/Sending, D1 and R2.HQBase gives you one inbox for multiple domains and addresses, team invites with granular inbox access, a PWA with push notifications (including iPhone), and an MCP server.Setup takes about 2-3 minutes, and the infrastructure stays in your Cloudflare account.The project is AGPL-3.0 and fully open source.Would love feedback and any features you'd like to see.https://hqbase.io
Moozonian News
github.com• Aug 11, 2026• 1 min read
Show HN: Tachyon – MCP server framework for Java and KotlinI built Tachyon to run MCP server on Java 21+ and Kotlin without Spring or reactive APIs. It uses Netty, Streamable HTTP, virtual threads, and coroutines for Kotlin.It is currently in 1.0 beta. I’d value feedback from people building real MCP servers.
Moozonian News
popcorn.movie• Aug 11, 2026• 1 min read
Show HN: The Rotten Tomatoes for AI films, ranked by the tools that made themI wanted a rotten tomatoes for ai film, hence popcorn.movie, because AI films need a critical and technical review that's different to movies, and we're in the 1895-1920's of ai movies right now.Many festivals, people, industries, sites reject or suppress ai, for many great reasons (slop), and of course slopscrolling and other sites have the slop problem, as does this - the idea is to look past the slop to the real stories and technically great content, with an view that ai is a tool."is this stuff actually getting good, and which models are doing it?". Hot or slop.My personal interest in ai video, probably stupid - try to actually visualize my dreams through prompts. I've tried it, but it never quite works, but it's fun.--detailsThe site doesn't host video (everything plays via youtube-nocookie embeds). The product is the ranking, the many detailed breakdowns of voice sync, glitches, discussions.If you love looking at coherence and how models are moving along, while seeing short and l
Moozonian News
fui-rs-demo.effindom.dev• Aug 11, 2026• 1 min read
Show HN: Replacing HTML/CSS/JS with RustI've previously launched FUI-AS (retained UI in AssemblyScript) as a browser-only canvas framework. However, the dream was always something substantially bigger. It's to have a retained mode UI framework for the web, native and iOS/Android with SDKs available in multiple languages.This is the second slice of that dream.FUI-RS (retained UI in Rust) now runs the same retained application model (via the same EffinDOM runtime as FUI-AS) in browsers (including mobile browsers, so it has extensive touch gesture support / event system) and as native desktop applications without embedding a browser, thus no Electron/WebView. Major OSes supported are Windows (D3D12), macOS (Metal) and Linux (Vulkan). Comes with packaging tools for their respective OSes too (MSIX, DMG and AppImage).In the FUI-RS demo, have a play around to see and feel what a typical web app looks like with FUI-RS. Try: - VoiceOver on macOS (yes, we have extensive semantic roles / customization support in the SDK) - bring up the
Moozonian News
github.com• Aug 11, 2026• 1 min read
Show HN: Mr_tech – Treating 3D games as source code, not as their runtimeI've been working on mr_tech, a from-scratch 3D engine in Go built around a question I wanted to answer:Can a 3D game be reverse-engineered, without infringing copyright, understood as source code, and transformed into a sufficiently general Intermediate Representation (IR) that allows it to execute on a runtime for which it was never designed?The idea is to treat a game as source code, not as its runtime — the way a compiler treats its source files.Instead of reproducing the original game engine, the game is processed through a compiler-like pipeline:3D game → reverse engineering → frontend → semantic representation → IR → mr_tech runtimeThe runtime provides its own geometry/topology processing, dynamic spatial structures, rigid-body physics, entities and independent rendering backends (OpenGL and software).I've used the approach to experiment with multiple historical 3D game engines, including Doom, Quake, Jedi and Wolfenstein.The interesting question for me is not how many games it
Advertisement
Moozonian News
overlay.studio• Aug 11, 2026• 1 min read
Show HN: Overlay – Design with your React components and CSS tokens in your IDEHey HN, I'm Francesco. I've spent the last year building Overlay, a UI editor that runs inside your IDE and renders your actual React components (not a redraw of them), using your real CSS tokens.I'm a design engineer and, especially with AI, I found myself spending more and more time in the codebase rather than in Figma. Trying out ideas in code with AI is a lot of fun, but there are specific moments where I need to sketch things out on a classical visual canvas. The problem is, when you work mostly with code and your codebase moves faster than your Figma library, stopping to import your latest components into Figma is an energy-killer.So I built Overlay to get quick access to my React components on a canvas. It's a VS Code extension, so opening the canvas takes seconds. Your components are already there, and you're designing with the real thing: the editor is a normal DOM document, not a WebGL canvas. From there, working with AI (via MCP) is also a breeze. The agent already has acces
Moozonian News
bing.com• Aug 11, 2026• 1 min read
AI Without A Source Of Truth Is Just Confident GuessingIt can summarize a problem, recommend a path, trigger a workflow and explain its reasoning with the calm and confident tone of a person who knows exactly what they’re doing. But, of course, confidence ...
Moozonian News
bing.com• Aug 11, 2026• 1 min read
Curvy women over 50 are loving these 8 style tricksGetting dressed should feel exciting, not stressful — especially when you know a few smart tricks that work with your body instead of against it. For curvy women over 50, style is all about feeling ...
Moozonian News
github.com• Aug 10, 2026• 1 min read
Show HN: Keen Code – an agentic-engineered coding agentHello community!I am here to share a coding agent I have built solo from scratch using agentic engineering. Written in Go, it's a proper coding agent, has features you expect from a useful agent for your daily work, with a minimal and simple UI.I have named it Keen Code. The repo is here: https://github.com/mochow13/keen-codeEven though it started as an experiment, it is now a full-fledged coding agent for real software engineering work. It supports multiple providers, skills, MCPs, multi-agent orchestration through subagents, automatic compaction, etc.I have been using it for real production-grade work myself, and also for developing itself.Notably, I have worked on two separate ideas in this coding agent:1. Turn MemoryIn a multi-turn conversation, tool outputs are removed, only tool call traces are retained. Within a single agent loop, agent sees full tool results but in the next turn, it doesn't see the tool results anymore.The greatest benefit of this approach is that a lot of tool
Moozonian News
kmcheung12.github.io• Aug 10, 2026• 1 min read
Show HN: My local climbing gym from photogrammetryCommented on yesterday's Ask HN: What are you working on? (August 2026), thought I might as well submit a Show HN.If you see climbing world cup/championship, there is this 3D modelling thing [1]. I want that for my weekly bouldering.I scanned my local climbing gym into 3D mesh using iphone. Built a simple editor to trim, merge, move/rotate meshes. You can interact with the mesh, view routes, view climb, etc. So this is unlike many gaussian splatting projects where the main use is for viewing. I built a pipeline in updating climbing walls. Climbing routes are manually annotated. Climbing videos are registered against the 3D mesh. Based on one input video, body positions resolved into 3D/4D space. you can view the body landmarks from different angle.COLMAP, OpenMVS, fastapi, svelte, database is just local json files. A read only build is exported so I can host on github pageIf you climb, or know someone who climbs, would love to hear your feedback. Do you usually record your climbs? If I
Advertisement
Moozonian News
news.ycombinator.com• Aug 10, 2026• 1 min read
Show HN: Fast way to convert any website to agent ready MarkdownI have a built a tool called Distill that converts any website to agent ready markdown/structure sub ~16ms. The tool works entirely local.Also did a benchmark on a corpus of 50 urls and Distill outperformed other competitors.Do give it a look: https://github.com/gokulnair2001/distill