This is a autopost bolg frinds we are trying to all latest sports,news,all new update provide for you
Saturday, May 17, 2025
Show HN: Blacklight – secret scanner for code, databases, drives, and slack https://ift.tt/hwfsyOu
Show HN: Blacklight – secret scanner for code, databases, drives, and slack We often ran pattern matching searches for secrets and keys across codebases, databases etc. Therefore, we thought about converting that workflow into a tool that we could just easily generate a SARIF report and share with our customers. Blacklight is a powerful secret, key, and sensitive data scanning tool that helps you detect and prevent sensitive information leaks in your codebase, databases, cloud storage, and communication platforms. The idea is that one can add their custom rules around their governance and compliance requirements. The platform comes with 114 matching criteria, but this can be extended easily. https://ift.tt/faA7i6j May 18, 2025 at 12:10AM
Friday, May 16, 2025
Show HN: Solidis – Tiny TS Redis client, no deps, for serverless https://ift.tt/NhGMuOz
Show HN: Solidis – Tiny TS Redis client, no deps, for serverless Hey everyone! Over the past two years I threw myself back into full-time engineering with a simple goal: write code that gives back to the community. After a lot of late-night FOMO (“AI will do it all for us, right?”) and some painful production incidents, I finally turned my weekend project into an open-source library. [ What is Solidis ? ] - Super-light (< 30 KB) RESP2/RESP3 client with zero runtime deps and first-class ESM/CJS support. - Fully tree-shakable – import only the commands you need. - Written with SOLID principles & full TypeScript typings for every command. - Designed for cold-start sensitive serverless platforms (small bundle + tiny memory footprint). [ Why I built it ] 1. node-redis & ioredis pain - ESM is still an after-thought. - Hidden deadlocks on RST, vague error surfaces. - Everything gets bundled, even commands you’ll never call. 2. I refuse to add a dependency I don’t fully understand – I literally read candidates 10× before `npm i`. 3. Serverless bills love to remind me that every KB and millisecond matters. [ Key features ] - Protocols: RESP2 and RESP3 (auto-negotiation) - Bundle size: `<30 KB` (core) / `<105 KB` (full) - Dependencies: 0 - Extensibility: Drop-in command plugins, custom transactions - Reliability: Auto-reconnect, per-command timeouts, type-checked replies [ Roadmap / Help wanted ] - Benchmarks against `node-redis` & `ioredis` (PRs welcome!) - More first-class Valkey love - Fuzz-testing the parser - Docs site – the README came first; I’d love help polishing full docs This might be my last big OSS push for a while, so stars, issues, and PRs mean the world . If Solidis saves you some cold-start time or just scratches a TypeScript itch, let me know! Repo: https://github.com/vcms-io/solidis License: MIT Thanks for reading, and happy hacking! (Feel free to AMA in the comments – I’m around.) https://github.com/vcms-io/solidis May 17, 2025 at 02:50AM
Show HN: Inconveniently operating my computer with voice and hand gestures https://ift.tt/8BGyeqO
Show HN: Inconveniently operating my computer with voice and hand gestures Introducing Iron OS: it's like a regular computer, but much more inconvenient Created with threejs, rosebud AI, web speech API, and mediapipe computer vision Any feedback would be appreciated! I've been having fun experimenting with computer vision and voice control lately. https://twitter.com/measure_plan/status/1923452731248795856 May 17, 2025 at 12:46AM
Thursday, May 15, 2025
Show HN: Easel – Code multiplayer games like singleplayer https://ift.tt/uboGBSV
Show HN: Easel – Code multiplayer games like singleplayer For the past 3 years, I've been creating a new 2D game programming language where the multiplayer is completely automatic. The idea is that someone who doesn't even know what a "remote procedure call" is can make a multiplayer game by just setting `maxHumanPlayers=5` and it "just works". The trick is the whole game simulation, including all the concurrent threads, can be executed deterministically and snapshotted for rollback netcode. Normally when coding multiplayer you have to worry about following "the rules of multiplayer" like avoiding non-determinism, or not modifying entities your client has no authority over, but all that is just way too hard for someone who just wants to get straight into making games. So my idea was that if we put multiplayer into the fabric of the programming language, below all of your code, we can make the entire language multiplayer-safe. In Easel the entire world is hermetically sealed - there is nothing you can do to break multiplayer, which means it suits someone who just wants to make games and not learn all about networking. I've had people make multiplayer games on their first day of coding with Easel because you basically cannot go wrong. There were so many other interesting things that went into this project. It's written in Rust and compiled to WebAssembly because I think that the zero-download nature of the web is a better way of getting many people together into multiplayer games. The networking is done by relaying peer-to-peer connections through Cloudflare Calls, which means Cloudflare collates the messages and reduces the bandwidth requirements for the clients so games can have more players. I also took inspiration from my experience React when creating this language, here's how you would make a ship change color from green to red as it loses health: `with Health { ImageSprite(@ship.svg, color=(Health / MaxHealth).BlendHue(#ff6600, #66ff00)) }` There is a lot of hidden magic that makes the code snippet above work - it creates a async coroutine that loops each time Health sends a signal, and the ImageSprite has an implicit ID assigned by the compiler so it knows which one to update each time around the loop. All of this lets you work at a higher level of abstraction and, in my opinion, make code that is easier to understand. Speaking of async coroutines, my belief is that they don't get used enough in other game engines because their lifetimes are not tied to anything - you have this danger where they can outlive their entities and crash your game. In Easel each async task lives and dies with its entity, which is why we call them behaviors. Clear lifetime semantics makes it safe to use async tasks everywhere in Easel, which is why Easel games often consist of thousands of concurrently-executing behaviors. In my opinion, this untangles your code and makes it easier to understand. That's just the beginning, there is even more to talk about, it has been a long journey these past 3 years, but I will stop there for now! I hope that, even for those people who don't care about the multiplayer capabilities of Easel, they just find it an interesting proposal of how a next-generation game programming language could work. The Editor runs in your web browser and is free to play around with, so I would love to see more people try out making some games! Click the "Try it out" button to open the Sample Project and see if you can change the code to achieve the suggested tasks listed in the README. https://ift.tt/XTsWI6D May 14, 2025 at 04:01PM
Show HN: Convert JSON Schema to SQL DDL https://ift.tt/y3VETrG
Show HN: Convert JSON Schema to SQL DDL While doing research for an architectural change at work, I couldn’t find a nice npm library that let’s you create SQL tables from a JSON Schema. That’s how I decided to create one myself. https://ift.tt/FvhiCJe May 16, 2025 at 02:49AM
Show HN: AsianMOM – WebGPU Vision-LLM app that roasts you like ur mom in-browser https://ift.tt/lYa87WB
Show HN: AsianMOM – WebGPU Vision-LLM app that roasts you like ur mom in-browser Randomly got inspired yesterday seeing SmolVLM working on WebGPU and had the silly idea for this project. it's not perfect and super limited because of the current limitations of WebML (and admittedly, because I suck at prompting, but that's why it's Open Source haha) but it is 1.5B WORTH OF AI (SmolVLM 500M and LLama 3.2 1B) working RIGHT IN YOUR BROWSER with you not having to install anything! In fact, the whole thing is actually just an index.html that you can install and even use directly! It might be a little bit slow on first try (takes about 3 mins) when it installs models, but it caches it so it's way faster the second time (also, it's available offline after it's cached haha) Works on any modern web browser It may be a funny little project, but it's genuinely taught me so much about WebML and Vision models, and the technologies we're getting with WebML will 100% democratize AI access and make it way simpler and easier to be used everywhere :p GH Repo in case you're interested: https://ift.tt/ICPamkE https://ift.tt/DzHZnWV May 16, 2025 at 12:50AM
Show HN: Turn OpenAPI documents to LLM friendly Markdown https://ift.tt/wuLcQWO
Show HN: Turn OpenAPI documents to LLM friendly Markdown https://ift.tt/QN941Kr May 15, 2025 at 11:14PM
Wednesday, May 14, 2025
Show HN: Family Folder – Help your family remember everything, organise anything https://ift.tt/jVUuHAY
Show HN: Family Folder – Help your family remember everything, organise anything Hi Show HN, I’m both nervous and excited to share what I’ve been working on in the early mornings and late evenings over the past few months: Family Folder – a tool to help you and your loved ones stay connected, simplify planning, and never miss a moment. This is mostly a solo project—though I’ve leaned on ChatGPT and Upwork when I hit the limits of my technical skills. I love learning, and this has been a crash course in programming, DevOps, design, UX, and everything in between. The idea came directly from my own experience: trying to keep on top of family life, from newborns to supporting my mum’s memory, birthdays, childcare logistics, and where the insurance documents are stored. Existing tools felt too generic, too corporate, or too messy. I wanted something built for families. Stack: • Ruby on Rails 7 (via Jumpstart Pro) • PostgreSQL • Hosted on Heroku (EU region) • S3 (EU) for file uploads • (Coming soon: iOS app & AI assistant) Family Folder is private by design—you only see what you’re invited to. It’s meant to be simple enough for parents or siblings to actually use, but structured enough to avoid chaos. If this sounds useful—or if you’ve ever tried to manage a family using group chats or shared docs—I’d love your feedback. What would make something like this truly work for your family? Thanks for taking a look! – Tony https://ift.tt/Z9MoIAn https://ift.tt/Z9MoIAn May 15, 2025 at 12:27AM
Show HN: Build a free linktree alternative that skips in-app-browsers https://ift.tt/fPVZDTW
Show HN: Build a free linktree alternative that skips in-app-browsers I searched for something like this and couldn’t find it. I thought, this can’t be that hard, so I built it myself. What really messed me up was that social media apps open websites inside their in-app browsers… It costs nothing to run, so it’s free for everyone. You only need to sign up if you want to create your own link page. If you just want to convert your existing link into one that automatically skips the in-app browser, you can do that without an account. I used Next.js and MongoDB. And I’m proud to say: Not Vibe-Coded! Let me know if you need help or have questions. https://ift.tt/ODBVnk4 May 14, 2025 at 11:18PM
Show HN: Doxxer – CLI tool for dynamic SemVer versioning using tags https://ift.tt/hufrVjb
Show HN: Doxxer – CLI tool for dynamic SemVer versioning using tags Hi, first time poster here! Wanted to share a small CLI utility in Rust: doxxer! It is a tool for working with Git repositories, more specifically, extracting and calculating current/upcoming semantic versions for your repo's tags. It is heavily inspired by the output from "git describe --tags". Why use anything else then? The output is not fully SemVer compliant and therefore I was modifying it in all my projects separately, which I wanted to avoid. Single binary, single predictable output. It does not currently have pre-built binaries, so you have to install it via cargo, but it's in the roadmap! https://ift.tt/2qmGTbY May 14, 2025 at 08:40PM
Tuesday, May 13, 2025
Show HN: Mycelium https://ift.tt/4ZcPdT9
Show HN: Mycelium https://ift.tt/sI4pZfU May 10, 2025 at 07:26PM
Show HN: I’ve built an IoT device to let my family know when I’m in a meeting https://ift.tt/wou2WpA
Show HN: I’ve built an IoT device to let my family know when I’m in a meeting https://ift.tt/ZqCAgbw May 11, 2025 at 07:52PM
Show HN: Put macros.menu/ in front of any restaurant menu URL https://ift.tt/uEZmtec
Show HN: Put macros.menu/ in front of any restaurant menu URL I’ve been tracking my macros every day since January 1st. Weighing and measuring at home is a breeze but eating out is a total pain. I built this tool for myself but a lot of likeminded people have loved it. Please note macros are estimated by gen AI. Image menus not supported yet. https://macros.menu May 14, 2025 at 12:49AM
Monday, May 12, 2025
Show HN: GS-Base – A multifunctional database tool with Python integration https://ift.tt/yHgkdSG
Show HN: GS-Base – A multifunctional database tool with Python integration A wide range of possible use: from simple contact/inventory lists, photo albums to editing CSV/text files and processing (transforming, splitting, merging, normalizing) large, multi-GB data tables in various file formats. Text, Numeric, Long Text / Memo fields, Image / File fields; Code fields for code snippets with syntax highlighting for 16 programming languages. You can analyze, query and consolidate data, generate pivot tables, perform calculations, merges and joins with up to 256 million rows, 16K columns and 4GB+ files efficiently using even older PC's. Several filtering methods, searching for duplicates, for unique values and their frequencies, search-as-you-type, random and quartile searches, full-text searches, fuzzy searches. RegEx filtering of millions of records in seconds regardless of the number of the returned found records. Searching for file duplicates, finding similar photos/images, music and video files using any EXIF tags and multimedia (e.g. mp3/mp4) tags. Playing filtered lists of mp3's. Very fast data consolidation - you don't have to bother with permanent indices; internal indexes are created automatically whenever aggregation and binary lookup functions need them. Generating disk/folder listings and monitoring all file changes with searchable history of modifications. Mass-renaming, -copying and -deleting files based on filtered file listings. GS-Base can be installed on any portable storage device and used without performing any registry modifications. Fully offline - doesn't need internet connection. To move it to another computer you can simply copy the installation folder containing a few files. Questions and suggestions are welcome. https://ift.tt/dF9nNDa May 13, 2025 at 02:32AM
Show HN: Jester – An RSS/Atom Reader and Content Management Tool https://ift.tt/eMG73Ik
Show HN: Jester – An RSS/Atom Reader and Content Management Tool Jester helps you follow and organize feeds, create AI text and audio digests (with sourcing), build custom feeds from non-RSS sources, and more. It is built to have most of the features you would expect from a modern RSS reader (with more on the way), but with an eye towards feed discoverability through popularity metrics and topic tagging. You can try it out with one click (no email registration/etc. required). Any feedback/questions/suggestions is very welcome! Edit: See https://ift.tt/UoqBgC0... for an example digest you can create. https://ift.tt/D2iEtr5 May 13, 2025 at 12:52AM
Show HN: Lumoar – Free SOC 2 tool for SaaS startups https://ift.tt/HErYJUv
Show HN: Lumoar – Free SOC 2 tool for SaaS startups We built Lumoar to help small SaaS teams get SOC 2-ready without paying thousands for Big 4 consultants or dealing with bloated compliance platforms. As a startup ourselves, we faced the usual issues: long security questionnaires, confusing audit requirements, and expensive tools that felt overkill. Lumoar is a simpler alternative: - Generate compliant SOC 2 policies automatically - Track your controls and progress in a clean dashboard - Upload evidence and get plain-language recommendations - Designed for engineers and founders, not compliance pros It's free to start — you can generate policies and explore the dashboard without a sales call or demo. Would love to hear what blockers you’ve faced with SOC 2 and what other frameworks you’re thinking about (e.g., ISO 27001, GDPR). All feedback is welcome. https://www.lumoar.com May 13, 2025 at 12:35AM
Sunday, May 11, 2025
Show HN: MCP CLI Adapter – run scripts as MCP tools https://ift.tt/pK2cIQy
Show HN: MCP CLI Adapter – run scripts as MCP tools The MCP CLI Adapter is a tool that allows LLMs to safely execute command-line tools through the Model Context Protocol (MCP). It provides a secure bridge between LLMs and operating system commands. https://ift.tt/sXtWCih May 12, 2025 at 03:58AM
Show HN: AI-powered batch photo editor for real estate photographers https://ift.tt/kTPVgS7
Show HN: AI-powered batch photo editor for real estate photographers I got tired of repetitive editing tasks, so I built a tool that simplifies bulk edits using text prompts and AI workflows. Now I can quickly handle things like virtual staging, changing backgrounds, adding/removing objects, adjusting brightness and exposure, color corrections, boosting contrast and clarity, fixing distortions, batch color grading and much more! But most importantly, I can do this to all selected images, tens, hundreds or more. I'm particularly interested in feedback on the workflow and UI from photographers/editors who handle large volumes of images. I've increased the free plan credits to 40 so you can edit up to 40 images, if you'd like to help me trial it out. Otherwise I'm happy to answer any questions about the implementation or roadmap. https://4ditor.com/ May 9, 2025 at 06:38AM
Saturday, May 10, 2025
Show HN: Hackergrep.com – search Hacker News for tech jobs https://ift.tt/BAeZ3C4
Show HN: Hackergrep.com – search Hacker News for tech jobs Hey HN, I built https://hackergrep.com and I think it's ready for some attention. What is it: I wanted a fast, flexible, and focused job search tool to find new tech jobs and I didn't see anything that really fit my needs, so I built this app because you can just do things. HackerGrep indexes several recent threads on HackerNews and combines the results into a feed matching your desired search filter criteria. The system can send you daily email updates when new search results for your queries are available; opt-in search query emails are sent for 30 days and then automatically stopped. New job alert emails are batched and sent daily, so you'll get one email per alert you configure until you unsubscribe or the 30 days are up. Key features: > no banner ads / clutter. > it's free to use. > no accounts/logins needed. > advanced search syntax and full-text search. > can notify you about new jobs matching your queries via email. > the search and alert emails always show the most recent results first. (To report bugs, suggest parser/logic improvements, offer me a job, or just say hi, etc, you can find my contact info on the https://ift.tt/U9InYh8 page) You can try it from any web browser. It's optimized for desktops or tablets with a reasonable screen size but should function anywhere. https://hackergrep.com https://hackergrep.com May 10, 2025 at 11:42PM
Subscribe to:
Posts (Atom)
Show HN: Free OSS transcription app I made and found it's faster than wispr flow https://ift.tt/2h9d6Kn
Show HN: Free OSS transcription app I made and found it's faster than wispr flow title doesn't let nuance, ofc it's not the app ...
-
Show HN: A directory of 800 free APIs, no auth required Explore reliable free APIs for developers — ideal for web and software development, ...
-
Show HN: I built Dirac, Hash Anchored AST native coding agent, costs -64.8 pct Fully open source, a hard fork of cline. Full evals on the gi...
-
Show HN: I built a FOSS tool to run your Steam games in the Cloud I wanted to play my Steam games but my aging PC couldn’t keep up, so I bui...