168,995 results for de · 2.290s

News for “de”
19 results • 2283 ms server time
Moozonian News
bing.com• Feb 16, 2026• 1 min read
Write It Out: 6 of the Best Guided JournalsDiscover six of the best guided journals to help you reflect, clarify your thoughts, and support your mental well-being. Life can feel overwhelming at times. We all experience worry, stress, or ...
Moozonian News
github.com• Feb 16, 2026• 1 min read
Show HN: Jsiphon – Streaming JSON parser with delta tracking and ambiguity treesHi HN, I built Jsiphon to solve a common frustration with LLM streaming: you ask for structured JSON output, but can't use any of it until the entire stream finishes.If you've used JSON mode (OpenAI, Anthropic, etc.), you've hit this — you want {"answer": "...", "sources": [...]}, but JSON.parse() fails on every incomplete chunk.LLM responses are inherently append-only (tokens arrive left to right, never go back), so Jsiphon leans into that with three ideas:1) Append-only parsing — Feed in {"msg": "Hel and get {msg: "Hel"} immediately. Values are only extended, never removed or mutated.2) Delta tracking — Each snapshot contains only what's new. For a chat bubble, just append delta.content to the DOM — when the LLM produces next chunk "lo, World!", we immediately get {msg: "lo, World!"}. No need to repeat partial JSON parsing or full tree rerendering.3) Ambiguity tree — A tree that mirrors the shape of your data and tracks which subtrees are finalized at every depth. For example, if you
Advertisement
Moozonian News
united-humanity.us• Feb 16, 2026• 1 min read
Show HN: United Humanity: FOSS, federated tools to end poverty via capabilityHi HN,I'm the founder of United Humanity, a volunteer-driven, public domain (CC0) project aimed at aiding humanity's betterment by focusing on capability-building rather than traditional aid. We believe poverty often stems from lack of tools, knowledge, and connections, so we're building open-source solutions to remove those barriers.Key components:-Humanity Chat/Network: A federated, end-to-end encrypted platform using Ed25519 identities. Features include accountless access, voice/video calls, threaded replies, message search, streaming with PiP, friend codes, an asset library, and 11 hub tabs. It's PWA-installable as a desktop app, with no tracking.-Project Universe: A free game teaching practical skills like homesteading, agriculture, building, health, and survival to empower self-sufficiency.-The Humanity Accord: A revisable set of civilizational principles for cross-cultural cooperation.Everything is released under CC0—no permissions needed, it's for everyone. Started after my 201
Moozonian News
github.com• Feb 15, 2026• 1 min read
Show HN: Deadend CLI – Open-source self-hosted agentic pentesting toolHi HN,Deadend is an agentic pentest CLI that automates vulnerability research in webapps.the problem we are trying to solve : removing the time consumed in repetitive assessments, report generation and extracting relevant information to let them focus on vulnerability research but powerful enough to find issues or leads by itself when we’re in a deadend.highlights : As of today, we scored 78% on XBOW’s benchmarks with claude-sonnet-4.5 in blackbox (we are currently iterating over the architecture of the agent and running the newest to get better results overall).The agent runs entirely locally with optional self-hosted models. Shell tooling is isolated in Docker, and the python interpreter with WASM.Some cool ideas are on the roadmap : CI/CD integrations, code review, bash completion, OWASP Top 10 plugins…Docker is needed and it currently works only on MacOS Arm64 and Linux 64bits installable in one bash command.Github Repo : https://github.com/xoxruns/deadend-cli Discord server : http
Moozonian News
github.com• Feb 15, 2026• 1 min read
Show HN: Typemux-cc – .venv-aware Python LSP proxy for Claude Code (no restarts)Hi HN — I built typemux-cc, a Claude Code plugin that makes Python `.venv` switching work without restarts.Claude Code’s official pyright plugin spawns one backend at startup; if you create/switch `.venv` later (common with git worktrees), it won’t pick it up without restarting Claude Code.typemux-cc is a Python LSP proxy that fixes this by keeping a per-`.venv` backend pool and routing requests based on `didOpen` `.venv` detection. It also restores open docs on spawn, queues index-dependent requests during warmup, and rewrites backend→client request IDs to avoid collisions.Supports pyright / ty / pyrefly.Repo + quickstart: https://github.com/K-dash/typemux-ccFeedback welcome — especially on the “fail loudly vs fallback when `.venv` is missing” policy and reliable warmup/readiness signals across pyright/ty/pyrefly.
Advertisement
Moozonian News
aiwritebook.com• Feb 15, 2026• 1 min read
Show HN: AIWriteBook – AI tool to write, design, and publish full-length bookshey HN, I built this. AIWriteBook takes you from a book idea to a finished, publishable book (outline, chapters, cover, illustrations, audiobook, and KDP ready export) in one tool.You can try it right away: the free tools (title generator, plot generator, character creator) work without signing up. Also, free account gives you a full 7 chapter book, no credit card.I run a small publishing platform (NanoReads, 130+ published books, 341K readers). I kept seeing authors juggle 5 to 7 tools to publish one book: outliner, writing tool, Vellum ($250) for formatting, cover designer, TTS for audiobooks, keyword tool for Amazon. Nothing covers the full journey.How it works: you enter a title and basic info. AI generates a structured outline with characters (arcs, motivations, voice) and a chapter by chapter story bible (events, locations, twists). You edit the outline (most important step). AI writes chapters one at a time using only the relevant character data and chapter spec. You can upload
Moozonian News
github.com• Feb 15, 2026• 1 min read
Show HN: Pangolin: Open-source identity-based VPN (Twingate/Zscaler alternative)Pangolin (https://github.com/fosrl/pangolin) is an open-source tool for identity-based remote access to internal resources - an alternative to Cloudflare ZTNA, Zscaler, and Twingate.It’s different than existing approaches: mesh VPNs (Tailscale, ZeroTier, etc.) create flat overlay networks where ACL and IP space management becomes complex at scale and every device can talk to every other device, while corporate ZTNA solutions (Zscaler, Cato, Netskope etc.) are closed-source and add latency by forcing traffic through a central server.Pangolin takes a resource-centric approach. You deploy lightweight connectors that bridge to specific resources (private web apps, SSH, databases, CIDR ranges). Admins delegate resource-access to specific users and roles. It uses WireGuard with NAT hole-punching for peer-to-peer connections and traffic goes directly between the user and connector instead of through a central server. It supports native clients (Mac/Windows/Linux/iOS/Android) plus identity-awa
Advertisement