SShortSingh.
0
ProgrammingDEV Community ·

ValenceSphere Uses Triadic AI System to Combine Concept Learning with Fact-Checking

ValenceSphere is an experimental AI reasoning framework designed to give language models greater structure and rudimentary critical thinking. It operates through a triadic architecture of a questioner, an answerer, and an adjudicator, loosely modelled on Socratic dialogue. The system works in two stages: the first builds structured knowledge around individual concepts, while the second monitors live LLM conversations and independently audits factual claims made by both the user and the model. When assertions conflict with stored knowledge, three independent model configurations are used to verify them, and all reasoning and evidence are preserved in JSON format. The project is open-source and available on GitHub under the repository Valence-Sphere by Kosev-Lex.

0
ProgrammingDEV Community ·

Developer Cuts AI Pipeline Delays by Routing Bulk Tasks to Local LLM on Mac Mini

A developer running automated QA scripts for video Shorts hit severe bottlenecks when cloud API rate limits slowed a two-minute job to four hours. The root cause was dozens of rapid requests overwhelming a free-tier cap of 5–10 requests per minute. Realizing their Mac Mini was already running 24/7 and sitting idle, they connected a local LLM at localhost:1234 directly into the pipeline at near-zero marginal cost. They adopted a hybrid fallback strategy: cloud APIs handle complex reasoning and long-context tasks, while the local Qwen model absorbs high-volume, repetitive workloads during rate-limit surges. The result was a stable, uninterrupted pipeline with no manual overrides and full privacy over draft scripts.

0
ProgrammingHacker News ·

Performance Gap Between High and Low-End Devices Widens in 2026

A 2025 analysis published on infrequently.org examines the growing performance inequality between premium and budget devices heading into 2026. The report highlights how users on lower-end hardware continue to experience significantly degraded web performance compared to those on flagship devices. This disparity raises concerns about equitable access to web content and applications for users in lower-income demographics. The piece argues that developers and the tech industry must account for this gap when building and optimizing digital experiences.

0
ProgrammingDEV Community ·

WebMCP Challenge Opens: Experts Urge Developers to Expose Real Site Actions to AI Agents

The WebMCP Challenge, backed by OpenAI, Cloudflare, Shopify, Vercel, Render, and Netlify, runs from August 25 to September 3 on Devpost with $35,000 in prizes. The competition invites developers to build using WebMCP, a browser API that enables web pages to provide AI agents with callable tools instead of requiring them to navigate a traditional UI. Experienced builders warn that the most common mistake is wrapping a chat or search interface as a tool, since agents already serve as the conversational layer and instead need access to specific site actions like catalog searches, cart updates, or booking forms. A second critical pitfall is returning insufficient data from tools — responses like a bare success flag give agents nothing to act on, causing them to stall or produce inaccurate results. Developers are advised to treat every tool's return value as a formal API contract, always including structured, actionable data such as search results, updated totals, or confirmation details.

0
ProgrammingDEV Community ·

Four Open-Source Android APK Hardening Tools Compared Across Security Dimensions

A technical comparison of four open-source Android APK protection projects — Jiagu, dpt-shell, nmmp, and XopProtector — evaluates their capabilities across areas including DEX encryption, VMP, Native protection, SO protection, and RASP. Jiagu is positioned as a beginner-friendly tool focused on traditional DEX shell and encryption, while dpt-shell specializes in method-level protection and runtime reconstruction. nmmp distinguishes itself through a custom Native VM that executes Dalvik bytecode with opcode randomization, though it faces some compatibility issues on newer Android versions. XopProtector covers the broadest range of protection layers, combining DEX, method, VMP, SO protection, RASP, and anti-hook detection into a unified pipeline alongside desktop tooling and a Java API. The article concludes that each project suits different learning or research goals, with XopProtector being the recommended choice for developers seeking a comprehensive, multi-layered Android application protection framework.

0
ProgrammingDEV Community ·

How to Build a Fully Offline AI Finance Assistant Using LiteRT and Gemma 4

A developer guide published on DEV Community outlines how to build a privacy-first personal finance assistant that runs entirely within a web browser without any internet connection. The application uses Google's LiteRT LM Web API and the Gemma 4 E2B small language model, caching roughly 2GB of model weights in the browser's Cache Storage for offline use. Transaction data is stored locally via IndexedDB, ensuring sensitive financial information never leaves the user's device. To reduce AI hallucinations on numerical data, the system pre-computes expense totals by day, month, and category before passing them to the model as verified ground truth. The tech stack includes Angular 22, TailwindCSS, and Node 24, with conversation memory managed carefully to stay within on-device token limits.

0
ProgrammingDEV Community ·

Attacker Spends $951 to Drain $8.5M from Term Finance via Governance Exploit

On August 23, 2026, an attacker drained $8.5 million from Term Finance's Ethereum-based Meta Vaults by exploiting a governance mechanism rather than any code vulnerability. Using roughly $951, the attacker purchased enough governance tokens to control over 90% of voting power in the ETH Meta Vault, since the total staked supply was extremely thin at the time. With that majority, the attacker passed proposals to eliminate the 7-day timelock and add a malicious contract disguised as a yield strategy, which routed vault funds directly to their own wallet. A built-in LP veto window of five days passed without any challenge, as no monitoring system flagged the hostile proposals and no community discussion took place. The incident highlights how governance systems with low token participation can be more vulnerable than the smart contracts they oversee.

0
ProgrammingDEV Community ·

EvoGuard Aims to Add Context-Aware Safety Layer Between AI Code and Production

A new open-source platform called EvoGuard is being developed to sit between AI-assisted code generation tools and a repository's production branch. The platform evaluates pull requests not just on their code diff but against the broader repository context, including past rollbacks, incidents, architectural conventions, and dependency history. Its core premise is that AI coding agents can produce syntactically valid, test-passing code that still violates undocumented but critical codebase conventions. EvoGuard aims to convert fragmented repository history — spread across Git logs, CI systems, and incident reports — into structured 'repository memory' that informs future merge decisions. The project is currently in development and is available on GitHub under the handle modarresi1913/Evoguard.

0
ProgrammingDEV Community ·

Social Posting Automation Silent for 14 Days While Monitoring Falsely Showed All Clear

A ¥1.2M/month content automation system stopped publishing to Instagram and TikTok on July 28–29, but the failure went undetected for two weeks because social posting lanes were never included in the existing monitoring script. The oversight was not a bug but a design gap — the watchdog tool was intentionally built to cover only article-related pipelines, leaving social channels completely unobserved. Compounding the problem, posting scripts consistently exited with code 0 even when no content was actually published, causing the system to register eight out of twelve failed runs as healthy. The operator discovered the outage only by chance while reviewing logs for an unrelated issue. A revised monitoring approach was subsequently implemented, shifting the health check from 'did the script complete' to 'does a success marker appear in today's log,' better aligning technical signals with real business output.

0
ProgrammingDEV Community ·

Benchmark: Web3-Focused Scanner Drainscan Outperforms Gitleaks and TruffleHog on Crypto Key Detection

A benchmark test across 500 web3 repositories found that generic secret scanners gitleaks and trufflehog missed approximately 73% of web3-specific private key leaks, while the newer tool drainscan detected significantly more with a 4% false-negative rate. Drainscan identified 487 web3-specific true positives compared to 89 and 112 for gitleaks and trufflehog respectively, and achieved a 3% false-positive rate versus 34–41% for its rivals. Key blind spots in the generic tools included Phantom wallet JSON exports, BIP-39 mnemonic checksum validation, and Solana base58 seeds, all of which drainscan flagged using web3-aware semantic analysis. The benchmark was conducted using default and aggressive configurations with manual verification of findings across Solana, Ethereum, and DeFi repositories. Drainscan is available as a free pip-installable tool, with a one-time $99 Pro license unlocking git history auditing and SARIF reporting.

0
ProgrammingDEV Community ·

Developer shares debugging lessons from running Osintgram on a Linux VM with HikerAPI

A developer recently documented their experience setting up and debugging Osintgram, an open-source OSINT tool, inside a Linux virtual machine accessed from an Android device via Termux. The process revealed that successfully installing a Python package does not guarantee an application is ready to use it, prompting deeper inspection of package versions and method signatures. By systematically verifying each layer — from the Python environment to API credentials — the developer was able to isolate issues rather than making assumptions. The investigation ultimately found that the HikerAPI account required a top-up, an account-level restriction rather than a code or configuration error. The experience led the developer to outline a structured debugging checklist for Python and API-based projects.

0
IndiaTimes of India ·

Rain Threat Clouds India's World Test Championship Hopes in Sri Lanka

India's World Test Championship qualification prospects face uncertainty as rain interruptions threaten to derail their second Test against Sri Lanka. A drawn result would push India down to fifth place in the WTC standings, significantly weakening their chances of reaching the finals. The team has limited matches remaining to improve their position, making victories increasingly critical. India must secure wins in their remaining fixtures to stay competitive in the championship race.

0
IndiaTimes of India ·

Heatwaves push office workers from Tokyo to London to swap trousers for shorts

Extreme heat across Asia and Europe is prompting a shift in workplace dress codes, with more men opting for shorts and casual clothing. Tokyo's metropolitan government led the change by expanding its existing 'Cool Biz' campaign, which previously discouraged ties and jackets, to now encourage staff to wear shorts, T-shirts, and sneakers. As heatwaves intensified across Europe, workers in other cities followed suit in adopting lighter attire. In some cases the shift was backed by employers and local authorities, while in others workers made the change independently. The trend reflects growing pressure on traditional office dress norms as rising temperatures make formal clothing increasingly impractical.

0
ProgrammingDEV Community ·

Developer builds open-source multi-agent coding terminal with 3D office visualization

A developer named Dominque Church has released Gnosis, a free, open-source, local-first terminal coding agent built with a TypeScript backend and a React plus Three.js 3D office interface. The tool visualizes AI agents as entities moving through five distinct zones — including planning, coding, and testing — so users can see what each agent is doing in real time. Gnosis supports any OpenRouter language model and separates conversation state from the model provider, allowing mid-session model switching without losing context. A prompt-caching optimization reportedly cut one request's cost from $0.0252 to $0.0021, a roughly 12-fold reduction. The project is MIT licensed, ships with 104 automated test suites, and is installable via npm.

0
ProgrammingDEV Community ·

Student developer Guilherme Curtti documents tech journey on DEV Community

Guilherme Curtti, a Systems Analysis and Development student, has introduced himself on DEV Community as he begins his career in technology. He is currently studying web development, HTML, JavaScript, and Artificial Intelligence, with a particular interest in prompt engineering. Among his early projects is a Tic-Tac-Toe game built with JavaScript using the Minimax AI algorithm. Curtti also expressed interest in entrepreneurship, marketing, and fashion, believing technology and business can complement each other. He plans to use the platform to share projects, lessons learned, and his overall progress as a developer.

← NewerPage 413 of 3603Older →