github.com
Show HN: Aethene – Open-source AI memory layerhttps://github.com/akhilponnada/aetheneHey HN, I'm shipping my first open-source project and I'm pretty nervous about it. Aethene is an AI memory API – it gives your AI apps persistent memory. Store conversations, extract facts automatically, search semantically, handle contradictions gracefully. It works well thank most of the memory projects available on the market currently.Why I built this: I was building AI agents and kept running into the same problem – they forget everything. Every conversation starts from zero. I wanted something that could: - Auto-extract facts from conversations (not just store raw text) - Handle "user moved from SF to NYC" without keeping both as true - Search by meaning, not just keywords - Version everything (who said what, when) Tech stack: - TypeScript + Hono (fast, edge-ready) - Convex (real-time DB + vector search) - Gemini (embeddings + extraction) What it does: # Store memory curl -X POST /v1/content -d '{"content": "User loves hiking, lives in SF"}' # Recall naturally curl -X POST /v1/reFeb 22, 2026 1:57 PM
news.ycombinator.com
Ask HN: How do you track 2026 AI price wars? I built a tool to helphttps://news.ycombinator.com/item?id=47110844"I built https://tokencost.is to solve a recurring headache: manually scraping dozens of provider pages just to estimate API spend for my agentic workflows.My goal was a neutral, minimalist utility in the vein of Time.is. We now track 44 models—including OpenAI, Anthropic, Google, DeepSeek, Mistral, and Cohere—with hourly updates.Key Features:Real-Time Latency: We track TTFT benchmarks (e.g., Llama 3.1 at 28ms) alongside pricing.Price Deltas: We track 24h market shifts; look for the ↑↓ indicators in the table to see how the 'AI Price War' is moving.Multimodal Calculator: Handles Text, Audio, and Video tokens in a single UI.100% Neutral: No affiliate bias or listing fees. Just raw data scraped hourly.I’m not a developer by trade, so I used an agentic workflow to build the backend and scrapers. I found that being the 'product owner' rather than the 'coder' actually helped me focus on the data integrity and the specific multimodal features I needed for my own work.I'd love to hear what otFeb 22, 2026 1:28 PM
github.com
Show HN: Pq – Simple, durable background tasks in Python using Postgreshttps://github.com/ricwo/pqAt work we were using python-rq for background tasks. It does the job for simple things, but we kept bumping into limitations. We needed to schedule tasks hours / days out and trust they'd survive a restart. We wanted periodic tasks with proper overlap control. So we built a scheduling / enqueuing system around Postgres to bring these durability capabilities to python-rq. This worked fine for a while but was trickier to reason about due to its more complicated architecture (we'd run two separate services just for getting jobs from Postgres into the rq Redis queue, plus N actual task workers).pq is a simpler approach: It's a Postgres-backed background-task library for Python, using SELECT ... FOR UPDATE SKIP LOCKED for concurrency safety. You just run your N task workers, that's it. The stuff I think is worth knowing about: - Transactional enqueueing -- you can enqueue a task inside the same DB transaction as your writes. If the transaction rolls back, the task never exists. This is theFeb 22, 2026 1:03 PM
news.ycombinator.com
Ask HN: How do new blogs break the backlink–indexing loop?https://news.ycombinator.com/item?id=47110054We run a small coding blog sharing our learning experience and I keep hitting the same loop: Google won't index most of our pages because the site has no authority. Authority comes from backlinks. But nobody links to a site that doesn't show up in search results. 110+ posts and almost nothing showing up on Google. Bing has started indexing them, but Google won't budge. Google indexed us in the beginning, just a bit, then after one of their updates we were destroyed and never re-covered.We've tried long-form guides, short tutorials, long-tail keywords, competitive keywords, niche topics with zero competition. I'm not sure anymore if content is the problem.We have no noindex issues, no missing sitemaps, no crawl errors — all the basic SEO boxes are checked. Site is submitted to Search Console, PageSpeed Insights performance is good (99% desktop, 85+ mobile).We started cross-posting to Medium, Dev.to, and Hashnode but we can't even be sure that's the right path. We've been posting consistFeb 22, 2026 11:04 AM
bing.com
11 Classic and Chic Luxury Handbags That Will Never Go Out of Stylehttp://www.bing.com/news/apiclick.aspx?ref=FexRss&aid=&tid=6a8cc9e6069e440385c60956996b77ee&url=https%3A%2F%2Fwww.instyle.com%2Fclassic-handbag-styles-11908667&c=7486620430663513586&mkt=en-usFrom the Chanel Classic Flap to the Gucci Jackie. The first iteration of the Gucci Jackie was crafted by the label’s house in 1961 under an entirely different name. Former First Lady Jackie Kennedy ...Feb 22, 2026 10:19 AM
news.google.com
Complete medical aesthetic and wellness, led by specialistshttps://news.google.com/rss/articles/CBMiigFBVV95cUxQX1QzZExOT196VjF3b1dpNjlyWlVNRnAtOC1hbTZXalRBcjBaUmtkSkRFa25BcjFzQU42LS1XX01RTUZDMkZQczg5X29wZHIwU0xjZGwwOTN1bGZOa29FcnZJV3NzYlFGMzVsVzUxazhwSTJ1OFVqYnJmREUyUWJibUJ6YWthX0tmOGc?oc=5Complete medical aesthetic and wellness, led by specialists Independent ObserverFeb 22, 2026 8:00 AM

spacescout.info
Following Near-Perfect Rehearsal, Artemis II Faces a Rollbackhttps://www.spacescout.info/2026/02/following-near-perfect-rehearsal-artemis-ii-faces-a-rollback/After an issue with the SLS rocket's upper stage, NASA has made the difficult decision to roll the Artemis II stack back to the Vehicle Assembly Building (VAB).Feb 21, 2026 8:46 PM
news.ycombinator.com
Ask HN: How do you test your MyBatis dynamic SQL queries?https://news.ycombinator.com/item?id=47104032(Full Disclosure: I am developing this plugin and drafting this post with the assistance of AI agents. It’s been an eye-opening experiment in how AI can help "scratch an itch" faster than ever.)I’m currently working on a project using MyBatis, and one of the biggest friction points for me is verifying dynamic SQL. Whenever I have a complex query with , , or OGNL expressions, the feedback loop is painfully slow.My current "workflow" (which I find incredibly tedious) is: 1. Copy the raw SQL from the XML mapper. 2. Manually scrub the XML tags like and . 3. Replace all #{param} placeholders with actual values, one by one. (or :param) 4. Finally, paste the cleaned-up SQL into the IDE’s database console to see if it even runs.I was surprised to find that, despite many MyBatis plugins existing, none of them seem to offer a "direct execution with parameters" feature within the IDE. I expected this to be a standard feature by now, but it feels like we’re still stuck with manual labor for query Feb 21, 2026 7:52 PM
news.ycombinator.com
The Reason Robotics DevOps Is Failing to Scalehttps://news.ycombinator.com/item?id=47102305In the robotics industry, the transition from manual "bespoke" workflows to standardized Continuous Integration and Continuous Deployment (CI/CD) is a critical requirement for scaling operations. Robotics CI/CD involves automating the build, testing, and distribution of software specifically for heterogeneous hardware, such as NVIDIA Jetson or other edge devices.Robotics CI/CD: Key Requirements:Hardware Software Alignment: Unlike traditional cloud CI/CD, robotics requires managing diverse hardware stacks and ensuring that software (e.g., ROS2 packages, CUDA drivers) is compatible with specific sensor and motor configurations. Edge-Native Pipelines: CI/CD must extend to the "execution layer" at the network edge to handle intermittent connectivity and bandwidth constraints. Automated Validation: Standard practices now include using simulation environments (like NVIDIA Isaac Sim) to validate code before it touches physical hardware, reducing the risk of catastrophic failure.Fleet ManagemeFeb 21, 2026 4:37 PM

spacepolicyonline.com
Artemis II Likely Delayed Due to Upper Stage Problemhttps://spacepolicyonline.com/news/artemis-ii-likely-delayed-due-to-upper-stage-problem/Just one day after excitedly sharing the successful results of the second Artemis II Wet Dress Rehearsal, NASA has a different message this morning. A problem with helium flow to […]Feb 21, 2026 4:00 PM
github.com
Show HN: AI Council v2 – multi-model deliberation, now with 35 personashttps://github.com/prijak/Ai-councilI posted this yesterday and kept building. Original post got some good feedback about wanting more domain-specific personas beyond the generic analyst/contrarian archetypes. So I added them. 35 personas now, organized into actual professional structures:Law Firm — Litigator + Corporate Counsel + Compliance Officer + Junior Associate, synthesized by a Senior Partner Hospital Team — GP + Specialist + Pharmacist + Medical Ethicist, synthesized by Chief of Medicine Editorial Team — Reporter + Editor + Legal Reviewer + SEO lead, synthesized by Editor-in-Chief Corporate — CFO + CTO + CMO + Legal, synthesized by CEO Startup — Founder + Engineer + Designer + Growth Lead, synthesized by Investor Consulting — Strategy + Operations + Finance + Risk, synthesized by Senior PartnerEach persona has a role-specific system prompt tuned to how that function actually thinks — the CFO talks in EBITDA and burn rate, the Junior Associate flags the clause the partners missed. Also shipped in v2:Temperature sFeb 21, 2026 8:52 AM
bing.com
Eat well, live longer: Study links 5 healthy diet plans to longevityhttp://www.bing.com/news/apiclick.aspx?ref=FexRss&aid=&tid=6a8ccb647cf34a039c82bad17bf55228&url=https%3A%2F%2Fwww.medicalnewstoday.com%2Farticles%2Feat-well-live-longer-study-5-healthy-diet-plans-longevity&c=8061799942962348645&mkt=en-usShare on Pinterest Research suggests that eating plans rich in whole, plant-based foods and reduced added sugar intake may support longevity. Image caption: alvarez/Getty Images A recent study ...Feb 21, 2026 3:11 AM
bing.com
Eat well, live longer: Study links 5 healthy diet plans to longevityhttp://www.bing.com/news/apiclick.aspx?ref=FexRss&aid=&tid=6a8cf7f385e543d1954c0171de850d19&url=https%3A%2F%2Fwww.medicalnewstoday.com%2Farticles%2Feat-well-live-longer-study-5-healthy-diet-plans-longevity&c=8061799942962348645&mkt=en-usShare on Pinterest Research suggests that eating plans rich in whole, plant-based foods and reduced added sugar intake may support longevity. Image caption: alvarez/Getty Images A recent study ...Feb 21, 2026 3:11 AM
news.ycombinator.com
Facebook Is Doing A-Okayhttps://news.ycombinator.com/item?id=47096447Note: I don't own any equity in Meta, or work there, or have a soft corner for them or their competition in any business category.There's a way to view just your friends' and groups' updates without seeing all the AI doom scrolling stuff.They are the largest peer to peer marketplace.They are the most popular platform for organizing groups.Apparently Facebook dating is popular (maybe someone can comment on that).If anything, despite all the dark patterns on the Wall, they are only growing and finding new ways to grow more.Feb 21, 2026 1:25 AM

spaceflightnow.com
Live coverage: Falcon 9 to launch 25 Starlink satellites after weather delayshttps://spaceflightnow.com/2026/02/20/live-coverage-falcon-9-to-launch-25-starlink-satellites-after-weather-delays/SpaceX is counting down to the launch of a Falcon 9 rocket carrying 25 Starlink satellites from California, after days of delay. Liftoff from Space Launch Complex 4 East at Vandenberg Space Force Base is scheduled for 1 a.m. PST (4 a.m. EST / 0900 UTC).Feb 20, 2026 10:46 PM
super-launch.app
Show HN: Super Launch – A platform for you to get discovered and grow traffichttps://super-launch.appI've been launching side projects for a while and realized that after the initial Product Hunt spike, there's not many places to get consistent visibility. So I built Super Launch — a curated directory where indie developers can list their startups and keep getting discovered.Here's what it offers:Submit your product and reach thousands of potential users looking for new tools AI-powered submission — auto-fill your listing with generated copy, logos, and screenshots Friend links — build reciprocal link partnerships with other makers to boost SEO SEO tools — analyze domain authority, keyword difficulty, and track your online presence Analytics dashboard — track views, clicks, and engagement for your listings It also automatically imports trending products from Product Hunt daily, so there's always fresh stuff to discover. Categories cover AI tools, SaaS, open source, affiliate programs, and more.Would love feedback from fellow indie hackers. What features would make this more useful forFeb 20, 2026 10:44 PM
github.com
Show HN: Pickle Rick Ported to Claude Code – Like a Ralph Loophttps://github.com/gregorydickson/pickle-rick-claudeThis is a port of the Pickle Rick Gemini CLI extension (itself an implementation of Geoffrey Huntley's "Ralph Wiggum" technique) for Claude Code, with one meaningful enhancement: context clearing between iterations. The core idea: a Claude Code Stop hook intercepts every session exit and blocks it, injecting a fresh prompt instead. Claude never actually stops — it just keeps working through a rigid lifecycle (PRD → ticket breakdown → per-ticket research/plan/implement/refactor) until the task is genuinely complete or a limit is hit. The problem with long loops: Claude Code compresses old conversation turns as context fills up. After enough iterations, the agent loses track of what phase it's in, which tickets are done, and what it was supposed to be building. It starts restarting from scratch. The fix: every decision: block response from the Stop hook includes a reason field with a structured session summary — current phase, iteration count, ticket checklist with status, original task,Feb 20, 2026 5:54 PM
prothon.dev
Show HN: Prothon – docs-first Python project generator for AI developmenthttps://www.prothon.dev/Prothon is a Python project generator that scaffolds a uv-based project with eight quality tools (ruff, ty, pytest, hypothesis, mutmut, bandit, vulture, complexipy) and a documentation-driven workflow for AI coding agents.The problem it solves: AI assistants lose context between sessions and drift from your decisions as context windows fill up. Prothon addresses this with three ideas:1. A three-level doc hierarchy (SPEC, DESIGN, PATTERNS) where each level scopes a single concern and higher always overrides lower. The AI implements from these docs, not from memory. Each doc-writing step is a dedicated agent that refuses content belonging at another level.2. Automated agents that keep things consistent: one cross-checks the three docs for contradictions, one generates reference skills from live documentation for your stack, one verifies code implements what the docs describe.3. A "promise" system for execution. Before each task, the agent declares what files it will touch, success criterFeb 20, 2026 4:31 PM
streakout.app
Show HN: Minimalistic workout tracker for iPhone – Stats, Trends, Streakshttps://streakout.app/Streakout is a minimal iOS workout tracker designed to extend Apple Health & Fitness. It reads your existing workout data and turns it into beautiful tiles, charts, and timelines – helping you answer one of the most important questions for your health: “How often did I move this week, this month, this year…?”Because what really matters is showing up.There’s no signup, no clutter, no subscription, no data sharing, and no noise – only the most relevant stats and insights, neatly packaged into two simple screens: overview and calendar feed.Would deeply appreciate some feedback.LET'S MOVEFeb 20, 2026 3:06 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