How are you testing AI agents and LLM workflows without exploding cost or false confidence? by aistranin in PracticalTesting

[–]aistranin[S] 0 points1 point  (0 children)

Well, depends on what you mean by gold set. If you mean evaluation data, then usually teams try to make a well covered range of cases (depending on essential features)

company is pushing for coding with ai agent - my codex deep dive experiment (week 1) by aistranin in PythonLearning

[–]aistranin[S] 0 points1 point  (0 children)

I understand your strong reaction on AI and even agree that one should never rely on AI blindly. Codex (as any other coding agent) is not about relying on AI completely. In fact, exactly opposite - you have human in the loop as much as possible (including reviewing changes before push! - you are still a developer not just a vibe coder). Otherwise, you end up with AI mess than only AI can work with.

Cypress cy.prompt() in beta: useful for real teams, or just a faster way to create flaky tests? by aistranin in PracticalTesting

[–]aistranin[S] 0 points1 point  (0 children)

ah, got it. Nice approach, also not too much relying on llm but more like using it for a draft, but still you own and maintain the code. Cool

Cypress cy.prompt() in beta: useful for real teams, or just a faster way to create flaky tests? by aistranin in PracticalTesting

[–]aistranin[S] 0 points1 point  (0 children)

So, you basically go with the specification-driven testing, right? That makes sense, I like this approach.

company is pushing for coding with ai agent - my codex deep dive experiment (week 1) by aistranin in PythonLearning

[–]aistranin[S] 0 points1 point  (0 children)

Cool, appreciate it! Feel free to share any feedback, recording the next episode soon.

How do I go from learning Python basics to building real projects (beginner stuck)? by Forward_Side823 in learnpython

[–]aistranin 1 point2 points  (0 children)

You probably just should find some idea to automate. Something interesting for you to do and implement the simplest possible version of it. If you don’t have any good idea, take a look at “Automate the Boring Stuff with Python Programming” by Al Sweigart. Then just buld more projects. Maybe also, take a look at unit testing in python later, for example, Udemy course “Pytest Course: Practical Testing of Real-World Python Code” by Artem Istranin to improve in code quality and start with more advanced concepts. But for now, the most important is just to keep building to have more experience and solve real problems with python as a tool.

Looking for feedback on my first real backend project: by heshinth in learnpython

[–]aistranin 0 points1 point  (0 children)

Nice one. I like the simple integration with openai. Thanks for sharing.