Real problems people complain about online, pulled every morning and scored out of 100. Build, validate, or skip. How scoring works
Restaurants need an easy way to accept and manage online and phone orders for takeout and delivery, especially in markets with fragmented solutions.
YC Graveyard7y agoToolB2B
Consumers in Latin America want groceries delivered in 20-30 minutes but existing infrastructure is fragmented; fulfillment requires complex logistics coordination.
YC Graveyard6y agoToolConsumer
Hacker News1mo agoToolAI
Hacker News1mo agoToolDesign & Creative
Hi HN, Jonathan & Guy here from OneCLI, an agent harness built for teams, giving every employee a secured, sandboxed personal agent.Here’s what you can do with it:1. get a sandboxed agent, with all the OneCLI capabilities in place like connect your GitHub account, Gmail, Notion, or Dropbox simply from the chat.2. deterministic human in the loop approval in the chat itself for things that you need 100% control like sending an email or deleting the Linear ticket.3. manage team policy in one place, enforced across every agent in the workspace4. enjoy global connections at the team level, like shared LLM keys or service accountsHere’s a demo: https://www.youtube.com/watch?v=dlW-44ntpbEWe started working on this by accident, even though our careers were in the security space. We were working on a devtool called ChartDB, an open-source DB tool. When OpenClaw took off back in January, we started using it to orchestrate agents on top of ChartDB. We quickly understood there is a big issue around auth. Agents need credentials to do real work, but to give them those secrets would not be the best idea. They keep them in their memory and also write them down to local files and their sessions as plain text. And we knew that agents can easily be fooled into giving up those API keys/secrets. So we needed some way to control the agent and stop prompt injections from tricking it into using its services for an attacker's benefit.We created OneCLI that started as a vault for AI Agents built in Rust.We found out that most of our demand for OneCLI came from autonomous agents like Hermes, OpenClaw and NanoClaw for individuals and teams.Users looked for useful agents that do things for the person who runs them with two missing parts: 1) managing secrets and permissions. 2) and for teams - multiplayer management.We decided to pivot and provide the agent itself as a harness for teams, to give each employee an agent. We saw that teams had to deal with setting up t
Hacker News28d agoToolAI
Hi HN, I've become lazier in my old age and struggle to replay my favorite Sierra games from the 80s and 90s because I keep getting into those situations where I need an item from 3 acts ago, I have no save game handy, and now I gotta make dinner.So I'm building the Lucasartsifier: a static analysis tool that decompiles Sierra resource files, automatically finds those states, automatically generates code to prevent the player from getting into those states, then emits loose patch files that can be placed alongside the original game resources. There's no game-specific code involved; all the logic is generic, though of course Sierra introduces new idioms and mechanics in every game so every new supported game needs a bunch of engine work.So for example in Leisure Suit Larry 2, the patched game prevents you from boarding the cruise ship until you have both the sunscreen and the Grotesque Gulp. Without them you die on the raft 3 play-hours later.So far this works on Leisure Suit Larry 2 (SCI0), King's Quest 4 (SCI0), King's Quest 6 (SCI1.1), and Laura Bow 2 (SCI1.1). I'm currently working on King's Quest 5 (SCI1.0).This is work done with Claude -- I do the design and playtesting and it does the rest :DAny feedback, play testing, and suggestions would be great!
Hacker News28d agoToolAI
Users dealing with hacked accounts and poor AI-assisted dispute resolution on PayPal seek better alternatives for handling payments and disputes.
X28d agoToolFinance
Users want tools that can observe and anticipate loops in complex but repetitive Photoshop tasks.
X27d agoToolDesign & Creative
Bitcoin users need recommendations for secure and user-friendly hot wallets to store and manage small amounts of BTC for gifting or personal use.
X28d agoToolFinance
People need a reliable free app for scanning documents using an iPhone that is easy to use and highly rated based on real user feedback.
X28d agoToolProductivity
Users struggle to efficiently remove inactive accounts, unfollowers, and clean up their follow lists on X/Twitter without manual effort or existing tools that fully meet the need.
X28d agoToolProductivity
Virtual assistants discover that many tasks repeat daily or weekly, and manually doing them wastes significant time.
X27d agoToolProductivity
Self-employed individuals and solo practitioners seek straightforward, reliable providers and processes for setting up a solo 401k without complex intake or delays.
X28d agoToolFinance
Teams still manually move data, chase leads, reply to support tickets, or build reports instead of automating repetitive workflows.
X1mo agoToolBusiness
Guide consumers (esp. Gen Z) through lab-grown vs. natural diamond selection with price comparisons, ethical sourcing info, and personalized recommendations based on budget and values. [Trending: "engagement rings" with 200+ searches in GB]
Google Trends28d agoToolE-CommerceGB
Automated deadline reminders, seat allotment status checker, and choice-filling guide for Indian medical students navigating fragmented MCC counselling dates and seat allocation processes. [Trending: "mcc counselling 2026 neet ug" with 200+ searches in IN]
Google Trends28d agoToolEducationIN
Commercial drones are limited by battery life and engine costs, restricting flight duration and use cases. Microengines could extend flight time from 30 mins to 2+ hours at lower cost.
YC Graveyard10y agoToolIndustrials
Woxi is an interpreter for the Wolfram Language written in Rust.It comes with Woxi Studio, a Mathematica-like GUI built with iced, but you can also use Woxi through a CLI, Jupyter kernel, Python package, npm package, or WASM module.Compared with wolframscript / Mathematica, the main differences are:- Free and open source - Very fast startup - Typically milliseconds rather than seconds for the Wolfram kernel, making Woxi practical for shell scripts, one-liners, and other short-lived processes - Embeddable - It can run in a browser via WASM or be embedded into another application as a scripting languageA more detailed comparison with Mathematica is available here: https://woxi.ad-si.com/docs/comparison/mathematica/.Conformance is ensured with ~26'000 unit tests and ~900 .wls script snapshot tests.The current focus is on fixing remaining edge cases, improving performance, and growing the community.If you use the Wolfram Language, I'd be particularly interested in feedback on compatibility and missing functionality. Contributions and bug reports are also very welcome: https://github.com/ad-si/Woxi
Hacker News1mo agoToolAI
Github has been down consistently over the last few months - does it make sense to switch to alternatives?
Hacker News1mo agoToolOther
LuaCAD models solids in Lua rather than the OpenSCAD language, with operator overloading for CSG (`a + b`, `a - b`, `a * b`).It ships with a CLI and a desktop app, including a preview area and a text editor.I've always been a big fan of OpenSCAD, but the SCAD language itself is unfortunately quite cobbled-together and is a very poorly designed programming language.LuaCAD takes all the good parts of OpenSCAD and combines them with one of the best scripting languages. It has now completely replaced OpenSCAD for me, and I think it provides a better experience than OpenSCAD for all use cases. I'd love to hear any reasons why LuaCAD shouldn't fully replace OpenSCAD!It’s fully open source and you can find the repo here: https://github.com/ad-si/LuaCADTech stack:- It's implemented in Rust and uses mlua (https://github.com/mlua-rs/mlua) to execute the Lua code.- Uses OpenCSG (https://opencsg.org) for fast and correct rendering of the 3D models (like OpenSCAD)- Uses Manifold (https://github.com/elalish/manifold) to create the manifold triangle meshes- Native support for all BOSL2 functions (i.e. implemented in Rust for better performance)
Hacker News1mo agoToolDev