SShortSingh.
0
TechnologyTechCrunch ·

General Intuition in talks to raise funds at $6B valuation backed by Valor, Point72

General Intuition, an AI startup developing foundation models for generalized agents, is in talks to raise a new funding round at a $6 billion pre-money valuation. The round is set to include investments from Valor Ventures, Point72 Ventures, and Seven Seven Six. The company focuses on training AI agents to navigate and understand space and time. The fundraise signals growing investor confidence in foundational AI infrastructure as the startup eyes expansion into robotics.

0
IndiaTimes of India ·

Harper Beckham honors mother Victoria in heartfelt Italian holiday post

Harper Beckham shared photos from the family's Italian holiday, describing her mother Victoria as her 'whole world' in an emotional post. Victoria responded warmly by reposting the image along with a loving message for her daughter. David and Victoria Beckham continue to travel in Italy with Harper, while sons Romeo and Cruz have returned to the United Kingdom. Eldest son Brooklyn Beckham was notably absent from the holiday, amid ongoing reports of family tensions.

0
ProgrammingDEV Community ·

Silent Regex Bug Let Faulty Children's Alphabet Episodes Pass Automated Review

A developer running an automated pipeline to produce children's animated episodes discovered that a critical validation rule had silently stopped working due to a subtle Python string escape error. A regex meant to verify that narrator examples matched the correct letter — such as confirming 'P is for pillow' — never flagged any issues because \b was interpreted as a backspace character rather than a word-boundary anchor. Since the broken rule returned an empty result just like a passing rule would, the flaw was invisible during normal operation and would have allowed incorrect educational content to be published. The bug was only caught because the developer tested the gate against a set of real episodes that a human reviewer had already flagged with known defects. The incident highlighted how a validation check that silently fails is indistinguishable from one that finds no problems, making pre-deployment testing against known-bad inputs essential.

0
IndiaTimes of India ·

3D-printed sensor-embedded repairs help monitor and preserve ancient pottery

Researchers at Koc University have developed a new conservation method combining photogrammetry, 3D printing, and embedded sensors to restore damaged ancient pottery. The custom-printed replacement sections can fill in missing parts of artifacts while simultaneously tracking environmental factors such as temperature, humidity, pH levels, and physical stress. The technique was tested on maritime amphorae originating from Türkiye and Italy. The approach aims to give conservators real-time data on changes affecting artifacts, supporting more effective long-term preservation efforts.

0
ProgrammingDEV Community ·

How reCAPTCHA Evolved From Distorted Text to Silent AI Risk Scoring

CAPTCHA technology began as a simple text-distortion puzzle designed to distinguish humans from bots, relying on the fact that humans could read garbled characters while machines could not. As machine learning improved, the puzzles grew harder, creating a frustrating experience for legitimate users who were repeatedly asked to identify traffic lights or crosswalks. Google's reCAPTCHA v3 moved away from visible challenges entirely, instead running a background risk-analysis engine that silently observes behavioral signals such as mouse movement, click patterns, and browsing context. The system returns a score between 0.0 and 1.0, where lower values flag more suspicious activity, and website owners can set their own thresholds to decide how to respond. Rather than delivering a binary human-or-bot verdict, modern reCAPTCHA functions as a continuous risk assessment tool that balances security with user experience.

0
IndiaTimes of India ·

Spinning Stars Produce Fainter Flares in Repeat Black Hole Encounters

Astronomers have observed stars that repeatedly pass close to supermassive black holes, shedding material in bursts of light that grow dimmer over time. New research suggests that a star's initial rapid spin plays a central role in this fading pattern. During each close encounter, the star loses mass, producing bright flares visible to astronomers. The star's spin rate helps regulate how much it rotates in subsequent passes, limiting the intensity of later flares. This finding offers new insight into the gravitational interactions between stars and supermassive black holes.

0
IndiaTimes of India ·

India exit 2026 Hockey World Cup semis after 3-5 defeat to Argentina

India's men's hockey team have been knocked out of the 2026 Hockey World Cup semi-final race following a 3-5 loss to Argentina. The team struggled from the outset as two early goals from Argentina put them on the defensive. Sukhjeet Singh scored twice and Hardik contributed a penalty stroke, but India's poor passing and failure to convert penalty corners undermined any comeback effort. Argentina's five-goal tally proved too much for the Indian side to overcome. India will now compete for seventh or eighth place in the tournament.

0
ProgrammingDEV Community ·

Engineering Team Cuts AWS Staging Costs 87% Using EventBridge Scheduler Alone

A software engineering team reduced their AWS staging environment compute costs by 87.5% by scheduling resources to run only during active working hours. The team identified that their staging setup — comprising an EC2 instance and an ECS Fargate service — was running 24 hours a day despite being actively used for only about three hours daily. Using AWS EventBridge Scheduler, they configured four scheduled rules to automatically start resources at 9 PM IST and shut them down at midnight, requiring no Lambda functions or application code changes. The setup took approximately 45 minutes and brought monthly compute costs down from roughly $19.18 to $2.40, saving around $201 annually. The team noted that similar savings could compound further when applied across other non-production environments such as QA clusters and review apps.

0
ProgrammingDEV Community ·

Why Product Engineers Struggle to Articulate Impact in 2026's Tough Job Market

Software engineering job searches in 2026 have become significantly harder, with candidates facing AI-driven CV screening, ghosting, and rising expectations around measurable impact. One product engineer recounts completing two full interview processes only to receive consistent feedback that, while technically strong, they failed to connect their work to clear business or user outcomes. The challenge stems partly from working in fast-scaling small teams where impact measurement was never embedded in the engineering culture. This creates a catch-22: engineers cannot demonstrate metrics-driven impact if their previous employers never defined or tracked such metrics. The author frames the job search itself as a product problem, arguing that understanding the recruiter and hiring manager's perspective is essential before attempting to solve the challenge.

0
IndiaTimes of India ·

Cooper Flagg's GF Mistakenly Identified as Jahmyr Gibbs' Partner After Viral Clip

Arianna Roberson, girlfriend of NBA prospect Cooper Flagg, was mistakenly identified online as the partner of NFL running back Jahmyr Gibbs following a viral video. The confusion arose amid separate coverage of Gibbs' girlfriend, Nicole Anderson, who appeared in a promotional shoot alongside other NFL partners. Anderson and the group posed for OFF SEASON, a clothing brand preparing to launch its Fall '26 collection. The mix-up drew attention on social media, highlighting the overlapping sports celebrity coverage that fueled the error.

0
ProgrammingDEV Community ·

15-Year-Old Nagpur Programmer Swaraj Featured in Local Paper for Early Coding Work

Nagpur Post published a feature on 23 May 2023 profiling Swaraj, a 15-year-old self-taught programmer from Nagpur. He had begun coding at age 11, learning through books, online platforms, and hands-on projects across languages including Python, Java, JavaScript, and C/C++. His early work spanned software tools, Android apps, websites, and games, with notable projects such as Productive Pay, a productivity tool for Python developers. The article also highlighted his participation in cyber, computer, and mathematics olympiads, as well as the National Children's Science Congress. Swaraj has since expanded into full-stack development, backend engineering, and developer infrastructure, and is currently building a project called LioranDB.

0
ProgrammingDEV Community ·

How to Safely Rename a Django App Without Breaking Migrations or Data

Renaming a Django application is more complex than it appears, especially when the app already has migrations and production data. Django uses the app name across migration history, content types, permissions, and database table names, making careless changes risky. The safest approach is to rename only the Python package directory while keeping the original app label in apps.py, which preserves Django's internal recognition of the application. This method avoids the need to manually alter the django_migrations or django_content_type tables. Going further to also change the Django app label itself requires careful handling of database tables, foreign keys, migration files, and third-party package references to avoid data inconsistencies.

0
WorldBBC World ·

Storm Shadow Missiles: How UK Weapons Could Shift the Balance in Ukraine

The United Kingdom has supplied Ukraine with Storm Shadow cruise missiles, a long-range precision weapon that could significantly impact the ongoing conflict with Russia. BBC correspondent Joe Inwood has analyzed the technical capabilities of the missile and its potential strategic value on the battlefield. Storm Shadow missiles are designed to strike heavily fortified targets at considerable distances, giving Ukraine the ability to hit Russian positions beyond front lines. Defense analysts have been assessing whether the weapon represents a meaningful shift in Ukraine's military capabilities. The development marks a notable escalation in Western military support for Ukraine since Russia's invasion began.

0
ProgrammingDEV Community ·

Teen Coder Swaraj Featured in Navarashtra for Programming Work at Age 15

On 23 May 2023, Marathi newspaper Navarashtra covered the early computing journey of 15-year-old Swaraj in its Chandrapur edition on Page 4. Swaraj had begun learning to code at age 11 and moved beyond tutorials to build software, Android apps, websites, games, and other programming projects. The article highlighted his work across multiple technologies including Python, Java, C/C++, JavaScript, and Node.js, as well as his participation in technology and academic competitions. The coverage captured a formative phase of his development as a young programmer in central Maharashtra.

0
ProgrammingDEV Community ·

Moq vs NSubstitute: A Practical Guide to Mocking in .NET Unit Tests

A detailed technical guide explores mocking frameworks in .NET, focusing on the two most widely used libraries — Moq and NSubstitute — and their contrasting design philosophies. The guide introduces the precise vocabulary of test doubles, distinguishing between dummies, stubs, spies, mocks, and fakes, each serving a different purpose in unit testing. Both libraries are compared side by side, covering core usage, argument matching, verifying interactions, and handling return sequences. The guide also addresses what can and cannot be mocked, auto-mocking containers, and common pitfalls developers encounter. Importantly, it highlights when heavy reliance on mocking signals genuine test isolation versus an underlying design problem that needs rethinking.

0
ProgrammingDEV Community ·

AI Takes Over Routine Coding Tasks, Freeing Developers for Strategic Work

Artificial intelligence is increasingly handling repetitive, low-complexity software engineering tasks — such as running tests, fixing syntax errors, and formatting code — that developers previously managed on autopilot. Drawing on the cognitive framework from Daniel Kahneman's 'Thinking, Fast and Slow,' engineers are categorizing these as 'fast decisions' suited for AI automation, versus 'slow decisions' like system architecture and API design that still require human judgment. By delegating routine workflow steps to AI coding agents, developers can reduce cognitive fragmentation and maintain deeper focus on strategic work. In a practical example, a developer building a payment service could let an AI agent handle background linting and test execution, eliminating the constant context-switching that disrupts complex problem-solving. The shift suggests AI's near-term role in software engineering is less about replacing developers and more about absorbing the mechanical layer of their daily workflow.

0
ProgrammingDEV Community ·

How the Geometry Layer Powers Precision in 3D CAD Applications

A 3D CAD application is built from multiple layers, with the geometry layer serving as the core engine responsible for representing precise shapes and performing modeling calculations. At its foundation, the geometry layer handles mathematical entities such as points, curves, and surfaces, supported by a geometric kernel. Beyond raw geometry, CAD systems rely on Boundary Representation (B-Rep) to capture how geometric elements connect, defining topology through vertices, edges, faces, and bodies. When users create engineering features like holes, the application layer stores design intent while the geometry layer translates that intent into solid modeling operations such as Boolean subtractions. A key architectural challenge is that topology can change with edits, requiring applications to manage persistent references to model entities across reconstructions.

← NewerPage 153 of 3205Older →