SShortSingh.
Back to feed

Developer builds free, browser-based background remover that never uploads your photos

0
·3 views

A developer named Jeffrey Hamilton has created Cutout, a free AI-powered background removal tool that runs entirely within the user's browser. Unlike services such as Remove.bg, Cutout does not upload images to any server, making it more suitable for personal or sensitive photos. The tool is powered by the @imgly/background-removal library, which uses WebAssembly to run an AI model locally on the user's device. The AI model is approximately 40MB and is downloaded once, after which it is cached by the browser for faster subsequent use. Cutout requires no account registration and carries no subscription fee, and its source code is publicly available on GitHub.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

10xHire Seeks Remote Backend Engineers at Up to $130K Plus Equity

10xHire, a startup building AI-native technical hiring tools, is recruiting software engineers for backend and distributed systems roles. The positions are fully remote and open to candidates worldwide with at least one year of engineering experience. Compensation ranges from $60,000 to $130,000 USD annually, with equity included. The company uses technologies such as Go, Node.js, PostgreSQL, Redis, Kubernetes, and AWS, and expects engineers to be comfortable working alongside AI coding tools. Selected candidates will collaborate directly with the founding team to develop assessment platforms that evaluate real-world engineering skills rather than algorithmic memorization.

0
ProgrammingDEV Community ·

Consultant Benchmarks DeepSeek, Qwen, Kimi and GLM on Cost, Speed and Quality

A developer and consultant spent six weeks benchmarking four leading Chinese large language models — DeepSeek, Qwen, Kimi, and GLM — while building an inference layer for a client project. Testing used 200 production prompts spanning coding, summarisation, Chinese-language Q&A, and creative writing, with metrics covering latency, throughput, and cost per million output tokens. DeepSeek's V4 Flash emerged as a standout for price-performance, delivering 58 tokens per second and an 89% HumanEval coding pass rate at just $0.25 per million output tokens. Kimi was the most expensive option, priced around $3.00–$3.50 per million output tokens across its entire catalogue, roughly 12 times costlier than the cheapest GLM and Qwen models. The author cautioned that with a sample size of 200 prompts per model, results indicate trends rather than definitive rankings, and noted DeepSeek's limited vision support as a practical drawback.

0
ProgrammingDEV Community ·

Developer builds keyword-based Chrome extension to filter and speak browser notifications aloud

A developer created 'Serious Notification', a Chrome extension that reads browser notifications aloud only when they contain user-defined keywords, filtering out irrelevant alerts. The core extension was built over a weekend, but two undocumented Manifest V3 architectural issues significantly extended development time. The first problem was that standard content scripts run in an isolated JavaScript context and cannot intercept the browser's Notification API before a page uses it. The fix required using a MAIN world content script to override window.Notification, but this introduced a second issue: MAIN world scripts lack access to Chrome extension APIs like storage and speech synthesis. The developer resolved this by bridging two scripts via a custom DOM event, allowing the MAIN world script to capture notifications and pass them to an isolated script that handles keyword matching and text-to-speech.

0
ProgrammingDEV Community ·

Atlases Launches 16 Free Interactive Tech Guides With Real In-Browser Code Execution

A developer has launched Atlases, a free learning platform featuring 16 in-depth technical guides across topics such as Databases, Python, C++, Linux, and AI/LLM Engineering. Each guide spans 12 chapters and includes interactive sandboxes that run real code engines — including SQLite, CPython, and a JavaScript REPL — entirely within the browser with no backend server. The platform requires no sign-up, displays no ads, and does no user tracking, with progress stored locally via localStorage. Built using Vite, React 18, and Tailwind CSS, the site is deployed on Vercel and the source code is publicly available on GitHub. The project was developed with Claude as an AI pair programmer, with the creator manually fact-checking all content before publication.