SShortSingh.
Back to feed

Developer builds keyboard-first iPad code editor after 18 months of work

0
·1 views

A developer has spent 18 months building Greditor, a new code and text editor for iPadOS, designed primarily for use with a physical keyboard. Frustrated by the touch-first design of existing iPad apps and the sandboxed limitations of iPadOS, the creator wanted a distraction-free, keyboard-driven editing experience reminiscent of early editors like Brief and Vim. Greditor features a minimal full-screen interface, fully configurable keyboard mappings with presets for Xcode, VS Code, and Emacs, clipboard history, multi-pane splits, and standard coding tools such as regex find-and-replace and Unicode support. The editor was originally built for personal use on an M4 iPad Pro but is now being made publicly available. Existing iPad editors like Textastic and Koder were deemed insufficient by the developer, who sought a more powerful, purist coding environment on the device.

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 ·

Meta Muse Code and AWS Kiro Lead Shift to Multi-Agent AI Coding Workflows

The AI coding landscape is undergoing a major shift from simple autocomplete tools toward autonomous multi-agent systems capable of planning, writing, testing, and validating code across entire repositories. Meta has launched Muse Code in beta, powered by its Muse Spark 1.2 model, which uses a primary orchestrator agent that delegates tasks to parallel sub-agents handling code parsing, test generation, and security analysis simultaneously. AWS has added an Agentic Workspace feature to its Kiro tool, allowing developers to offload complex coding tasks to a background agent that works asynchronously without blocking their active development session. New academic research has also emerged exploring how AI coding agents use structured planning frameworks to manage full software development lifecycles. Together, these developments signal a broader industry move away from single-turn AI interactions toward parallelized, autonomous engineering workflows.

0
ProgrammingDEV Community ·

Python library hysteresis-state prevents false state changes in noisy classifiers

A developer has released hysteresis-state, a pure Python library with no dependencies, designed to eliminate rapid false transitions in discrete state classifiers. The library works by requiring a configurable number of consecutive observations before confirming a state change, resetting the count if the signal reverts before reaching the threshold. It also supports asymmetric confirmation thresholds, allowing systems to fall into a failure state quickly while recovering more cautiously — mirroring the behavior of an electrical circuit breaker. The tool originated from a trading bot whose market-regime classifier flickered near decision boundaries, causing unwanted operational freezes. The library is available via pip and its source code and mutation-tested test suite are published on GitHub.

0
ProgrammingDEV Community ·

Developer builds interactive Nigerian egusi soup scene using only CSS and no JavaScript

A frontend developer created a detailed CSS art piece depicting egusi soup with pounded yam as part of the DEV Community Frontend Challenge - Comfort Food Edition. The entire interactive scene, including an animation where a morsel of pounded yam dips into the soup, runs purely on a CSS checkbox and sibling selector with zero JavaScript. The 3D table scene uses CSS perspective, transform-style: preserve-3d, and container query units to scale seamlessly across devices without media queries. Visual details like the bowl's depth, palm oil sheen, egusi curds, and raffia mat were achieved through layered gradients, masking, and box-shadow cloning techniques. The project is MIT licensed and serves as a companion piece to the developer's earlier jollof rice CSS artwork.

0
ProgrammingDEV Community ·

How One Developer Built a Race-Condition-Safe Comment Reply System in Node.js

A developer building the Vlox platform engineered a nested comment reply system using Node.js and MongoDB that prioritizes simplicity and security over complex tree structures. The system reuses a single Mongoose schema for both comments and replies, distinguishing replies by adding a rootId field and omitting a repliesCount field. Input sanitization is enforced by converting all incoming text to trimmed strings and rejecting replies that are empty or exceed 200 characters. MongoDB transactions handle concurrency by atomically checking and incrementing reply counts, capping each comment thread at a maximum of 10 replies. Race conditions are managed by detecting unmatched write operations and returning a clear error response to the client.

Developer builds keyboard-first iPad code editor after 18 months of work · ShortSingh