18,803 results for all

nasa.gov
About Flight Demonstrations and Capabilities (FDC) Projecthttps://www.nasa.gov/directorates/armd/iasp/fdc/about-fdc/The FDC project conducts complex integrated small-scale flight research to validate the benefits of new technologies. By modifying aircraft from FDC’s support fleet, the project enables aggressive, success-oriented flight campaign schedules. While many technologies are at mid-levels of technology readiness, the FDC project supports all phases of technology maturation. FDC’s support aircraft fleet enables safety chase and in-flight experimental measurements for a variety of […]
Mar 9, 2026 6:30 PM
spacedaily.com
Hostage to the Moon - How Artemis Became Industrial Welfare in a Space Suit - Part 2https://www.spacedaily.com/reports/Hostage_to_the_Moon_How_Artemis_Became_Industrial_Welfare_in_a_Space_Suit_Part_2_999.htmlLos Angeles CA (SPX) Mar 09, 2026 NASA says it has finally found the "back to basics" recipe to get Americans back on the Moon by 2028. A new intermediate mission, standardized hardware, a faster launch cadence: on paper, the Artemis overhaul looks like a sober course correction after years of drift.
Mar 9, 2026 5:07 AM
spacedaily.com
Course Correction or Controlled Crash? Inside NASA's Artemis Overhaul - Part 1https://www.spacedaily.com/reports/Course_Correction_or_Controlled_Crash_Inside_NASAs_Artemis_Overhaul_Part_1_999.htmlLos Angeles CA (SPX) Mar 09, 2026 NASA says it has finally found the 'back to basics' recipe to get Americans back on the Moon by 2028. A new intermediate mission, standardized hardware, a faster launch cadence: on paper, the Artemis overhaul looks like a sober course correction after years of drift. Look a little closer, though, and the same changes read like a managed soft-landing for a program that is structurally broken and
Mar 9, 2026 5:07 AM
spacedaily.com
Apollo Cosplay on a 21st-Century Clock - Why Artemis Keeps Slipping Toward 2029 - Part 3https://www.spacedaily.com/reports/Apollo_Cosplay_on_a_21st_Century_Clock_Why_Artemis_Keeps_Slipping_Toward_2029_Part_3_999.htmlLos Angeles CA (SPX) Mar 09, 2026 NASA's latest reboot of the Artemis Moon program comes with familiar language: 'back to basics,' 'muscle memory,' 'step-by-step,' and an explicit nod to the Mercury-Gemini-Apollo playbook. The agency wants to fly more often, change hardware less, and build up capability incrementally, just like the 1960s. The problem is that Artemis is trying to cosplay Apollo in a world with very different politics, partners and rivals - and the gaps are showing.
Mar 9, 2026 5:07 AM
movie-chain.com
Show HN: Movie site built on a game enginehttps://movie-chain.com/I'm an ex-gamedev (Guitar Hero) who built a movie website that looks like a Trello board. Each column can contain a different movie or cast member. Load pre-made boards or create your own by dragging and dropping between the columns. You can share boards with others.For example, start with Quentin Tarantino’s movies in Column 1, put the cast of Once Upon a Time in Hollywood in Column 2, then put Brad Pitt’s entire filmography in Column 3. Keep going as long as you want, building a "chain" ala Six Degrees of Kevin Bacon.I was frustrated that all popular movie websites are page-oriented: one HTML page per movie or person. I asked myself what a movie site designed in 2026 would look like, in an era when full-screen canvas sites like Miro are common. And then asked what if the site was built on a game engine? I used PixiJS.I ingested TMDB movie data into my own SQLite database head of time, so there are no external API calls at runtime. This was necessary because opening a board with 100's
Mar 8, 2026 3:17 PM
bing.com
Community's Choice Awards spotlight: WishLane Aesthetics & Wellnesshttp://www.bing.com/news/apiclick.aspx&aid=&tid=6a81222278a646e08bfba31f7beabc22&url=https%3a%2f%2fwww.postcrescent.com%2fstory%2fmoney%2f2026%2f03%2f07%2fcommunitys-choice-awards-business-spotlight-wishlane-aesthetics-wellness%2f89021213007%2f&c=11726446592776458246&mkt=en-usEditor's note: The Best of the Valley WI Community's Choice Awards celebrate the people and businesses that make the Appleton area special. Readers are invited each year to nominate and vote for their ...
Mar 7, 2026 3:05 AM
bing.com
Community's Choice Awards spotlight: WishLane Aesthetics & Wellnesshttp://www.bing.com/news/apiclick.aspx&aid=&tid=6a81222ff68349debf0f261aef24fee8&url=https%3a%2f%2fwww.postcrescent.com%2fstory%2fmoney%2f2026%2f03%2f07%2fcommunitys-choice-awards-business-spotlight-wishlane-aesthetics-wellness%2f89021213007%2f&c=11726446592776458246&mkt=en-usEditor's note: The Best of the Valley WI Community's Choice Awards celebrate the people and businesses that make the Appleton area special. Readers are invited each year to nominate and vote for their ...
Mar 7, 2026 3:05 AM
github.com
Show HN: Auto-Co – 14 AI agents that run a startup autonomously (open source)https://github.com/NikitaDmitrieff/auto-co-metaAuto-Co is an autonomous AI company OS — not a framework you build on, but a running system with an opinionated structure.Architecture: - 14 agents with expert personas (CEO/Bezos, CTO/Vogels, CFO/Campbell, Critic/Munger...) - Bash loop + Claude Code CLI — no custom inference, no vector stores - Shared markdown consensus file as the cross-cycle relay baton - Human escalation via Telegram for true blockers only (2 escalations in 12 cycles) - Every cycle must produce artifacts: code, deployments, docsThe repo IS the live company. It built its own landing page, README, Docker stack, GitHub release, and community posts — all autonomously across 12 cycles of self-improvement.What makes it different from AutoGen/CrewAI/LangGraph: those are building blocks. Auto-Co is the building. The decision hierarchy, safety guardrails, and convergence rules are baked in. You give it a mission and a Claude API key; it runs.The Critic agent (Munger persona) has been the most valuable: it runs a pre-mortem
Mar 6, 2026 9:48 PM
github.com
Show HN: Moongate – Ultima Online server emulator in .NET 10 with Lua scriptinghttps://github.com/moongate-community/moongatev2I've been building a modern Ultima Online server emulator from scratch. It's not feature-complete (no combat, no skills yet), but the foundation is solid and I wanted to share it early.What it does today: - Full packet layer for the classic UO client (login, movement, items, mobiles) - Lua scripting for item behaviors (double-click a potion, open a door — all defined in Lua, no C# recompile) - Spatial world partitioned into sectors with delta sync (only sends packets for new sectors when crossing boundaries) - Snapshot-based persistence with MessagePack - Source generators for automatic DI wiring, packet handler registration, and Lua module exposure - NativeAOT support — the server compiles to a single native binary - Embedded HTTP admin API + React management UI - Auto-generated doors from map statics (same algorithm as ModernUO/RunUO)Tech stack: .NET 10, NativeAOT, NLua, MessagePack, DryIoc, KestrelWhat's missing: Combat, skills, weather integration, NPC AI. This is still early — the
Mar 6, 2026 2:22 PM
news.google.com
Brutalism – what does the architecture movement mean now?https://news.google.com/rss/articles/CBMihgFBVV95cUxQMm9xQ0dkZVRqQjFhWHN1VldBQk83TzNBWEtqQVlpdTduYU1pS0JrUnpNbEpNeEhLSnNpb3lFTDgxYkY1elRzSzR0WWpyNDk5aG9McXRWck1lV19Qcm5JbHN0Y1J6a3Z2ZFQxbHZ2eDFfcU9OWXNDb1NDWlBUQ0NiRHUwWmdkQQ?oc=5Brutalism – what does the architecture movement mean now?  wallpaper.com
Mar 6, 2026 8:00 AM
spacedaily.com
Ancient impact may explain moons contrasting sideshttps://www.spacedaily.com/reports/Ancient_impact_may_explain_moons_contrasting_sides_999.htmlTokyo, Japan (SPX) Mar 05, 2026 For decades scientists have puzzled over why the moons two hemispheres look so different despite sharing a common origin in the early solar system. The near side that always faces Earth is dominated by dark flat volcanic plains called maria that create the familiar man in the moon pattern seen with the naked eye. In contrast the far side has a much thicker crust and appears as a rugged hea
Mar 5, 2026 9:54 AM
moatradar.com
Show HN: MoatRadar – AI investment research through Warren Buffett's principleshttps://www.moatradar.com/?promo=HACKERNEWSHey HN,I’m a non-developer and this is the first app I’ve ever shipped in my life. I built it over the last few days using Claude and a lot of vibe coding.The idea came from my own investing workflow: I often look at companies through the lens of specific investors (Buffett, Lynch, Taleb, etc.). I wanted a tool that could generate investment ideas filtered through those frameworks.What the app does:You choose an investor (Buffett, Lynch, Soros, Damodaran, etc.) and an asset class (stocks, startups, crypto). The app then generates 10 opportunities and explains why that investor might find them interesting, based on their known principles.Under the hood: • Node.js server (no frameworks) • Vanilla JS frontend • GPT-4o for research / synthesis • live price data • Stripe + Google OAuth • hosted on RailwayIt’s still an experiment and I’m curious if the idea actually makes sense to other investors.You can try it here:https://www.moatradar.comHN users can get 10 free credits:https://www.moatra
Mar 4, 2026 11:25 PM
news.google.com
This 'Amazing' St. Patrick's Day Dessert Starts With a $1.25 Box of Cake Mixhttps://news.google.com/rss/articles/CBMidEFVX3lxTE0xWHk2cVRGUzIwVDkyazlxaFpzSlBVUkJVUUd2cFpibGtSM052eFQ2cDNqMnNqZmJLTG1mYVUyY0ZJaU9CU1FlZGl5UTdJYUZTWmZicmRYZl9rMGJUT1hUZWg5Qy1PVktMSXl4Sm12RmJmOEha?oc=5This 'Amazing' St. Patrick's Day Dessert Starts With a $1.25 Box of Cake Mix  Allrecipes
Mar 2, 2026 8:00 AM
github.com
Show HN: Stash – AI-powered self-hosted bookmark managerhttps://github.com/ayoub9360/stash-bookmarkI built Stash, a self-hosted bookmark manager that uses AI to automatically process your links.Paste a URL and it fetches the content, parses it, summarizes it, auto-assigns categories and tags, and generates a vector embedding for search.Search is hybrid — it combines pgvector cosine similarity (semantic) with PostgreSQL tsvector (keyword) and merges both with Reciprocal Rank Fusion. You can search in natural language ("articles about distributed systems tradeoffs") or with simple keywords.It's single-tenant by design: one password, no user accounts, no tracking. Your data stays on your machine.The project is MIT licensed don't hesitate to contribute. Some areas where help would be great: browser extension, bookmark import/exportGitHub: https://github.com/ayoub9360/stashHappy to answer questions about the architecture or the hybrid search approach.
Feb 27, 2026 2:11 PM
github.com
Show HN: Context Harness – Local first context engine for AI toolshttps://github.com/parallax-labs/context-harnessContext Harness is a single Rust binary that gives AI tools like Cursor and Claude project-specific memory. It ingests docs, code, Jira tickets, Slack threads, and anything else into a local SQLite database, indexes them with FTS5 and optional vector embeddings, and exposes hybrid search via CLI and an MCP-compatible HTTP server.I built this because I kept hitting the same problem: AI tools are powerful but have no memory of my complex multi-repo project. They can't search our internal docs, past incidents, or architecture decisions. Cloud RAG services exist, but they're complex, expensive, and your data leaves your machine. I wanted something I could point at my sources and just run `ctx sync all`.Quick start: # Install (pre-built binaries available for macOS/Linux/Windows) cargo install --git https://github.com/parallax-labs/context-harness.git # Create config and initialize ctx init # Sync your data sources (filesystem, Git, S3, or Lua scripts) ctx sync all # Search from CLI ctx sea
Feb 26, 2026 6:26 AM
spacedaily.com
Simple collapse may build cosmic snowman worldshttps://www.spacedaily.com/reports/Simple_collapse_may_build_cosmic_snowman_worlds_999.htmlNew York (SDX) Feb 23, 2026 Astronomers have puzzled over why many icy worlds in the distant Kuiper Belt look like snowmen, with two round lobes joined together. New work from Michigan State University points to a surprisingly simple explanation: these so called contact binaries can form directly through gravitational collapse. Far beyond Neptune, the Kuiper Belt holds icy, largely untouched planetesimals that preser
Feb 24, 2026 8:42 AM
github.com
Show HN: Irpapers – Visual embeddings vs. OCR trade-offs in scientific PDFshttps://github.com/weaviate/query-agent-benchmarkingHey HN, we are releasing IRPAPERS to answer a highly pragmatic question: when building a RAG pipeline over PDFs, should you OCR the text or just embed the raw page images?Processing PDFs in production usually involves stringing together brittle OCR heuristics. While recent multimodal embeddings (like ColModernVBERT or ColPali) allow you to skip OCR entirely and retrieve directly from visual layouts, we wanted to measure if the computational overhead is actually worth the utility.The short answer: Transformer-based image pipelines won't be perfect for every use-case, but they fix exactly what OCR breaks.Here is what we found benchmarking 3,230 pages of dense scientific literature:Complementary Bottlenecks: Text representations (BM25 + dense vectors) are highly efficient for exact lexical constraints (e.g., finding a specific acronym like "HyDE"). Conversely, image embeddings shine on spatial architecture diagrams and t-SNE plots where OCR serialization just turns into structural garbage
Feb 23, 2026 5:10 PM
news.ycombinator.com
Instance segmentation model that extracts 3D geometry from 2D floor planshttps://news.ycombinator.com/item?id=47092547Hey HN,I am an ML Engineer and a full-stack software engineer. For the past few weekends, I have been working on a pipeline to solve a PropTech problem: turning messy, highly occluded 2D floor plans into clean, structured data for 3D extrusion. Originally demoed for a firm hiring for the role.The Problem: If you try to use standard object detection (bounding boxes) or basic OCR (tested Qwen, DeepSeek) on architectural plans, it fails instantly. Walls intersect, doors swings and dimension lines heavily occlude the actual structures.The Stack & Architecture: I built an instance segmentation pipeline that relies strictly on pixel-perfect masking to pull the geometry.The Backbone: Swin Transformer + Detectron2.Model trained on 1024X1024 images, with RTX 4090Inference: Inference on CPU
Feb 20, 2026 7:17 PM
europeanspaceflight.com
The UK Amends Launch Liability Rules as RFA Prepares for Inaugural Flighthttps://europeanspaceflight.com/the-uk-amends-launch-liability-rules-as-rfa-prepares-for-inaugural-flight/An amendment to the United Kingdom’s Space Industry Act will mandate that limits are set on how much launch operators are financially liable for if something goes wrong. The government has framed the change as a necessary step to strengthen the country’s position as a competitive launch location. The concept of states being liable for […] The post The UK Amends Launch Liability Rules as RFA Prepares for Inaugural Flight appeared first on European Spaceflight.
Feb 20, 2026 3:01 PM
science.nasa.gov
Measuring the Big Bang with the COBE satellitehttps://science.nasa.gov/missions/explorer/measuring-the-big-bang-with-the-cobe-satellite/By John Mather The Cosmic Background Explorer satellite (COBE) went up on a Delta rocket on Nov. 18, 1989, into a polar sun-synchronous orbit 900 km up. Our team at NASA Goddard Space Flight Center (GSFC), Ball Aerospace, the Jet Propulsion Laboratory (JPL) and universities built it to look at the cosmic microwave and infrared […]
Feb 18, 2026 7:22 PM