SShortSingh.
0
TechnologyNYT Technology ·

Laptop Battery Fire on American Airlines Flight Injures Passenger

A laptop computer caught fire mid-flight on an American Airlines aircraft after its lithium battery began emitting smoke. Flight attendants responded quickly by placing the burning device inside a fireproof containment bag to prevent the fire from spreading. At least one passenger sustained injuries as a result of the incident. The injured passenger received medical treatment after the plane landed.

0
ProgrammingHacker News ·

Claude Code Plugin Unlocks Export-Blocked Kindle Highlights

A developer has published a Claude Code plugin on GitHub designed to recover Kindle highlights that are blocked from standard export. The tool, shared under the repository 'claude-plugins' by user l3a0, addresses a common frustration among Kindle users who cannot easily extract their annotations. The plugin leverages Claude Code's skill system to work around the export restrictions imposed on certain Kindle content. The project was shared on Hacker News, where it received minimal engagement at the time of reporting.

0
IndiaNDTV ·

Thane Man Arrested 36 Years After Allegedly Attacking Cricket Umpire With Bat

A 55-year-old man named Pasi, residing in the Mira Road area of Thane, has been arrested after evading law enforcement for nearly 36 years. He was wanted in connection with an attempt to murder case involving an attack on a cricket umpire with a bat. The incident dates back approximately three and a half decades, during which Pasi had remained at large. Authorities finally tracked him down at his current residence in the Mira Road locality of Thane district.

0
ProgrammingDEV Community ·

How a Per-Project Token Quota System Stopped One Batch Job From Starving Others

Three projects sharing a single LLM gateway and a 10-million-token allowance ran into trouble on day nineteen when a batch summarization job consumed 7.1 million tokens in four hours, causing all other projects to fail with quota errors. The root cause was a shared token pool with no per-project attribution, meaning any single consumer could exhaust the entire allowance unchecked. To fix this, a per-project quota layer was built in Python, assigning each project its own daily token budget and per-minute request limit, with all limits summing to 9 million to preserve a 10 percent safety buffer. The system runs a pre-check before each upstream request using a conservative token estimate, rejecting over-budget requests with a 429 response, then reconciles actual usage from the API response afterward. This two-step approach ensures that a single bad estimate causes only a minor overshoot rather than a runaway consumption event.

0
ProgrammingDEV Community ·

Developer Builds UrbanLease Appliance Rental Platform, Shares Key Technical Lessons

A developer built UrbanLease, a web platform allowing users to rent home appliances with features including rental history, payments, and separate user and vendor portals. Early in development, the project was migrated from SQLite to MySQL to better handle growing data complexity, requiring fixes to tables, columns, and database relationships. Feeling the initial version lacked differentiation, the developer added a rule-based smart recommendation system that filters and ranks appliances based on user inputs like budget and rental duration. A second feature, an appliance condition history log, was introduced to show prospective renters details such as past rentals, maintenance records, and service history. The developer noted that building a functional product is only part of the process, emphasizing that meaningful features should solve real problems rather than simply add more pages.

0
ProgrammingDEV Community ·

Study Shows Full-File AI Code Rewrites Consume 11x More Tokens Than Simple Generation

A developer burned through a 10-million-token free AI coding allowance in two days by repeatedly requesting full-file rewrites, prompting a structured investigation into token costs. Using MonkeyCode, an open-source AI coding platform offering 10 million free tokens and a free server, a reproducible benchmarking harness was built to measure real token consumption across common coding tasks. Results showed that a full-file rewrite costs roughly 3,300 tokens per run, compared to just 300 for a simple code generation task — an 11x difference. The benchmark covered five task types: code generation, debugging, test writing, refactoring, and full-file rewriting, with token estimates based on a four-characters-per-token heuristic. The findings highlight that deliberate task selection, rather than defaulting to rewrites, can stretch a 10-million-token allowance to cover tens of thousands of meaningful coding operations.

0
ProgrammingDEV Community ·

AI-Written Tests Can Pass While Missing Critical Bugs, Mutation Testing Reveals

A developer merged an AI-generated 14-test suite for an ISO date parser without review, only to discover the tests failed to catch broken new timestamp formats added a week later. The tests repeatedly validated the same happy-path scenarios with minor input variations, leaving key edge cases completely uncovered. Experts warn that a fully green AI-generated test suite does not guarantee meaningful coverage, and that false confidence from such suites can be more harmful than having no tests at all. Mutation testing — which introduces deliberate code bugs to check whether tests detect them — offers a measurable way to assess suite quality, with a score below 50% indicating largely decorative tests. A workflow using the open-source MonkeyCode platform, which currently offers free server access and a 10-million-token allowance, is proposed to automate this audit on every agent-generated suite.

0
IndiaNDTV ·

PM Modi to Engage Students via Khelo India Samvad on August 27

Prime Minister Narendra Modi is scheduled to interact with students on August 27 under the 'Khelo India Samvad' initiative. The programme appears to be part of a broader sports-focused outreach effort targeting younger demographics, particularly Gen Z. Both BJP and AAP have been leveraging sports engagement as a political strategy in Punjab. The initiative reflects growing competition between parties to connect with student and youth communities through sports platforms.

0
ProgrammingDEV Community ·

AI-Era Search Disruption Opens Door for Challenger Brands to Gain Visibility

A Search Engine Land analysis published on August 13, 2026, argues that ongoing SEO uncertainty is creating a strategic opportunity for smaller or newer organizations to compete more effectively against established incumbents. As Google resolves more queries within its own ecosystem and AI platforms have yet to generate reliable referral traffic, traditional metrics like rankings and last-click conversions are becoming less reliable indicators of search value. This shift means that long-standing SEO advantages built on accumulated history and keyword dominance carry less weight than they once did. Challengers can now compete by building credible, expert-driven content and technical assets that generate brand mentions and citations across multiple channels. The analysis recommends that enterprises adopt a broader measurement framework that accounts for assisted conversions and brand awareness rather than relying solely on direct attribution.

0
ProgrammingDEV Community ·

How AI Gateways Let You Control Terminal Agents from Slack, Discord, and Telegram

An AI gateway is a persistent process that connects an AI agent to messaging platforms like Slack, Discord, Telegram, Signal, and Microsoft Teams, allowing users to interact with their agents from anywhere. The architecture solves three core problems: chat platforms require always-on listeners, they are multi-tenant and need strict sender authorization, and they manage stateful conversations that must map to distinct agent sessions. Tools such as Hermes, OpenClaw, Loro, and MagAgent each implement this gateway pattern, though with varying platform support and feature sets. Hermes extends the model further by integrating a cron scheduler into the gateway, enabling scheduled jobs to deliver output across any connected platform. The article evaluates each major platform by setup complexity, security tradeoffs, and capability, offering practical guidance for developers deploying agents beyond the terminal.

0
ProgrammingDEV Community ·

MonkeyCode Offers Free AI Coding Tier With 10M Tokens; Self-Hosting Guide Released

MonkeyCode, an open-source AI coding project, provides a free managed tier with a 10-million-token monthly allowance and a free server for running coding agents as of August 2026. A new decision framework helps small development teams choose between the managed free tier and self-hosting, covering factors such as latency, data privacy, operational burden, and quota risk. Self-hosting keeps data within a team's own infrastructure but demands significant time investment in hardware setup and maintenance, while the managed tier suits prototypes and low-volume use with zero upfront cost. The article includes a Bash probe script that measures wall-clock response time and tokens per second against any OpenAI-compatible endpoint, enabling teams to benchmark options rather than guess. The piece was produced as part of MonkeyCode's product outreach, and readers are advised to verify current quota and pricing terms directly on the project page before making deployment decisions.

0
ProgrammingDEV Community ·

How to Evaluate Free AI Tiers Before Building Your Next Side Project

Free AI tiers come with hidden costs in the form of token quotas, performance limits, data usage policies, and vendor lock-in, according to a framework published on DEV Community. Developers are advised to score any free AI offering across five dimensions — quota, performance, data privacy, migration ease, and ecosystem — before committing to it. A weighted scoring system is proposed, where a total score above 3.5 signals a viable option and below 2.5 is considered a risk. Practical steps include stress-testing the API with parallel requests, reviewing terms for data training clauses, and checking whether the provider supports standard OpenAI-compatible SDKs. The article also recommends building apps to handle quota failures gracefully through caching, retry logic, and quota tracking.

← NewerPage 8 of 3067Older →