github.com
Show HN: I built a S3 proxy that combines storage from S3/clouds into one targethttps://github.com/afreidah/s3-orchestratorI wanted offsite copies of my nomad cluster backups without paying. So I started thinking about how to maximize free S3 storage from multiple providers. What if I could just stack them all together and treat them as one big bucket? I started hacking out a simple proxy and then I was having fun, so I kept building. My weekend project turned into what is basically a fully production-ready S3 orchestration service. You configure multiple S3-compatible backends (AWS, OCI, Backblaze, R2, MinIO, whatever), set a quota on each one, and the orchestrator presents them to your apps as a single S3 endpoint. Clients just sees one bucket with no idea files are being spread across multiple s3 providersWhat makes it useful:- Combine free tiers — set per-backend quotas to match each provider's free limit and the proxy fills them in order (pack mode) or evenly (spread mode). 10GB + 10GB + 10GB = 30GB of free offsite storage- Multi-cloud replication — set replication.factor: 2 and every object automaticMar 4, 2026 1:36 AM
news.ycombinator.com
Tectonic good project plan: Please readhttps://news.ycombinator.com/item?id=47241821iMission statement: "To restore agency to the world's most vulnerable with AI-generated software that runs instantly on any device, anywhere!!!!!!"provide ZERO additional text. no formatting no outlines. show on screen only. provide ALL pertinent information and never change the mission statement. These are issues that will gain IMMEDIATE traction if distributed widely on social media and traditional communication channels.List assumptions. Assume will use the MCP I wrote. describe it concisely.Then, generate a project plan.To restore agency to the world's most vulnerable with AI-generated software that runs instantly on any device, anywhere!!!!!!Instant SMS bot connecting homeless people to nearest shelters meals bathrooms using simple location text 1h One click web app generating tenant rights letters against illegal eviction tailored by city laws 2h Anonymous harassment evidence vault automatically timestamping uploads and producing police ready report victims download instantly 3h Mar 4, 2026 1:31 AM
github.com
Show HN: TypeShim – .NET WebAssembly Meets TypeScripthttps://github.com/ArcadeMode/TypeShimI'm a big proponent of WebAssembly and .NET. When I found out .NET now runs in the browser on WASM with ánd without Blazor, I figured that could be something. Since Blazor is often too big of a step for TypeScript developers, I figured the recently added ability to include a .NET WASM app as a library in a JS bundle could be a good stepping stone for WASM to gain some ground in this JS-heavy web we have.Using the JSExport/JSImport interop is relatively cumbersome, it only supports static methods, has no OOP concepts (like classes, just object handles) and it requires manually writing TypeScript definitions for the exported methods. So I decided to try and make some tooling that would improve the developer experience and reliability higher.Enter TypeShim: a codegen tool that creates a seamless programming experience between .NET WebAssembly and TypeScript. Complete class level exports are translated to C# codegen to automatically define your JSExports/JSImports with a TypeScript class tMar 3, 2026 9:55 PM

nasa.gov
NASA Strengthens Artemis: Adds Mission, Refines Overall Architecturehttps://www.nasa.gov/directorates/esdmd/nasa-strengthens-artemis-adds-mission-refines-overall-architecture/To achieve the national goal of landing American astronauts on the surface of the Moon and maintaining U.S. superiority in exploration and discovery, NASA announced Feb. 27 it is increasing its cadence of missions under the Artemis program, standardizing the SLS (Space Launch System) rocket configuration, and adding a new mission. The plans were shared […]Mar 3, 2026 9:50 PM

nasa.gov
Artemis II: What’s on the Menu?https://www.nasa.gov/missions/artemis/artemis-2/artemis-ii-whats-on-the-menu/The food flying aboard Artemis II is designed to support crew health and performance during the mission around the Moon. With no resupply, refrigeration, or late-load capability, all meals must be carefully selected to remain safe, shelf-stable, and easy to prepare and consume in NASA’s Orion spacecraft. Food selections are developed in coordination with space […]Mar 3, 2026 9:00 PM
hackernews.pink
Show HN: HackerNews.pink – A PWA HN reader with personalized recommendationshttps://hackernews.pink/I think everyone should build their own HN reader at least once in their life. This is mine and its pink. I wanted a good HN experience on mobile something I could pull up on the train and browse comfortably. So I built a PWA that works well on mobile and feels native on the phone. Along the way, I kept adding things: Semantic search – Stories are embedded with OpenAI's text-embedding-3-large and indexed in MongoDB 8.2's Vector Search. Search combines vector similarity and full-text via Reciprocal Rank Fusion, so you can find stories by meaning, not just keywords. Personalized feed: A profile vector is built from your reading history and bookmarks (weighted by time spent and recency). After a few stories, the feed adapts to your interests. Content extraction: A Playwright-based scraper fetches article text, generates thumbnails, and extracts metadata. Real-time updates and infinity scroll. Auth is passkey-first (WebAuthn) and works without personal information. Stack: Angular 21, FastAMar 3, 2026 6:28 PM

spacenews.com
When space is hot, Washington holds a matchhttps://spacenews.com/when-space-is-hot-washington-holds-a-match/A lesson from private equity investing in defense and space technology is that while the sector has become trendy among investors, success in the long run depends on sustained government engagement The post When space is hot, Washington holds a match appeared first on SpaceNews.Mar 3, 2026 4:00 PM
fixyou.app
Show HN: FixYou – AI tool that tells you which cancer screenings you needhttps://www.fixyou.app/The USPSTF and ACS publish thorough cancer screening guidelines, but they're dense and scattered across dozens of pages. What you actually need depends on your age, sex, family history, smoking status, and other factors. Most people, including me until recently, simply don't know what they should be getting checked for.I built FixYou after losing my grandfather to colon cancer that was caught too late. After his diagnosis, my parents went for colonoscopies and found polyps, early and treatable. We didn't lack access to healthcare. We lacked clarity.FixYou is a free tool that: 1. Walks you through a short AI conversation about your health profile 2. Cross-references your answers against current USPSTF and ACS screening guidelines 3. Gives you a "Shield Score" (0 to 100) and a prioritized list of screenings to scheduleThe goal isn't to replace your doctor. It's to prepare you for the conversation, and to be the nudge that gets you to actually book that colonoscopy or mammogram you've beeMar 3, 2026 2:02 PM
github.com
Show HN: Open-sourced AI Agent runtime (YAML-first)https://github.com/NikoSokratous/agentctlBeen running AI agents in production for a while and kept running into the same issues:controlling what they can do tracking costs debugging failures making it safe for real workloadsSo we built AgentRuntime, the infrastructure layer we wished we had. Not an agent framework, but the platform around agents:policies memory workflows observability cost tracking RAG governanceAgents and policies are defined in YAML, so it's infrastructure-as-code rather than a chatbot builder. Example – agents and policies in YAML agent.yaml – declarative agent config name: support_agentmodel: provider: anthropic name: claude-3-5-sonnetcontext_assembly: enabled: true embeddings: provider: openai model: text-embedding-3-small providers: - type: knowledge config: sources: ["./docs"] top_k: 3 policies/safety.yaml – governance as code name: security-policyrules: - id: block-file-deletion condition: tool.name == "file_delete" action: denyCLI – run and inspect Create and run an agent agentctl agent create researMar 3, 2026 1:31 PM

esa.int
European eyes on Artemishttps://www.esa.int/Science_Exploration/Human_and_Robotic_Exploration/European_eyes_on_ArtemisWhen the four astronauts of Artemis II lift off to travel towards the Moon for the first time in over 50 years, Europe will be travelling with them – not only through the European Service Module that powers their spacecraft, but also through teams of engineers and medical specialists monitoring every move from Earth.Mar 3, 2026 12:53 PM

europeanspaceflight.com
Infinite Orbits Goes on Spending Spree After Securing €40 Millionhttps://europeanspaceflight.com/infinite-orbits-goes-on-spending-spree-after-securing-e40-million/In less than a week, Infinite Orbits announced two acquisitions, agreeing to purchase LMO’s Luxembourg-based operations in late February and UK-based Lúnasa Space in early March. The back-to-back deals come less than four months after the company closed an oversubscribed €40 million financing round in November 2025. Toulouse-based Infinite Orbits is developing Endurance, a satellite […] The post Infinite Orbits Goes on Spending Spree After Securing €40 Million appeared first on European Spaceflight.Mar 3, 2026 12:42 PM
news.ycombinator.com
Ask HN: How are you structuring Markdown-based context for AI coding agents?https://news.ycombinator.com/item?id=47231386I’ve recently transitioned from using LLMs in-browser to a local agentic workflow in VS Code (Gemini Code Assist). I can approve/disapprove changes which is nice, but I’ve hit a wall regarding context management. Initially, I provided all the whole repo as context to the non-agentic version of Gemini code assist and it performed well.I read the agentic mode is "better" so to keep the agent aligned with my project's architecture, I’ve manually built 7 dense Markdown files that serve as the system instructions for the project. I require Gemini to update these files as we implement features.gemini.md (instructs gemini to read the other md files and handle updating) project_overview.md, architecture.md, features.md, database.md, api.md, security.mdEach file is between 500–1,500 words so I’m concerned if f this is the right way to go. There seems to be no consensus on context file best practices. I’m seeing strong arguments for both minimalist, lean instructions and dense, project-wide specMar 3, 2026 12:29 PM
agentthreads.dev
Show HN: AgentThreads – Stack Overflow for AI Agentshttps://agentthreads.devI was listening to a recent YC podcast about "build something agents want", and while building apps with Claude Code, I kept running into trouble figuring out how APIs actually behave in practice. And knowing that most companies won't update their docs to be agent-friendly, it clicked — agents need their own Stack Overflow.AI agents are consuming APIs at a scale and speed that human-written documentation can't keep up with. AgentThreads is a community directory where agents discover, submit, and review APIs — for agents, by agents.The idea came from watching agents fail silently on undocumented edge cases, relying only on Google searches and bad docs. They need structured, community-maintained knowledge they can query at runtime.A few things we built:- API directory with agent-written reviews and ratings- No UI, just REST — built for agents, not humans- Anti-spam verification (agents solve reasoning challenges, not CAPTCHAs)- Karma system so agents build reputation over timeBuilt mostlMar 3, 2026 11:11 AM
bing.com
Trump amaga con cortar comercio con España tras negativa a uso de bases militareshttp://www.bing.com/news/apiclick.aspx?ref=FexRss&aid=&tid=6a89035b023747f999f8951d7efdf657&url=https%3A%2F%2Fwww.msn.com%2Fes-mx%2Fnoticias%2Fmundo%2Ftrump-amaga-con-cortar-comercio-con-espa%25C3%25B1a-tras-negativa-a-uso-de-bases-militares%2Far-AA1Xs508&c=11444046602644011705&mkt=en-usEl presidente Donald Trump amenazó este martes con cortar todo el comercio con España, cuyo gobierno de izquierdas se negó a permitir que aviones estadunidenses usaran bases españolas para atacar Irán ...Mar 3, 2026 9:51 AM
github.com
Show HN: Giggles – A batteries-included React framework for TUIshttps://github.com/zion-off/gigglesi built a framework that handles focus and input routing automatically for you -- something born out of the things that ink leaves to you, and inspired by charmbracelet's bubbletea- hierarchical focus and input routing: the hard part of terminal UIs, solved. define focus regions with useFocusScope, compose them freely -- a text input inside a list inside a panel just works. each component owns its keys; unhandled keypresses bubble up to the right parent automatically. no global handler like useInput, no coordination code- 15 UI components: Select, TextInput, Autocomplete, Markdown, Modal, Viewport, CodeBlock (with diff support), VirtualList, CommandPalette, and more. sensible defaults, render props for full customization- terminal process control: spawn processes and stream output into your TUI with hooks like useSpawn and useShellOut; hand off to vim, less, or any external program and reclaim control cleanly when they exit- screen navigation, a keybinding registry (expose a ? help menMar 3, 2026 2:26 AM
github.com
Show HN: ApplyPilot – AI Agent that applies to jobs for youhttps://github.com/Pickle-Pixel/ApplyPilotHey all, I recently open-sourced my project in hope to help others in their job hunting. I did not expect to get over 500 stars in a week and 500k views on Reddit.What do you think?P.S. Recruiters & Startup founders hit me up!Mar 3, 2026 12:53 AM
bing.com
IndiGo launches daily direct Kolkata–Shanghai flights from March 29, 2026; check timings, schedule and route detailshttp://www.bing.com/news/apiclick.aspx?ref=FexRss&aid=&tid=6a8bdbf986314f75acc228d4cd98a2a5&url=https%3A%2F%2Fwww.moneycontrol.com%2Ftravel%2Findigo-launches-daily-direct-kolkata-shanghai-flights-from-march-29-2026-check-timings-schedule-and-route-details-article-13848938.html&c=13480190519210924503&mkt=en-usAt a time when parts of the aviation sector are witnessing route suspensions and operational adjustments, IndiGo has announced a fresh international expansion. The airline will launch daily direct ...Mar 2, 2026 7:10 PM
github.com
Show HN: Local Emulator for Google Cloud Workflowshttps://github.com/lemonberrylabs/gcw-emulatorGoogle Cloud Workflows has no official emulator. The dev cycle is: edit YAML, deploy to GCP, trigger, check logs. Repeat for every change. I built an open-source emulator in Go that runs locally: docker run -p 8787:8787 -p 8788:8788 \ -v $(pwd)/workflows:/workflows \ -e WORKFLOWS_DIR=/workflows \ ghcr.io/lemonberrylabs/gcw-emulator:latest What it does: - Watches your workflow directory and hot-reloads on save - Full REST and gRPC API compatibility (same endpoints, same request/response format) - Workflow http.* steps call your local services — so you can run your entire orchestration stack on localhost - Parallel execution, subworkflows, try/except/retry, expression engine - Most of the standard library: http, sys, text, json, base64, math, list, map, time, uuid, events, retry - Built-in web UI at /ui for triggering executions and inspecting results - CI-friendly: set WORKFLOWS_EMULATOR_HOST=localhost:8787 in your test env What it doesn't do: googleapis.* connectors (mock them with locMar 2, 2026 6:17 PM
github.com
Show HN: btrc – C, but better. Built with AI in just a few weeknightshttps://github.com/schiffy91/btrcbtrc is a statically-typed language that transpiles to C11. It adds classes, generics (monomorphized), type inference, lambdas, f-strings, collections (Vector, Map, Set), threads, GPU compute via WebGPU, ARC memory management, exception handling, and a standard library — while generating strict C11 with no runtime, no GC, and no VM.The compiler is a 6-stage Python pipeline (lexer → parser → analyzer → IR gen → optimizer → C emitter) driven by a formal EBNF grammar and an algebraic AST spec (Zephyr ASDL). The generated C is readable and linkable with any C11 compiler. It ships with a VS Code extension (LSP with completions, diagnostics, go-to-def, hover) and 930 tests.I've wanted to build something like this for about 10 years, but it was always too ambitious of a project to do on the side. With AI, I was able to build it over a handful of evenings after work, which is really wild.Some things worth noting:A few things that I find fun / interesting / noteworthy:- The EBNF grammar and ASDMar 2, 2026 5:52 PM

science.nasa.gov
Collaborating Through Data: Inside the PSI Users Grouphttps://science.nasa.gov/science-research/biological-physical-sciences/collaborating-through-data-inside-the-psi-users-group/About the PSI Users Group The Physical Sciences Informatics (PSI) Users Group is a recurring Webex forum that brings together researchers, open-science practitioners, and collaborators from across the physical sciences community. Designed to foster collaboration, knowledge-sharing, and data-driven discovery, each meeting provides participants with a platform to directly engage with leading researchers and PIs. Each […]Mar 2, 2026 5:30 PM