SShortSingh.
0
SportsESPNcricinfo ·

Bangladesh women reach T20 World Cup semis after spinners restrict UAE to 69

Bangladesh secured a place in the semi-finals of the women's T20 World Cup after defeating UAE in their group stage match. Sharmin Akhter played a crucial rescue innings, steering Bangladesh from a precarious 55 for 6 to a competitive 103 for 7. The bowlers, led by Marufa and the spin attack, then kept UAE well in check, dismissing them for just 69. The victory confirmed Bangladesh's progression beyond the group stage of the tournament.

0
SportsESPNcricinfo ·

Procter's five-wicket haul puts Northants in command against Worcestershire

Luke Procter delivered a five-wicket haul to put Northamptonshire in a strong position against Worcestershire in their county cricket fixture. His impressive bowling performance helped dismiss Worcestershire for a modest total, giving Northants a clear advantage. Northamptonshire's openers then batted through to the close of play without losing a wicket, consolidating their dominant position. The performance sets up Northants for a potentially decisive lead heading into the next day's play.

0
ProgrammingDEV Community ·

Developer builds double-entry accounting system to track and cap AI agent spending

A developer running ten continuous AI agent sessions on a single machine built a double-entry bookkeeping system using hledger to track costs, open tasks, and compute labour across the fleet. The system logs every agent action as a financial event, imputing USD values from token counts and recording unfulfilled tasks as standing liabilities. A rolling five-hour budget window monitors spend in real time, with automated alerts escalating from warnings to a hard throttle that halts new task dispatch when the cap is breached. On the day a $100 budget limit was first armed, the fleet's pre-existing spend of $156 immediately triggered the throttle, which was only lifted after the operator raised the cap to $200. The system is designed to fail open rather than fail closed, ensuring a monitoring outage does not freeze the entire fleet.

0
IndiaNDTV ·

Vigil Held in Manipur Over Musician's Death; CM Writes to Delhi Minister Rekha Gupta

A vigil was held in Manipur following the death of a musician, with attendees demanding swift justice. The Manipur Chief Minister wrote to Delhi Minister Rekha Gupta in connection with the case. Delhi Police have arrested eight persons allegedly linked to the musician's killing. Those gathered at the vigil also requested a meeting with the Manipur Chief Minister to press for faster action against the accused.

0
IndiaTimes of India ·

Army man breached PM Modi's BKC security with fake NSG card in 2023, trial pending

A retired assistant commissioner has recalled a past security breach involving an army personnel at BKC. The army man allegedly used a tampered NSG identity card and a fake pass to gain access. His reported motive was simply to see Prime Minister Modi as an admirer, not to cause harm. Authorities filed a chargesheet following the incident, though the trial remains pending. The man and his wife later attended a separate event through legitimate means with a valid pass.

0
ProgrammingDEV Community ·

How to Answer IT Support Troubleshooting Questions Confidently in Interviews

A guide published on DEV Community advises IT support job candidates on how to structure troubleshooting answers during interviews without guessing or overclaiming. The core advice is to ask clarifying questions first — such as identifying the exact error and who is affected — before proposing any technical fix. Using a shared-folder access scenario as an example, the guide demonstrates how to separate observation from hypothesis and how to stay within role-appropriate boundaries. Microsoft's own interview guidance is cited as encouragement for candidates to clarify context and explain their reasoning aloud. The article emphasises that candidates should be able to switch between concise factual answers and structured investigative thinking depending on what the question requires.

0
ProgrammingDEV Community ·

Allostatik Offers a Persistent AI Context System Built on Plain Files You Control

Allostatik is a tool designed to give users a continuous, compounding working relationship with AI by storing context in plain text files the user owns. Unlike default AI sessions that reset with each conversation, Allostatik loads project state at the start of every session and updates it at the close, so each session builds on the last. The system addresses a common problem where AI lacks access to past decisions, reversed preferences, or evolving project context, causing it to contradict or misrepresent the user's intentions. Rather than relying on AI-generated memory summaries the user never authored, Allostatik keeps the user as the sole gatekeeper of every change to their context files. The tool's core value lies not just in capturing context but in a structured maintenance routine that ensures records stay current and accurate across projects.

0
SportsESPNcricinfo ·

Bamber's Five-Wicket Haul Skittles Glamorgan for 69, Lifts Warwickshire in Title Race

Warwickshire seamer Ethan Bamber delivered a dominant bowling performance against Glamorgan in a County Championship fixture. He claimed a five-wicket haul, also reaching the milestone of 50 wickets for the season in the process. His efforts helped bundle Glamorgan out for a meager 69 runs. The result has strengthened Warwickshire's position in the County Championship title race.

0
SportsESPNcricinfo ·

Raine's resistance keeps Durham afloat after Morgan's four-wicket haul for Middlesex

Middlesex gained the upper hand against Durham after pacer Matt Morgan claimed a four-wicket haul to put the visitors under pressure. Higgins and Sharma also contributed with wickets, further tightening Middlesex's grip on the match. Durham's Ben Raine offered notable resistance with the bat, keeping his side's hopes alive. However, Brydon Carse struck twice to peg back the visitors and shift momentum once more. The match remained finely poised as both sides traded blows across the contest.

0
ProgrammingDEV Community ·

What Really Happens When You Fail Google Play's 14-Day Testing Requirement

Developers with personal Google Play accounts created on or after November 13, 2023, must complete a closed testing phase with at least 12 opted-in testers for 14 consecutive days before gaining production access. Google reduced this tester threshold from 20 to 12 in December 2024, but the quality of engagement still matters — not just the numbers. Failing the requirement either resets the streak timer or results in a rejected production access application, but does not suspend or penalize the developer account. Google flags inactive, fake, or unengaged testers by tracking downloads, app launches, feedback submissions, and update activity during the testing window. Developers who fail can address the issues and reapply once a new compliant closed test is completed.

0
ProgrammingDEV Community ·

Developer Builds Brain-Inspired AI Memory System That Forgets Recent Work by Design

A developer created an AI memory system called 'mycelium' that mimics how biological brains reinforce and forget information, storing memories as interconnected nodes rather than simple searchable documents. The system strengthens links between concepts recalled together frequently and allows unused memories to decay over time, treating forgetting as a deliberate feature. Built on SQLite with FTS5 and a connection graph as its primary retrieval mechanism, it surfaces 'hub' memories — the most frequently accessed and heavily connected concepts — at the start of each session. However, the developer discovered a key limitation: recent memories, lacking connections or access history, consistently ranked below older, well-reinforced ones, making it difficult to resume work from the previous session. The flaw highlights a fundamental tension between salience-based reinforcement and recency, mirroring a trade-off found in human memory itself.

0
ProgrammingDEV Community ·

Career Changer Documents Every AWS Serverless Pitfall in Cloud Resume Challenge Build

A former insurance operations professional completed the Cloud Resume Challenge to transition into cloud engineering, building a serverless resume site hosted on AWS. The project uses a private S3 bucket behind CloudFront with Origin Access Control, a Lambda-powered visitor counter backed by DynamoDB, and is fully managed via Terraform and deployed through GitHub Actions. During the build, a domain registration failure on Route 53 was traced to a fraud alert triggered by an account upgrade, leaving a support case unresolved for two days. A separate issue arose when an ACM certificate request failed because DNS validation required a Route 53 hosted zone that did not yet exist, creating a dependency deadlock. The developer worked around both blockers by continuing progress on unaffected components and upgrading to a paid support plan to accelerate AWS's response.

0
ProgrammingDEV Community ·

AWS AI Agents Power Real-Time Maritime Vessel Monitoring System

A technical guide published on DEV Community on September 8 details how to build a maritime watch floor using AI agents on AWS. The system is designed to monitor ships that go 'dark,' meaning vessels that stop transmitting location or identification signals. Author Shadab Hussain, an AWS Community Builder, outlines the architecture and system design behind the agentic AI solution. The project leverages AWS cloud infrastructure combined with agentic AI to enable continuous, automated maritime surveillance. The write-up, estimated at a 20-minute read, covers topics including AI, AWS, agentic AI, and system design.

← NewerPage 900 of 4754Older →