SShortSingh.
0
ProgrammingHacker News ·

Amazon Mechanical Turk to shut down on September 30

Amazon's Mechanical Turk (MTurk), a long-running crowdsourcing platform, is set to close permanently on September 30. The platform has allowed businesses and developers to coordinate human intelligence tasks at scale since its launch in 2005. The shutdown was announced via the official MTurk website. Workers and requesters who rely on the platform will need to find alternative solutions before the closure date.

0
ProgrammingDEV Community ·

Developer builds IAM policy linter, finds security gaps in Prowler's 48 checks

A software developer built an open-source CLI tool called iam-lint while preparing for a cloud security engineering interview, which scans AWS IAM policy documents for critical misconfigurations. The tool implements seven rules covering risks such as wildcard actions, unrestricted admin access, privilege escalation paths, and missing MFA conditions. After completing the tool, the developer systematically reviewed all 48 of Prowler's existing IAM checks to avoid duplicating already-solved problems. The comparison revealed that while some rules overlapped with Prowler's coverage, at least one non-trivial security gap was identified that Prowler does not currently address. The tool integrates directly into CI pipelines via exit codes and supports JSON output for machine-readable results.

0
ProgrammingDEV Community ·

LangChain Framework Splits Voice Agent Evaluation Into Three Distinct Metrics

LangChain has outlined a structured approach to evaluating voice agents by breaking down performance into three separate dimensions: execution, outcome, and caller experience. Execution checks whether the agent followed its instructions, used the correct tools in the right order, and complied with defined policies. Outcome evaluation assesses whether the caller's actual request was fulfilled, not just whether the workflow completed without errors. Experience measures call quality factors such as response speed, naturalness, and absence of unnecessary repetition. A developer tested this framework by building a small refund agent and running it through six scripted calls with eleven evaluators, finding that rule-based code checks work best for verifiable behaviors while LLM judges are better suited for nuanced, prose-defined criteria.

0
IndiaTimes of India ·

NFL renews sportsmanship crackdown, Kelce risks further fines after 2025 gesture

Kansas City Chiefs tight end Travis Kelce was fined $14,491 by the NFL after making an obscene gesture toward the Philadelphia Eagles' sideline in September 2025. The league has maintained its strict stance on taunting, illegal celebrations, and fighting heading into 2026. Officials have been instructed to continue emphasizing sportsmanship across the league. As a result, Kelce may face increased scrutiny over his on-field behavior and emotional style of play in the upcoming season.

0
TechnologyTechCrunch ·

Amazon triples Nvidia chip order to meet surging data center demand

Amazon has placed an order for an additional 2 million Nvidia GPU chips, tripling its previous purchase commitment. The chips are set to be deployed across Amazon's data centers over the next two years. The move comes in response to surging demand for AI and cloud computing infrastructure. The expanded deal also signals a broader, deeper partnership between Amazon and Nvidia that goes beyond a simple hardware transaction.

0
ProgrammingDEV Community ·

Compression Explained: Lossless vs Lossy, Algorithms, and File Formats

Data compression reduces file size by encoding information using fewer bits, saving storage space, bandwidth, and transfer time. There are two main types: lossless compression, which preserves all original data and suits text or code files, and lossy compression, which permanently removes less noticeable details for greater size reduction in images, audio, and video. Compression algorithms are the underlying methods that shrink data, while file formats like PNG or MP3 are containers that package the output of those algorithms along with metadata. For example, PNG uses the Deflate algorithm, GIF uses LZW, and FLAC applies its own algorithm to raw audio — each format pairing a distinct recipe with a structured wrapper. Understanding this distinction helps clarify why different file types behave differently in terms of quality, size, and recoverability.

0
ProgrammingDEV Community ·

Zero-Copy Multi-Protocol Storage Can Eliminate Sync Jobs in Cloud Data Pipelines

Most cloud migration architectures rely on sync jobs that duplicate data from legacy file shares into S3, creating two copies that must be kept consistent and introducing latency, extra cost, and potential data drift. A zero-copy, multi-protocol storage pattern eliminates this redundancy by allowing the same underlying data volume to be accessed simultaneously via SMB, NFS, and S3 without replication or translation. Amazon FSx for NetApp ONTAP enables this approach natively, letting legacy applications continue writing over network file protocols while cloud-native services read the same bytes through an S3 Access Point. A proof-of-concept built on this architecture transformed an insurance claims intake pipeline, reducing processing reaction time from scheduled batch intervals to near-instant response. Beyond cost savings from eliminating duplicate storage, the pattern fundamentally changes real-time capabilities for legacy systems by making files visible to cloud compute the moment they are written, rather than after a sync cycle completes.

0
ProgrammingDEV Community ·

Developer Builds Zero-Cost Multi-Agent AI Orchestrator and Local Assistant System

Software developer and music producer Kxrn has built two open-source AI tools — SwarmForge, a zero-cost multi-agent coding orchestrator, and O.D.I.N., a local system assistant — to automate complex workflows without expensive cloud costs. SwarmForge uses a hierarchical team of AI agents (manager, researcher, coder, and reviewer) that collaborate via a shared markdown-based memory pool, relying on free-tier APIs and local models. O.D.I.N. and its counterpart SHIVA use a hybrid Python and C++ architecture, where Python manages AI logic while lightweight C++ Win32 daemons handle low-level system tasks like process control and audio routing. The two components communicate through Inter-Process Communication using Windows named pipes, keeping the overall system footprint minimal. Kxrn has published the code for both projects on GitHub for other developers to explore and build upon.

0
IndiaTimes of India ·

Qatar PM heads to Tehran amid unresolved Iran-US standoff over Hormuz Strait

Qatar's Prime Minister is set to visit Tehran as tensions between Iran and the United States continue to simmer. The conflict, now entering its sixth month, has seen a significant reduction in active fighting, but no diplomatic breakthrough has been achieved. A central sticking point remains the Strait of Hormuz, a narrow waterway between Iran and Oman. The strait is a critical global oil transit route, making its status a matter of significant international concern. Qatar's visit signals ongoing regional diplomacy aimed at bridging the gap between the two sides.

0
IndiaTimes of India ·

Mahomes Faces Uncertainty Over Knee Recovery Ahead of 2026 NFL Season

Kansas City Chiefs quarterback Patrick Mahomes is under close scrutiny as he recovers from a serious knee injury ahead of the 2026 NFL season. The Chiefs have adopted a cautious approach during training camp while Mahomes works on testing his mobility. His reduced ability to rush could impact his overall performance, following a career-best 422 rushing yards and five touchdowns in 2025. With Week 1 drawing closer, both his physical health and mental confidence are seen as critical to Kansas City's prospects. The situation remains fluid as the team monitors his progress carefully.

0
IndiaNDTV ·

Trump Says He Does Not Believe Iran's Mojtaba Khamenei Is Dead

US President Donald Trump has stated that he does not believe Mojtaba Khamenei is dead. Mojtaba Khamenei became Iran's Supreme Leader following the death of his father, Ayatollah Ali Khamenei. The elder Khamenei was killed in joint US-Israeli military strikes carried out on February 28. Trump's remarks come amid uncertainty surrounding the status of Iran's current Supreme Leader.

0
ProgrammingDEV Community ·

Developer Launches Free AI Model Tracker Covering 900 Models and 2,300 Static Pages

A systems engineer has publicly launched theknowngood.com, a website that aggregates evaluation data for around 900 AI models, including benchmark results, pricing, arena ratings, and performance metrics. The site is built as fully static HTML rendered via Python and Jinja2 from a Postgres database, meaning no database queries occur at request time. All CSV and JSON data exports are freely available under a CC BY 4.0 license, with no user accounts, tracking, or inbound API. For security, nginx is bound to loopback only and the site is served through an outbound tunnel, eliminating public-facing open ports entirely. The project is currently self-hosted on home hardware, and the creator is actively seeking user feedback on performance and test coverage gaps.

0
ProgrammingDEV Community ·

LLM Cost Routing Cuts Inference Spend 48x and Fixes Broken Margin Curves

A software team discovered that one frontier AI model was handling 77% of their calls and consuming 97% of their inference budget simply because it was the default setting, not because most tasks required it. After measuring a week of production traffic, they found their average call cost $0.00524 on the frontier model versus $0.00011 on a capable open-weight alternative — a roughly 48x difference. Under a $20/month subscription plan, routing all calls through the frontier model turned high-engagement users into a financial loss, while task-based routing kept margins above 97% even at 5,000 messages per month. The key insight is that smart routing does not merely reduce average costs — it reverses the marginal cost curve so that heavier product usage compounds profit rather than loss. The team cautioned, however, that a cheaper model requiring multiple retries can quickly erase those savings, making reliable routing logic essential.

← NewerPage 410 of 3598Older →