600 results for network king · 2.719s

News for “network king”
20 results • 2711 ms server time
Moozonian News
sports.yahoo.com• Aug 17, 2026• 1 min read
The Metropolitan Division contains more than fair share of top goaliesNHL Network released their top-10 goalies of ‘right now’ and one thing that stood out was the preponderance of goalies within the division for the Penguins. Half of the teams in the division can be found in this league-wide ranking. The two NYC-ish based Russian goalies of Igor Shesterkin and Ilya Sorokin are generally understood […]
Moozonian News
sports.yahoo.com• Aug 17, 2026• 1 min read
TV and streaming viewing picks for August 17, 2026: How to watch Cincinnati OpenAll Times Eastern College Football CFB Insiders — CBS Sports Network, 1 p.m. College Football Live — ESPN2, 3 p.m. College Gameday Podcast — ESPN2, 4 p.m. B1G Football Training Camp: Minnesota — Big Ten Network, 6 p.m. Ross Tucker College Draft — DraftKings Network, 9:30 p.m. Coppa Italia Round of 64 Pisa SC vs.…
Advertisement
Moozonian News
bing.com• Aug 15, 2026• 1 min read
Docker networking explainedSpread the loveWhen you first dip your toes into Docker, it’s often the simplicity of containerization that grabs your attention. You can package an application and all its dependencies into a neat, ...
Moozonian News
windygap.app• Aug 14, 2026• 1 min read
Show HN: I precompiled the path network of 3 continents to invent hiking routesWindy Gap generates hiking and running routes based on what you ask for. There are potential routes all around us and it finds them.I built it because I train for endurance events and have a camper van. I kept wanting to do certain kinds of hikes and runs and having no popular routes nearby, even in areas with dense path networks. I also wanted to squeeze more novelty out of my local area.Instead of choosing an existing route or plotting one waypoint by waypoint you can ask for something like a hilly half day walk from where you are. You can mark places to check out and avoid and it folds them into the routes it gives you.At request time, it uses a precompiled path graph (Europe, the Americas, and India). It analyzes what's actually on route: distance, elevation, summits, surface type, points of interest etc. Then scores candidates against the brief and returns the best. The initial naive implementation (typescript based, directly fetching from Overpass) was hopelessly slow (P95 ~48s,
Moozonian News
transcribe.lymestack.com• Aug 13, 2026• 1 min read
Show HN: LymeScribe – one computer on your network transcribes for the restTranscribed with LymeScribe just before posting this: "I realize it's a little bit late in the day to be posting on Hacker News. However, I've been looking at this frog for a good two weeks now, and F it, I'm just going to ship it. I've posted on Hacker News now like three or four times with little to no results. So if a tree falls in the woods..." (I censored the F word, but it transcribed just fine.)TL;DR: LymeScribe is local speech to text for Mac and Windows: dictate into any app, or drop in a recording and get a transcript with speaker labels, and nothing goes to a server you don't own. On a machine that can handle it, it all runs right there. On anything that can't, or anywhere you'd rather keep transcription in one place, one computer does the work for the rest of the network. Offices care about the second one, because the audio and the transcripts never leave hardware they control.This whole thing started as a command line program I built to transcribe and label speakers in aud
Moozonian News
github.com• Aug 11, 2026• 1 min read
Show HN: Chain – A Python-like language with native inline C++Chain (Formerly Link-Lang) is a Python-syntax scripting language that was built from scratch in C++, with one feature I haven't noticed elsewhere: an 'extern "c" { }' block where you can write real C++ directly inside a script. The runtime then compiles it, catches the .so, and shares variables with the surrounding script via shared memory. An example would be: set x = 30 extern "c" { for(int i = 0; i < 5; i++) { LINK_x -= 1; } } print(x) # x is now 25, mutated by the C++ block This essentially means you get Python-like ergonomics for everyday usage, while having a direct hatch to C++ when you need raw performance or a library that isn't wrapped yet, not having to leave the file or set up a separate build step.Furthermore, Chain has dynamic typing (int/float/string/char/bool/list/dict), OOP (classes, constructor, 'this', 'new'), an ('import') module system, and try/catch. It also ships with native modules for GUI (via raylib), audio, TCP networking, and OS/shell access. This means a sc
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
parley.weldra.dev• Aug 11, 2026• 1 min read
Show HN: Parley – your coding agent can talk to a teammate's agentHi HN,I saw one friction point when working as part of a team that uses coding agents extensively - there is nothing to enable coordination between agent used by people in a team. Many times my agent would ask me to decide upon something with a fellow teammate, for which I have to serve as the network layer.So I built Parley where agents can connect to the hub over MCP with their own team-scoped token. An agent addresses a teammate's agent by name and ask questions/handover tasks. Agents can also use file claims to signal what files they are working on, to highlight overlapping work. Everything is recorded for audit.If an agent needs human decision/approval, it can ping over Slack/Telegram, and get replies over the same.The hard part was making an agent wake up from an idle session and start working, so I built an optional feature called Claude Live Wake. If the exact project session is already running, Parley can wake the idle Claude session using channels, and notify it that eligible
Moozonian News
github.com• Aug 9, 2026• 1 min read
Show HN: Lumabri – What if LLMs worked like Napster?A while ago I started working on Colibrì to see if it was possible to run huge LLMs on a normal computer. The project grew far beyond what I expected, thanks in large part to the HackerNews community.That led me to a new question:What if we stopped thinking about one computer?This is the idea behind Lumabri.Instead of requiring a single machine to store and run an entire huge model, Lumabri treats a network of normal computers as a shared pool of resources.One machine might provide disk space, another compute, another a different part of the model. If a required block or expert isn’t available locally, the system can retrieve or execute it on a peer.This is particularly interesting for Mixture-of-Experts models. A model can have hundreds of billions of parameters, while only a fraction are activated for each token. Rather than moving huge expert weights over the network, Lumabri can send the small activation to a peer that already has the expert and let it execute it.The goal is for ma
Moozonian News
github.com• Aug 8, 2026• 1 min read
Show HN: 49IDE – 2D Grid IDE for managing many agents, Git trees, issuesBeads tables (Steve Yegge's) for issue tracking. Can view git trees, terminals, issue tables, notes, and files all on one screen. Can connect multiple machines via private network (like tailscale)I had this issue where i really did not like the when i had many terminals open at the same time - when you try to code with 6+ agents at the same time, across, say, 3 projects, you get huge context fragmentation. I am a visual person, and its way easier for me to remember where things are if I placed them there - I build this 2D canvas for myself initially and then decided to open-source - the main goal there is to let me (or the user) to place the terminals, github trees (to track agent's progress across branches on different repos), beads issues tables across many machines all on the same screen. Most important note, once again, is since its a 2D canvas, it feels more like a citybuilder where i I decide where to put stuff and thus remember exactly where what is running. It boosts my efficie
Advertisement
Moozonian News
youtube.com• Aug 6, 2026• 1 min read
Show HN: Kifly – Expose your ecommerce store to AI agents via MCP [video]Hi HN, I am building https://kifly.ai/, to make ecommerce stores discoverable and purchasable by AI agents. Enabling payments using traditional methods and stablecoins for physical goods.With Kifly a seller can easily sync their inventory and we create a vectorized database of their products/goods and make it visible through MCP. Sellers get: - A sales agent that lives on their existing site (Shopify, WooCommerce etc.). It helps customers find and purchase products seamlessly using natural language. Collapsing the search bar and checkout page. - Their own seller scoped MCP they can hand to any customer/org for secure, faster automation and transactions. -Discovery and checkout in Claude, ChatGPT, Gemini and Siri AI through the network wide Kifly MCP (https://kifly.ai/api/mcp)I believe in the near future everyone will have an agent, every phone or device will constitute one. Organizations will also have sort of super agents for complex provisioning and restocking flows. In the future wh
Moozonian News
developer.puter.com• Aug 6, 2026• 1 min read
Show HN: Node.JS in the Browser – An Open-source Alternative to WebContainersThis is a Node.js compatible runtime in the browser. It supports CLI apps, Vite, and some agents (like Pi Agent) as well.Some notes:- This runs all code in a web worker using the host javascript runtime with rewrites for module loading and AsyncLocalStorage support using Oxc compiled to WASM.- Most of the libraries are bundled straight from Node.js upstream with light overrides where needed, ensuring compatibility. Libraries were only reimplemented where really needed- Despite having great integrations with the Puter desktop and APIs, this can be used completely seperately with OPFS support for filesystem and Wisp protocol support for networking. The demo also supports FS Access API to run local files