Diana Robin

Diana Robin

Video Games Talent Finder

About

I have always enjoyed mixing with people from different backgrounds and cultures. Besides my love for playing that’s the reason why I decided to work in the game industry as a Localization Tester. As a Project Manager, I got to understand why finding the right job for the right person, and vice versa, is so important. Now I can combine both my interests, for games and people, working as a Talent Finder at 0to1-Solutions. My aim is to find talented professionals like you, who are looking for a change and do not want to miss the opportunities that life offers them. I am here to try to understand your expectations, your goals and your dreams.

Badges

Tastemaker
Tastemaker
Gone streaking
Gone streaking

Forums

16h ago

git is quietly doing half the risk management

Think about what an agent session actually risks. It edits files in a working tree. If that tree was clean when it started, the entire session's damage is one diff you can read and one reset you can throw away. Branches cost almost nothing, so every task can live on its own one, and merging stays a human decision made after reading the evidence.

Underneath that sits the layer most people only meet in a crisis: the reflog. Every commit, reset, rebase, and branch move leaves an entry, kept for 90 days by default even when nothing points at it anymore. For a month or three, almost nothing an agent does to your history with everyday commands is actually gone.

We once had to defeat this on purpose: a clean-room experiment required one commit to be truly unfindable. Deleting it took five deliberate steps remove the remote, delete branches and tags, expire the reflog, garbage-collect, verify. Five steps to lose one commit. That's the strongest endorsement of a safety net we know how to write.

If your AI agent fails silently, who finds out first?

Imagine an AI agent responsible for routing inbound leads. Nothing crashes. No alerts fire. The workflow keeps running exactly as expected.

The problem is that the agent has slowly started sending high-value leads to the wrong queue. Maybe a few customer issues are being summarized inaccurately. Maybe records are being updated with small mistakes that seem harmless on their own. Each individual error is easy to miss. Over time, though, the impact starts to compound.

Those are the AI failures that interest me most because they rarely look like failures at first. There is no outage, no red warning message, and no obvious signal that something is wrong. The workflow continues operating, but the quality of the outcomes quietly drifts away from what the team intended.

That makes detection a different challenge altogether. It's less about system uptime and more about observation. Are there feedback loops? Quality checks? Escalation paths? Can someone spot a pattern before customers, revenue, or operations start feeling the effects?

Your phone says it's online. That does not mean the app can actually reach the internet.

Wired up a connectivity check on a health app I am building and hit a gap that felt obvious once I saw it. The OS reports "connected to wifi" the moment it associates with an access point, before DNS or the actual gateway path is confirmed. So a captive portal at an airport, a hotel router with no WAN, a home router that lost its upstream link, all read as online while every real request quietly times out.

Ended up not trusting the OS flag at all. The check now does a real DNS lookup against a known host with a short timeout before marking anything online, and only flips the app into offline mode once that actually fails. Adds a few hundred milliseconds to every check, worth it for not showing a broken screen while telling the user everything is fine.

View more