SShortSingh.
Back to feed

RISC OS Open Marks Two Decades of Open-Source Development

0
·1 views

RISC OS Open, the organization behind the open-source release of the classic RISC OS operating system, is celebrating its twentieth anniversary in 2026. The milestone marks two decades since the project began making RISC OS freely available to developers and enthusiasts. Originally developed by Acorn Computers in the 1980s, RISC OS has been maintained and evolved by the open-source community since the project's founding. The anniversary was noted by the RISC OS Open team on their official website, reflecting on the project's long-running commitment to keeping the platform alive.

Read the full story at Hacker News

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 ·

moov Atom Placement Causes M4A Audio to Silently Fail on iOS Safari

A developer discovered that audio files hosted on Cloudflare R2 played normally on desktop browsers but failed completely on iPhone and iPad, with no error messages in the console. The root cause was the position of the moov atom — an MP4 metadata block that iOS Safari requires at the start of the file to begin playback. By default, FFmpeg places the moov atom at the end of the file, and unlike Chrome or Firefox, WebKit-based browsers do not fetch the end of the file to locate it. The fix involves running FFmpeg with the '-movflags +faststart' flag, which moves the moov atom to the front without re-encoding or altering file size. After re-uploading the corrected files, playback on iOS devices worked immediately.

0
ProgrammingDEV Community ·

Developer releases open-source OSINT tool with 55 modules, no API keys required

A web security enthusiast has published FlowOsint, a free open-source intelligence tool available on GitHub. The Python-based utility features a terminal menu interface that accepts a URL and automatically runs 55 reconnaissance modules. No API keys are required to operate any part of the tool, lowering the barrier for security researchers. All findings are stored in DuckDB, allowing users to query results using standard SQL. The project also includes JavaScript secret detection built with custom regex to reduce false positives.

0
ProgrammingDEV Community ·

Engineer Deploys Purple Team Operation Inside Kubernetes Cluster to Test Security

A developer named Le Beltagy published a technical article on July 23 detailing how they ran a purple team exercise inside a Kubernetes cluster. The experiment was designed to test the limits of existing security scanners within the environment. The scanners reportedly failed to detect the simulated threat activity, exposing potential blind spots in the setup. The write-up, tagged under Kubernetes, security, and Go, takes approximately five minutes to read and has received 17 reactions on DEV Community.

0
ProgrammingDEV Community ·

How a 232-page Next.js site runs with no backend, database, or server logic

A developer has published a detailed walkthrough of a fully static Next.js website — a Spanish political ideology quiz — that serves 232 prerendered pages without any database, API layer, or server-side state. All content is derived at build time from just three data files covering axes, parties, and questions, with Next.js generating every route automatically via generateStaticParams. The site ranks users against 17 political parties across 9 ideological axes using pure client-side computation, eliminating the need for server round trips entirely. To enable shareable results without storing any user data, answers are encoded directly into the URL using compact bit-packing and base64url encoding. The author argues this approach removes entire categories of backend complexity — including databases, migrations, GDPR data-processing obligations, and breach risk — without sacrificing functionality.