59,697 results for for

github.com
Show HN: OpenFable – Open-source RAG engine using tree-structured indexeshttps://github.com/alainbrown/openfableHi HN, I built OpenFable, an open-source retrieval engine that implements the FABLE algorithm (https://arxiv.org/abs/2601.18116) for RAG pipelines. I'm using it in another project and thought that others might benefit. Most RAG systems chunk documents into flat segments and retrieve by vector similarity. This works for simple lookups but breaks when answers span multiple sections, when relevant content is buried in a subsection, or when you need to control how many tokens you're sending to an LLM. OpenFable takes a different approach: when you ingest a document, it uses an LLM to identify discourse boundaries (not fixed-size windows), then builds a hierarchical tree, root, sections, subsections, leaf chunks, with embeddings at every level. Retrieval combines two paths: 1. LLM-guided path: the LLM reasons about which documents and subtrees are relevant from summaries 2. Vector path: similarity search with structure-aware score propagation through the tree Results from both paths are fus
Apr 8, 2026 1:05 PM
spacenews.com
A lunar base or a lunar economy?https://spacenews.com/a-lunar-base-or-a-lunar-economy/We applaud the lunar base vision laid out by NASA Administrator Jared Isaacman on March 24. Placing this stake in the lunar regolith is long overdue. What is missing from the mission architecture, however, is a vision for long-term economic development on the moon. It will be a profound missed opportunity if NASA does not […] The post A lunar base or a lunar economy? appeared first on SpaceNews.
Apr 8, 2026 1:00 PM
spacenews.com
Industry navigates NASA’s start-and-stop approach to commercial space stationshttps://spacenews.com/industry-navigates-nasas-start-and-stop-approach-to-commercial-space-stations/NASA signaled last summer it planned to accelerate efforts to replace the aging International Space Station. Nearly nine months later, that push appears to have slowed.In a directive signed at the end of July, the agency’s acting administrator, Sean Duffy sought changes to the Commercial Low Earth Orbit Destinations, or CLD, program, aimed at speeding […] The post Industry navigates NASA’s start-and-stop approach to commercial space stations appeared first on SpaceNews.
Apr 8, 2026 11:00 AM
spacenews.com
Inspection cubesat demo planned as first step toward orbital defense mothershiphttps://spacenews.com/inspection-cubesat-demo-planned-as-first-step-toward-orbital-defense-mothership/Bulgarian satellite maker EnduroSat and British defense tech startup Shield Space aim to deploy a cubesat next year capable of maneuvering near other satellites for inspection, ahead of plans to develop a mothership that could house dozens of them for on-demand missions. The post Inspection cubesat demo planned as first step toward orbital defense mothership appeared first on SpaceNews.
Apr 8, 2026 8:00 AM
europeanspaceflight.com
PLD Space Secures €30 Million European Investment Bank Loanhttps://europeanspaceflight.com/pld-space-secures-e30-million-european-investment-bank-loan/Spanish launch services provider PLD Space has secured a €30 million loan from the European Investment Bank (EIB), a month after closing a €180 million Series C funding round. The company is currently preparing for the inaugural flight of its MIURA 5 rocket, scheduled for later this year. PLD Space made the announcement on 7 […] The post PLD Space Secures €30 Million European Investment Bank Loan appeared first on European Spaceflight.
Apr 8, 2026 6:00 AM
science.nasa.gov
Celestial Wonders in Leohttps://science.nasa.gov/solar-system/skywatching/night-sky-network/celestial-wonders-in-leo/Leo is a prominent sight for stargazers in April. Its famous sickle, punctuated by the bright star Regulus, draws many a beginning stargazer’s eyes, inviting deeper looks into some of Leo’s celestial delights, including a great double star and a famous galactic trio. Leo’s distinctive forward sickle, or “reverse question mark,” is easy to spot […]
Apr 8, 2026 3:01 AM
old.reddit.com
Show HN: No AI tool could annotate my files and cite text accuratelyhttps://old.reddit.com/r/LLMDevs/comments/1sbusn8/new_pdfviewer_notes_panel_search_downloader_tool/Hi HNBeen building this for 2 years w/ my best friend. We find big-name AI tools pretty unusable for serious writing tasks, research work, and really kind of workflows that require accurate citations.We were deeply inspired by Cursor AI , Drive, and Google Scholar. These tools are all so helpful for us and changed the way that we worked with information and technology throughout our lives.Most of the time we only want to use AI for specific, assistive tasks like scraping through a ton of files for quotes, searching for new sources, or when we do want to generate text it needs to be accurate, it needs to follow specific directions without rewriting or hurting my work, and it must always check with me so I can verify that agents are working on the right track.We built Ubik Studio to solve these problems that also feel like larger issues preventing tons of people from using AI in their serious work effectively.You can work from local files and folder (without touching the cloud), use any
Apr 7, 2026 10:16 PM
nasa.gov
Earthsethttps://www.nasa.gov/image-article/earthset/The Artemis II crew captured this view of Earth setting on April 6, 2026, as they flew around the Moon. As the astronauts flew over the Moon’s far side, the crew photographed and described terrain features including impact craters, ancient lava flows, and surface cracks and ridges formed as the Moon slowly evolved over time. […]
Apr 7, 2026 6:54 PM
github.com
Show HN: Frontend-VisualQA — give coding agents eyes to verify their own UI workhttps://github.com/yutori-ai/frontend-visualqaCoding agents today are blind.They write “valid” HTML/CSS code but can still ship a broken layout, a clipped dropdown, or a page at the wrong URL. Playwright scripts can assert modal.isVisible() without knowing the modal is rendered off-screen.Essentially, coding agents need “eyes” to verify their own UI work.frontend-visualqa is a CLI + MCP server for Claude Code and Codex for visual testing, verification, and QA of a website.You give it a URL and natural-language claims: frontend-visualqa verify http://localhost:8000/dashboard.html \ --claims \ 'The API status indicator shows Active' \ 'The monthly quota progress bar is completely filled' # → first claim passes, second fails (label says 100% but bar is ~65% full) It catches visualDOM disagreements that selectors are blind to.You can also test interactive flows without hardcoded data: frontend-visualqa verify 'http://localhost:8000/booking_form.html' \ --claims 'The date on the confirmation page matches the date selected on the calend
Apr 7, 2026 5:06 PM
news.ycombinator.com
Hybrid Attentionhttps://news.ycombinator.com/item?id=47674749TLDR: Forked pytorch and triton internals . Changed attention so its linear first layer , middle quadratic layer, last linear layer Inference got much faster with a low perplexity hit in tests .Full attention O(n²): 17.96s / 5.6 tok/sHybridAttention O(n·W + n·D): 0.35s / 286.6 tok/sI have been building a small Rust focused language model from scratch in PyTorch. This is not a finetune. It is byte level, trained from random initialization on a Rust heavy corpus assembled here: https://codeberg.org/JohannaJuntos/SisyphusModel and training setupThe model has 25.6M parameters with a 512 context length. It uses a byte level vocabulary of 256, with 8 layers, 8 heads, and 512 dimensional embeddings. Positional embeddings are learned and the embedding and LM head weights are tied.Training ran for 30k steps on a 173.5M byte Rust corpus using a single RTX 4060 Ti 8GB.Final metrics were a train loss of 0.5834, validation loss of 0.8217, and perplexity of 2.15. The best validation loss occurred ar
Apr 7, 2026 1:06 PM
bing.com
How The Buy, Borrow, Die Strategy Helps The Wealthy Cut Taxeshttp://www.bing.com/news/apiclick.aspx?ref=FexRss&aid=&tid=6a8b0cec336f4f29bea99beaa9903bdc&url=https%3A%2F%2Fwww.forbes.com%2Fsites%2Fdavidrae%2F2026%2F04%2F07%2Fhow-the-buy-borrow-die-strategy-helps-the-wealthy-cut-taxes%2F&c=247810721382701883&mkt=en-usWant to pay cash for your new home without incurring millions in capital gains taxes? Check out an SBLOC. The Buy, Borrow, Die strategy enables the wealthy to dramatically reduce taxes. Instead of ...
Apr 7, 2026 12:24 PM
networkedthought.substack.com
Show HN: Petrarca: Voice first spaced repetition – track knowledge across bookshttps://networkedthought.substack.com/p/petrarca-an-intelligent-companionI've been struggling for years to get an overview (become literate) in history as an adult. I wanted all the names (Cicero, Caesar, Constantinople, Waterloo) to actually mean something, because reading books and deeper analyses becomes so much more interesting then.But I also didn't want an app that forced me to do all my reading on screen - I want to read physical books on the couch, listen to a history podcast when I walk, watch a documentary with my wife. And still track what I learnt, and maintain it...So I built an app that let's me track which books I am reading by taking a picture of the cover (it automatically researches them, inserts TOC and content, autosyncs with Kindle progress etc), and generates review questions based on book content and generated "curricula".But to map the things I already know, I designed a "knowledge elicitation" using voice - it gives me some prompts (what do you know about Plato), I talk into the mic while walking, and it maps what I know, my mistake
Apr 7, 2026 12:22 PM
spacenews.com
Earth observation operators push to deliver satellite images within minuteshttps://spacenews.com/earth-observation-operators-push-to-deliver-satellite-images-within-minutes/Vantor employees were gathered for a sales kickoff in January, when an executive announced that a WorldView Legion satellite passing overhead would snap a photo of the California venue. Later, a buzzer sounded to alert the audience that the 30-centimeter-resolution image was available on the Vantor Hub portal. It had been 13 minutes. The demonstration […] The post Earth observation operators push to deliver satellite images within minutes appeared first on SpaceNews.
Apr 7, 2026 11:00 AM
onboardly-ruddy.vercel.app
Show HN: Onboardly – Ask questions about any GitHub codebase in plain Englishhttps://onboardly-ruddy.vercel.appA few months ago, I asked HN about the biggest pain points when joining a new team (https://news.ycombinator.com/item?id=47368472). Most people said it was the tribal knowledge buried in the code.I've spent my time as a student building Onboardly to solve this. It’s a web app that indexes your GitHub repo and lets you ask questions in plain English. Unlike a general LLM, it cites the exact files it’s looking at so you can verify the logic.Tech stack: FastAPI backend, Next.js frontend, and a RAG architecture for the indexing. I’m currently hosting it on Render's free tier, so there might be a slight delay on the first login—I'm working on that!I’d love for you guys to break it and tell me where the answers feel 'off' or what features a dev actually needs for onboarding.It's free to try — would love feedback on answer quality across different repo types and languages.https://onboardly-ruddy.vercel.app
Apr 7, 2026 10:57 AM
news.ycombinator.com
From Idea to App Store Was Predictable. From Launch to Traction Was Nothttps://news.ycombinator.com/item?id=47672566When you just have an idea and the plan is only starting to form, everything feels unclear. Building a product to launch seems daunting, overly complicated. And it may indeed be complicated, depending on the product. But in reality - given all the available tools and resources - it is the most ‘plannable’ part. If you are meticulous in planning and diligent in execution, it is also the most predictable part in terms of key results. You start with a concept, move to architecture and systems, and before you know it - you have a prototype to play with. You build, test, improve, iterate, iterate, iterate, and launch. And here’s where the real difficulty begins: everything after “Done”. Let me clarify something upfront: I’m talking about owning an indie product - with no backing whatsoever. The cruel reality hits fast. Zero traffic. Let that sink in: zero traffic. With thousands of apps being launched daily - many backed by real marketing budgets - the real (if not the only) challenge becom
Apr 7, 2026 9:17 AM
bing.com
ABR's Pre-Preakness Party Returns May 14http://www.bing.com/news/apiclick.aspx?ref=FexRss&aid=&tid=6a8cd2860ea04258abfdd08557e3fec9&url=https%3A%2F%2Fwww.bloodhorse.com%2Fhorse-racing%2Farticles%2F291092%2Fabrs-pre-preakness-party-returns-may-14&c=13575569795259597006&mkt=en-usAmerica's Best Racing (ABR), the fan-development platform and national marketing initiative funded by The Jockey Club, today announced the return of its 11th annual Pre-Preakness Party on Thursday, ...
Apr 7, 2026 8:45 AM
esa.int
Doubling ESA’s deep space capabilities at New Norcia with deep space antenna 4https://www.esa.int/Enabling_Support/Operations/ESA_Ground_Stations/Doubling_ESA_s_deep_space_capabilities_at_New_Norcia_with_deep_space_antenna_4ESA’s newest deep space antenna, DSA 4 (also called NNO-3), is now fully online – representing a powerful new addition that strengthens the Agency’s reach across the Solar System and boosts the capacity and resilience of its global Estrack network for communicating with spacecraft in deep space.
Apr 7, 2026 7:15 AM
europeanspaceflight.com
The Exploration Company Completes Nyx Test Model Pressure Testshttps://europeanspaceflight.com/the-exploration-company-completes-nyx-test-model-pressure-tests/The Exploration Company has completed initial testing of the pressurised structure for its Nyx Structural Test Model (STM). The structure was manufactured by CNIM Systèmes Industriels in France and delivered to the company in mid-February. Founded in 2021, The Exploration Company is developing a modular space capsule called Nyx that will initially be used to […] The post The Exploration Company Completes Nyx Test Model Pressure Tests appeared first on European Spaceflight.
Apr 7, 2026 6:54 AM
bing.com
Exploring Dolphins’ cornerback options in draft. Two SEC corners in play at No. 11http://www.bing.com/news/apiclick.aspx?ref=FexRss&aid=&tid=6a8cb0c6727e40eaaf91adf10a2a817a&url=https%3A%2F%2Fwww.miamiherald.com%2Fsports%2Fnfl%2Fmiami-dolphins%2Farticle314255269.html&c=10325399653035291467&mkt=en-usThe Dolphins badly need to augment cornerback (and a half dozen other positions) in this roster overhaul, and they’ll have ample opportunity in April’s draft. For weeks, two Southeastern Conference ...
Apr 7, 2026 3:33 AM
news.ycombinator.com
Claude Code limits are starting to feel like a psychological trickhttps://news.ycombinator.com/item?id=47668813I signed up for the Claude Code Pro Subscription about a month ago. and I have been really careful about my limits because I burned through them pretty easily about two weeks ago, but this week Im already at 10% and have been barley using it..Since there is no transparency around the metric for these limits they could easily change the metric and it wouldn't be easy to measure it. I'm thinking about canceling my sub because there is no clear way for me to understand this metric but wanted to see what others thought about this.
Apr 6, 2026 11:33 PM