2,318 results for Tool

github.com
Show HN: Pond – lossless archive for agent sessions in your own S3https://github.com/tenequm/pondI wanted all of my sessions preserved in one S3 storage dump I could access from anywhere. I couldn't find anything that could store sessions from multiple machines in one remote S3 bucket without running a database service anywhere, make them available as an MCP for my agent, and efficiently search through them. pond was born out of this, and out of my necessity to stop being locked to my laptop. I'm convinced that the sessions we generate with agents are one of the most precious assets we have and it still feels so odd to me that we throw them away like we couldn't care less.With pond you just point it at an S3 bucket or a local directory. Under the hood is in-process Lance. It also supports safe concurrent writes, so I just collect all my sessions from all my local machines, remote VMs and telegram agent setups in one bucket dir. Right now that is 14,861 sessions, 2.83M messages, 10.6 GiB, from 8 tools (Claude Code, Codex, opencode, pi, Claude Desktop, oh-my-pi and a few more).The o
Aug 20, 2026 4:04 PM
excusemyfrench.org
Show HN: Excuse My French – an Open Source French-learning apphttps://excusemyfrench.org/hi HN! Many years ago (in 2018) I wrote a simple French-learning exercise generator in Javascript for my wife. I was looking for a way to generate as many exercises as possible for her to practice. The idea was being able to generate a huge combination of sentences and being able to transform them deterministically based on French grammar rules. The generation and transformation is rule-based (no LLMs back then).For example, we generate (using rule-based) :> Je mange une pommethen we ask the engine to transform it to past and replace the pronoun:> Je l'ai mangéeThen we compare with the user's answer.I recently picked the project back up, thanks to AI coding tools and some free time I improved the UI, added more conventional bits (flashcards, dictation, progress tracking, etc). I kept the core of it: the rule-based sentence generator, because it allows to generate extremely fast locally and in a controlled way.I pushed this new version on the same repository : https://github.com/Celebio
Aug 20, 2026 3:54 PM
github.com
Launch HN: Vendo (YC S26) – Let users build features on top of your producthttps://github.com/runvendo/vendoHi HN, we’re Yousef & Nour, founders of Vendo (https://vendo.run). Vendo lets users create new features inside the software they already use. A user describes the dashboard, workflow, or small app they need, and Vendo builds it on top of the product’s existing data, API, and interface.Demo: https://www.youtube.com/watch?v=VdpHehY64lsWe built Vendo because every SaaS eventually faces the same problem: every customer needs something slightly different. One wants a new report and another needs a workflow that only makes sense for their team. These requests either sit on the roadmap, become one-off engineering work, or force the customer into spreadsheets and external tools. We wanted the user to be able to create the missing feature themselves, without leaving the product.Here is how it works:- npx vendo init reads the product's API surface, theme, routes, and more. These are used so that the apps Vendo creates (1) look on-brand and native and (2) have the ability to read data and perform
Aug 20, 2026 3:29 PM
news.ycombinator.com
Show HN: LilScript makes JavaScript libraries smallerhttps://news.ycombinator.com/item?id=49374554https://yeargun.github.io/lilscript/LilScript is a typed, compression-first language that compiles into js and sometimes into exec(will be more stable in future). The compiler mangles, reshapes the program into optimized js that happens to be 5-15% smaller (after gzip/br compression or raw) compared to the best performing JS toolchains like oxc/esbuild/terser/..## What has been proven to work with LilScript?- makes VSCode's core js modules 20% smaller on average- makes the world's most performant & small markdown rendering npm library, marked, 5-7% smaller and 10% faster- and many more demos.. works with pretty much any js/ts library## How it is compressing js finer than vite/oxc/terser/esbuild/..### 1. By changing the app.``` class Vector { float x; float y; init(float x, float y) { this.x = x; this.y = y; } float lengthSquared() { return this.x * this.x + this.y * this.y; } }int[] values = [1, 2, 3, 4]; auto doubled = values.map((int value) => value * 2); int sum = 0; for (int i = 0;
Aug 20, 2026 1:50 PM
news.ycombinator.com
Is this AWS RI/SP simulation engine interesting / valuable?https://news.ycombinator.com/item?id=49374412TLDR; This AWS RI/SP tool we built might have unique features that are important especially for companies running large, high-variability workloads with high coverage targets. We want feedback on how true that is and whether we should open this up to others, possibly even for free or as OSS.Setup: We're a small cloud cost consultancy, but not a tools vendor. We do build a lot of internal tooling for our own use. We serve companies spending 7- to 9-figures (USD) annually.One of the internal tools we built over the past several years is a simulation engine for RIs/SPs that can do a number of things, some of which we believe might be one-of-a-kind in the space today and could be valuable to others.1.) Visualize the entire commitment savings/discount curve for any commitment type (any RI, any SP, of any flavor), showing the exact savings achieved and the marginal discount rate at every level of commitment. This unlocks what we feel is the best purchasing strategy: "buy SP dollars or RI uni
Aug 20, 2026 1:36 PM
bing.com
First-of-its-kind Map Shows Opportunities to Improve Social Wellness for Older Adults in Chicagohttp://www.bing.com/news/apiclick.aspx?ref=FexRss&aid=&tid=6a88ea7a360643d0933b5d23e54843f1&url=https%3A%2F%2Ffinance.yahoo.com%2Fhealthcare%2Farticles%2Ffirst-kind-map-shows-opportunities-203500524.html&c=507024262172589399&mkt=en-usChicago has a new tool to help understand where neighborhood conditions support social wellness among older adults – and where thoughtful investment and partnership may expand opportunities.
Aug 20, 2026 1:35 PM
github.com
Show HN: Do-over, undo for AI agent shell commandshttps://github.com/CaydenChik/dooverHello HN,I built this after a coding agent deleted my files while tidying a project. Do-over plugs into Claude Code's hooks and snapshots what a command is about to touch right before it runs.I know what you're thinking. Why don't you just commit more often?This tool doesn't seek to replace git. What it does is: [1] Protect the stuff git doesn't protect: your untracked/ignored files and files that exist outside your repo (which is how a guy lost 50GB of data - Claude code issue tracker) [2] Protects you when git itself is weaponized by your agent: git checkout ., git clean -fd, and git reset --hard (a three year old Unity project was deleted this way - Claude Code issue tracker) [3] Protects you in the case when you're just forgetful and don't commitIt really is a simple safeguard to potential headaches. And it's a last mile effort that secures what current measures can't. That includes sandboxes, checkpoints, git.
Aug 20, 2026 6:42 AM
aiomniu.top
Show HN: AI Resume Screening – Looking for feedback from recruitershttps://aiomniu.top/services/resume-screeningIn addition to the resume creation tool we mentioned in our previous post, we've also developed an AI-powered resume screening tool to complement our overall ecosystem. This tool aims to help recruitment teams efficiently review hundreds of resumes without relying on keyword matching.This tool helps teams:- Batch upload and parse PDF resumes- Compare candidates with job descriptions- Review candidates' skills, experience, project experience, and industry fit- Provide candidate fit analysis and scoring ranges- Export results as a CSV fileTo better meet the requirements of the European and American markets, candidate contact information is encrypted by default when uploading data. We do not provide judgments on unsuitable or unrecommended candidates. Artificial intelligence can only be used as an aid, not a replacement for HR judgment. We oppose all forms of professional discrimination.We are currently offering Beta testing access to 100 HR professionals, recruiters, hiring managers, and
Aug 20, 2026 2:17 AM
news.ycombinator.com
Ask HN: We have company runway but not founder time. When do you go full-time?https://news.ycombinator.com/item?id=49367763Three first-time founders in Canada, all of us between 45 and 55: business/product, marketing, and me on the technical side. We're building an AI tool for creative work. About thirty testers have been on a pre-production build for a couple of months. Feedback is good, and importantly is not from friends, but actual target users who we sourced through our networks, which I'm treating as encouraging signal on product-market fit.We're bootstrapped with CAD $25k initial commit and an additional up to $100k available, though we'd rather earn the right to spend each additional dollar than commit it up front. All three of us still have day jobs, cleared with our employers. At current near-zero usage we could run the service for ~18 months without revenue — that number obviously falls as real users arrive, which is part of the problem.So our constraint isn't the usual one. The company has runway; founder time doesn't. I built the platform, I'm the one who has to go full-time first, and I'm als
Aug 19, 2026 10:01 PM
systemist.net
Show HN: Dispositio – a TUI project planner that stores plans as plain Markdownhttps://systemist.net/tools/dispositioHi all! Wanted to show you guys Dispositio, a project planning TUI that saves projects to simple markdown.I always have a ton of solo projects cooking, and in the past organized and planned them in increasingly complex `ROADMAP.md` files. After working with bubbletea on another project, and after constantly manually calculating its delivery dates for myself (as my bandwidth was quite limited at the time), I realized it would be cool to combine the two!The result is Dispositio, a tool which:- Tracks milestones, set estimated durations, rearrange and modify easily, and see the estimated timeline of the whole thing (measured in weeks for now; can add sprints or other metrics later if people want it) - Lets you set up tasks and subtasks right in it (added because I found it very handy to just keep my todos right here, one per project) - Handles overdue items etc - Helps you know how many days you get on average per milestone task in order to stay on task - Saves to plain markdown so you ca
Aug 19, 2026 9:44 PM
iiio.app
Show HN: CIYA – Purely Deterministic AIhttps://iiio.app?u=showhnHey HN, Before we roll out our fully deterministic compiled language model (CLM), figured I'd post CIYA's v0.02 for you to try out. At this point CIYA acts as a storage and logic engine for any of your prompting needs, and is available via API/Websocket integration. If your company/project frequently repeats the same prompts, needs to template out those (or any) prompts, or wants to keep your business logic directly on site instead of giving it away to cloud providers, CIYA can do all of that for you.Feel free to pull up the guide using the command R: guide to see the current list of available tools like the ability to run applications, model your own datasets and build your own independent response tables.We've developed a clear path for CLM integration, allowing for a fully compiled language model that can resolve up to 1 million tokens (on-prem) in under 200ms without ever having to access an LLM.Feel free to checkout our landing page to get in touch: https://iiio.co, or run R: cont
Aug 19, 2026 6:05 PM
sports.yahoo.com
‘Bob Iger’s a POS in my mind’: Dave Portnoy blasts new Lakers ownerhttps://sports.yahoo.com/articles/bob-iger-pos-mind-dave-174122689.htmlOne thing is for certain with Dave Portnoy. You never have to wonder where you stand with the Barstool Sports founder. Portnoy is not shy about explaining why someone, whether it’s an athlete, media member, or business mogul, is either a friend or enemy. In the case of Bob Iger, the former Disney CEO and…
Aug 19, 2026 5:41 PM
sports.yahoo.com
A left tackle can make $4M in college football, not the NFL. Is this pay for play?https://sports.yahoo.com/articles/left-tackle-4m-college-football-172444995.htmlLeft tackle Dan Moore of the Tennessee Titans can list all the sponsorship deals he has done as a pro on one hand: A few meet and greet opportunities when he was with the Steelers, a grill company that gave him some barbecue tools in exchange for his endorsement. “It’s only been five years since NIL started,” said Moore, who heads into his sixth year in the NFL this season. “Another five years, ...
Aug 19, 2026 5:24 PM
engadget.com
Meta AI now has a dedicated desktop app for Machttps://www.engadget.com/2240154/meta-ai-now-has-a-dedicated-desktop-app-for-mac/Meta's new Mac app is part of the company's push to make more business-friendly AI tools.
Aug 19, 2026 5:10 PM
variety.com
Some U.S. Army Members Are Being Offered Four Days Off to Play ‘GTA 6’ if They Reenlist for at Least Two Yearshttps://variety.com/2026/gaming/news/gta-6-us-army-four-day-pass-reenlistment-incentive-1236838334/“Grand Theft Auto 6,” indisputably this year’s most anticipated video game, is now serving as a tool for at least one U.S. Army unit to encourage soldiers to reup their military service commitment. The U.S. Army’s 3rd Infantry Division based at Fort Stewart, Georgia, is offering some active-duty soldiers a four-day pass to play “GTA […]
Aug 19, 2026 5:08 PM
bing.com
Pangram Dreams of a Slop-Free Futurehttp://www.bing.com/news/apiclick.aspx?ref=FexRss&aid=&tid=6a8c04c764fb42db8dada362b35bde67&url=https%3A%2F%2Fwww.cjr.org%2Fanalysis%2Fpangram-dreams-of-a-slop-free-future-ai-detection-max-spero-chris-best-jasmine-sun-substack-claude-anthropic.php&c=16510028846992856505&mkt=en-usMax Spero—a cofounder of Pangram, an AI detection tool popular among journalists—asks, “If you’re not going to bother writing your newsletter, why should I read it?” ...
Aug 19, 2026 5:01 PM
variety.com
‘Insidious: Out of the Further’ Review: Latest Entry in the Franchise Serves Up Genuinely Terrifying Setpieces Despite a Convoluted Final Acthttps://variety.com/2026/film/reviews/insidious-out-of-the-further-review-1236837868/If you’ve always been terrified of dental work and the idea of someone poking around your pearly whites with sharp tools, you’re not alone. With “Insidious: Out of the Further,” the sixth entry in the infinitely inventive “Insidious” horror franchise, writer-director Jacob Chase is unashamed to declare that he shares your fears, while having some […]
Aug 19, 2026 4:04 PM