SShortSingh.
Back to feed

Developer Builds AI-Assisted Stock Photo Marketplace Using C++23 and WASM

0
·14 views

A developer with a background in computer networks and sysadmin work is building a stock photo marketplace called Plënka, a Russian word meaning 'film', inspired by a lifelong passion for photography dating back to the 1990s. The platform is being developed with a lean, performance-focused tech stack featuring a C++23 backend and WebAssembly-powered frontend, chosen for speed and cost efficiency over the infrastructure-heavy approach of established stock photo giants. The developer credits the rise of large language models with making the project feasible, using AI agents to handle much of the coding work despite having previously disliked programming. The entire development pipeline is reportedly being run on a personal laptop with a quad-core i5 processor and 12GB of RAM. The creator has framed the project as a build-in-public journey and plans to share further details about the AI-driven development process in upcoming posts.

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 ·

Developer Builds Apple Virtualization Framework Support Into Flutter Desktop App WSL Manager

WSL Manager, a Flutter desktop app originally launched in 2021 to simplify Windows Subsystem for Linux management, has released a version 2 that also runs on Apple silicon Macs. The new macOS build manages native Linux and macOS virtual machines using Apple's Virtualization framework, installable via Homebrew. Because Flutter cannot directly hold a VZVirtualMachine object, the developer created a separate Swift command-line helper called vmctl, which runs as a detached daemon and communicates with the Dart frontend by printing JSON to stdout. A shared backend interface in Dart allows both the WSL and Apple VM helpers to be driven by the same codebase, with a capabilities record used instead of platform checks. The macOS implementation required solving several low-level challenges, including IP detection via DHCP lease files, SSH session handling, cloud-init seed generation without third-party tools, and in-process qcow2-to-raw disk conversion.

0
ProgrammingDEV Community ·

Laptop GPU Outperforms 12-Core CPU by 4.3x Running Google Gemma 4 Model

A developer benchmarked Google's Gemma 4 E2B language model on a single laptop equipped with a 13th-gen Intel Core i7-1360P and an Nvidia GTX 1650 Ti (4 GB) GPU. The test used the llama.cpp server with identical settings on both arms, differing only by whether GPU layers were offloaded via the -ngl flag. Across eight test cells varying prompt and output lengths, the GPU achieved a median decode speed of 4.27 times faster than the CPU, with individual ratios ranging from 4.04x to 4.34x. The GPU also delivered prefill times roughly 3.63x faster, though time-to-first-token remained linearly dependent on prompt length for both devices. The results highlight that even an older, entry-level laptop GPU can offer substantial inference gains over a modern multi-core CPU for small language models.

0
ProgrammingDEV Community ·

Developer uses MM/DD/YYYY dates to teach PostgreSQL extensions, indexes, and custom types

A developer at DEV Community has created an intentionally flawed PostgreSQL project that stores dates as plain MM/DD/YYYY text strings to demonstrate four advanced database features. The project covers building C extensions, expression indexes, custom operators, and specialized GiST index types. Using the awkward US-style date format as a teaching constraint, the tutorial walks through why a simple expression index often suffices and when a custom base type becomes necessary. The GiST index built in the project can efficiently answer queries filtered by month, day, or year independently, which suits seasonal or birthday-style lookups. The author explicitly warns against using this approach in production, framing the exercise purely as a hands-on learning tool.

0
ProgrammingDEV Community ·

Radio lets AI agents from different providers chat in one shared channel

A tool called Radio, built by Plasma, allows AI agents from different providers to communicate directly without human go-betweens. Currently, users working with multiple agents like Claude Code, Codex, Cursor, and Grok must manually copy and paste outputs between them, acting as a middleman. Radio solves this by giving agents a shared URL-based channel where they can exchange messages in real time, across machines and devices. Setup requires just four steps: creating a channel at radio.plasma.ai, copying the link, pasting it into one or more agents, and sending an initial message. The tool requires no custom integrations or provider lock-in, working with any agent capable of fetching a URL.