SShortSingh.
Back to feed

RelicBeam lets users browse remote folders via browser using WebRTC, no install needed

0
·1 views

A developer has built RelicBeam, a browser-based tool that allows users to access and browse folders on another device without installing any software. The feature, called Remote Files, works by having the host select a folder and share a QR code or link, after which the remote device can browse, preview, and download files. File data is transferred directly between browsers via WebRTC DataChannels with end-to-end encryption, meaning files are never uploaded to RelicBeam's servers. Writable folder access is currently limited to Chrome and Edge due to File System Access API restrictions, while Firefox and Safari support read-only hosting. The developer noted key tradeoffs, including the inability to perform server-side malware scanning on WebRTC transfers and the need for a reconnect grace period to handle Android browser backgrounding issues.

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 ·

Common SQL Server Slowdowns Are Usually Code Problems, Not Hardware Limits

Database performance issues are frequently blamed on insufficient hardware, but in most cases the root cause lies in poorly optimized application code and queries. Missing indexes are often the single biggest culprit, forcing the database to scan millions of rows for simple lookups that could otherwise resolve instantly. Other common issues include N+1 query patterns — where an ORM silently fires dozens of individual database calls instead of one — and over-fetching data by selecting unnecessary columns or loading unfiltered record sets. Queries can also ignore existing indexes due to subtle writing mistakes, such as wrapping columns in functions or using leading wildcards, which only become visible when reading SQL Server's execution plans. Under concurrent load, these inefficiencies compound further as queries begin blocking each other, making the application degrade precisely during peak usage.

0
ProgrammingDEV Community ·

AI Could Cut Software Development Costs by Up to 90%, Reshaping Big Tech

Advances in AI-assisted coding are dramatically lowering the cost and complexity of building software, threatening the business models of companies like Microsoft, Adobe, and Salesforce that have long profited from high development barriers. For decades, enterprise software commanded premium pricing because building alternatives required large engineering teams and years of work, but that calculus is shifting fast. Analysts and developers argue that if production costs fall by 80–90%, entirely new markets become viable and smaller teams in emerging economies can compete with established players. AI-generated code is not without flaws and still requires human oversight for architecture, security, and operations, but the cost reduction need not reach zero to be disruptive. Historical parallels — from digital photography upending Kodak to the internet fragmenting publishing — suggest that even partial cost collapse can fundamentally restructure an industry.

0
ProgrammingDEV Community ·

Developer builds hook system to force AI coding agents to log their reasoning

A developer has created a three-hook system to ensure AI coding agents like Claude Code and Cursor permanently record the reasoning behind their decisions, not just the code they produce. The problem addressed is that once an agent session ends, context such as why a specific index structure or retry logic was chosen is lost forever. The solution uses an Obsidian vault synced across machines and a phone, so decision logs outlive any single session or device. Three shell scripts handle the workflow: one feeds the agent past logs at session start, another nudges it every five turns if nothing has been written, and a third blocks the session from closing if significant code changes were made without a corresponding log entry. The approach enforces documentation through technical constraints rather than relying on prompt instructions, which the developer found consistently ignored in favour of the primary coding task.

0
ProgrammingDEV Community ·

How a Three-Device Home Lab Schedules AI Jobs on a Single-Model GPU

A hobbyist home lab built from a Raspberry Pi 5, a Jetson Orin Nano, and an RTX 4070 Ti Super desktop GPU manages AI workloads on a tight memory budget roughly equivalent to the cost of a mid-range laptop. The Jetson Orin Nano's shared CPU-GPU memory pool can hold only one model at a time, making simultaneous job requests a risk for memory thrashing. To prevent conflicts, all jobs — including chat requests, research tasks, and scheduled scrapes — are routed through a single priority queue with a gateway that admits exactly one job to the Jetson at a time. Priority is respected but non-preemptive, meaning a higher-priority job waits for the current one to finish rather than interrupting it, avoiding wasted work and unstable model states. The RTX machine handles rendering independently but shares the same queue only for a common LLM call where both machines would otherwise compete for the same resource.

RelicBeam lets users browse remote folders via browser using WebRTC, no install needed · ShortSingh