Feed aggregator
Show HN: Safeoid – Turn Messy PDFs into Structured Excel, CSV, or JSON
Article URL: https://safeoid.com/
Comments URL: https://news.ycombinator.com/item?id=46942047
Points: 1
# Comments: 1
Comic Code Reviews, Part 2
Article URL: http://www.jona.ca/2026/02/comic-code-reviews-part-2.html
Comments URL: https://news.ycombinator.com/item?id=46942017
Points: 1
# Comments: 1
Show HN: EdgeAI-OS – Air-gapped Linux distro where AI is a system primitive
I built a bootable Linux distribution that treats AI as a system primitive – like CPU or memory. Designed for security-conscious environments where data cannot leave the network.
The problem: Most AI requires cloud APIs, which means your data leaves your control. For banks, healthcare, defense, and regulated industries – that's a non-starter.
The solution: EdgeAI-OS runs everything locally. No cloud calls. No API keys. No telemetry. Boot the ISO, use AI. Your data never leaves the machine.
Security features: - 100% offline operation – air-gap friendly, zero network dependencies - No external API calls – all inference runs locally on CPU - Command risk assessment – every command classified as Safe/Moderate/Dangerous - Dangerous pattern blocking – prevents rm -rf /, curl|bash, fork bombs, etc. - Open source & auditable – MIT licensed, inspect every line of code - No data exfiltration – nothing phones home, ever
What's in the ISO: - Local LLMs (TinyLlama 1.1B + SmolLM 135M) – runs on CPU, no GPU needed - ai-sh: natural language shell where 80% of queries resolve instantly via templates - Multi-tier routing: simple queries → fast model, complex → larger model
Example ai-sh session: what time is it? [template] date ← instant, no LLM
files larger than 1gb [template] find . -size +1G ← instant, no LLM
rm -rf / [DANGEROUS] Blocked ← security check
configure nginx as reverse proxy [ai-generated] ... ← uses local LLM (~1-2s)
Target use cases: - Air-gapped enterprise environments (banks, healthcare, government) - Defense & classified networks - Edge devices with no internet connectivity - Privacy-conscious developers - Compliance-heavy industries (HIPAA, GDPR, SOC2)
Built with Rust, based on Debian. 4GB RAM recommended.
GitHub: https://github.com/neuralweaves/edgeai-os ISO Download: https://github.com/neuralweaves/edgeai-os/releases (1.2GB)
Would love feedback, especially from anyone working in secure/regulated environments. What features would make this enterprise-ready for you?
Comments URL: https://news.ycombinator.com/item?id=46942012
Points: 1
# Comments: 0
Ask HN: Since when got my computer their cloud node (agent)
Starting from Seti@home, to bitcoin,.. now running AI Slop commands on my pc with full admin rights.. maybe openai can run workloads on my pc and send me some money for doing their work?
Comments URL: https://news.ycombinator.com/item?id=46942009
Points: 1
# Comments: 0
Show HN: Agentseed – Generate Agents.md from a Codebase
npx agentseed init
AGENTS.md (https://agents.md) is a standard file used by AI coding agents to understand a repo (stack, commands, conventions).
Agentseed generates it directly from the codebase using static analysis. Optional LLM augmentation is supported by bringing your own API key.
Extracts languages, frameworks, dependencies, build/test commands, directory structure, and monorepo boundaries.
Comments URL: https://news.ycombinator.com/item?id=46941990
Points: 1
# Comments: 0
Big Tech groups race to fund unprecedented $660B AI spending spree
Article URL: https://www.ft.com/content/d503afd5-1012-40f0-8f9d-620dcb39a9a2
Comments URL: https://news.ycombinator.com/item?id=46941988
Points: 2
# Comments: 0
Show HN: Klint – Linux Kernel Security Scanner
Article URL: http://saturnine.cc/klint/
Comments URL: https://news.ycombinator.com/item?id=46941972
Points: 1
# Comments: 0
Field Notes from a Senior Living Center
Article URL: https://substack.com/@beccaselah/p-181168438
Comments URL: https://news.ycombinator.com/item?id=46941966
Points: 2
# Comments: 0
America's Most Valuable Companies 1995-2023
Article URL: https://americanbusinesshistory.org/americas-most-valuable-companies-1995-2023/
Comments URL: https://news.ycombinator.com/item?id=46941942
Points: 2
# Comments: 0
Private 4G LTE Network for Your Embedded System and IoT Hacking Lab via Open5GS
Nobody knows how the whole system works
Article URL: https://surfingcomplexity.blog/2026/02/08/nobody-knows-how-the-whole-system-works/
Comments URL: https://news.ycombinator.com/item?id=46941882
Points: 4
# Comments: 0
O_DIRECT – The Problem That Grew Up with Multi-Threading
Article URL: https://zazolabs.com/odirect-the-problem-that-grew-up/
Comments URL: https://news.ycombinator.com/item?id=46941868
Points: 1
# Comments: 0
Show HN: Valk programming language with a stateful GC
Hello everyone. I want to show you the Valk programming language. It focusses on simplicity and performance. It has a stateful GC, which i think hasn't been done before. I would like your feedback. Note we are still working on more features, it's not the complete/final product. If you like the project, join our discord (link in GitHub).
Comments URL: https://news.ycombinator.com/item?id=46941866
Points: 1
# Comments: 0
Setting Up and Configuring LibreSDR B210/B220 AD9361 on Windows and Linux (2025)
Article URL: https://gainsec.com/2025/01/23/setting-up-and-configuring-libresdr-b210-b220-ad9361-on-windows-and-linux/
Comments URL: https://news.ycombinator.com/item?id=46941862
Points: 1
# Comments: 0
Show HN: Share your MRR in seconds. Stop wasting time on screenshots
Founders often share user and revenue screenshots when building in public.
I found myself spending more time updating screenshots than building.
So I built a small tool that lets you update numbers instantly and generate clean MRR screenshots.
It’s free and very simple. Would love feedback on what could be improved or what features would be useful.
Comments URL: https://news.ycombinator.com/item?id=46941852
Points: 1
# Comments: 0
Learn how to make mechanical keyboard PCBs
Article URL: https://wiki.ai03.com/books/pcb-design
Comments URL: https://news.ycombinator.com/item?id=46941807
Points: 1
# Comments: 0
Show HN: Mojic – A C code obfuscator and encryption tool for source protection
Mojic (v2.1.2) is a multi-layered protection tool for C source code that combines obfuscation with a cryptographic engine.
What it does:
Identifier Obfuscation: It renames variables and functions to ambiguous symbols to break static analysis.
CipherEngine: It uses a password-based encryption system (utilizing the Scrypt library for key derivation) to secure the source code artifacts.
Integrity Checks: The tool includes security alerts for "File Tampered" or "Integrity Failure" if the encrypted code is modified.
Web & CLI: It offers a Tailwind-powered web interface for quick use and a CLI for larger projects.
I built this to explore how much "unmaintainability" can be automated to protect intellectual property in C projects. Happy to answer any technical questions about the obfuscation logic!
Comments URL: https://news.ycombinator.com/item?id=46941800
Points: 1
# Comments: 0
Show HN: Githrun – Run Python Scripts from GitHub URLs and VS Code Extension
I built Githrun to eliminate the need to clone entire repositories just to run a single utility script.
Key Features:
Instant Execution: Run any Python script via its GitHub URL or Gist ID using githrun run [URL].
VS Code Extension: I've added a VS Code extension so you can execute remote scripts directly from your editor.
Local Shims: It creates local shims in your PATH, allowing remote scripts to behave like native CLI tools.
Smart Caching: To avoid GitHub API rate limits, it caches metadata and responses locally.
It’s open-source (MIT) and available on PyPI. I'd love to hear what you think of the VS Code integration!
Comments URL: https://news.ycombinator.com/item?id=46941796
Points: 1
# Comments: 0
Show HN: Ship packages without exposing your real address
I didn’t want my home address on every shipping label, so I built Shipto.me which lets people ship and receive packages without exposing where they live. It works with standard carriers and doesn’t change the delivery experience.
Comments URL: https://news.ycombinator.com/item?id=46941785
Points: 1
# Comments: 1
Colocation Evaluation Framework for AI Infrastructure (2026)
Article URL: https://syaala.com/blog/colocation-vs-modular-vs-traditional-2026
Comments URL: https://news.ycombinator.com/item?id=46941775
Points: 1
# Comments: 0
