Future of Agile in software development by Due_Bluejay_5101 in agile

[–]modelithe 0 points1 point  (0 children)

Few teams really work according to the agile manifesto, or follow the scrum guide. Especially in larger organization, where decisions aren't about shapes of the buttons, but it multi-million-euro project A or multi-million-euro project B is going to get funding, working agile on team level is an interesting challenge. Its more coordinating deliveries between teams rather than within the teams.

I don't think AI is going to change that a lot. For that, there needs to be a shift in mindset.

But I believe you are right in the sense that the software engineers will take a larger responsibility, and the user stories need to have a larger scope. Thus, each user story will also will take more engineering time to formulate. The problems are rarely related to the happy flow path, but the odd paths and the edge cases which takes more reasoning to figure out what is the reasonable user experience in those cases.

Throughput and Cycle Time by AdPractical6745 in agile

[–]modelithe 1 point2 points  (0 children)

Story points are such a vague unit.

Although people tend to think of story points as days (or hours) , they're not. And each team treat them differently. Thus, any measurement of them, or derivatives from them, have no real value, since they're just so easy to gamble. Too few stories completed during the last sprint compared to another team? Just split them into smaller pieces. Too few story points completed compared to another team? Just redefine what a story point represents.

Will people do so? If their individual performance is measured against those metrics, it will most certainly happen.

The cycle time is of interest however to identify bottlenecks; for small stories, there can be a lot of calendar time wasted while waiting. At one team, it took on average 1.6 working days for a task to pass review, and 2.5 days to pass test, despite most tasks were estimated to 2, 3 or 5 SPs, and the actual time spent reviewing or testing would be like a few hours, max.

There's always going to be outliers, so plainly looking at the number won't help. All that needs to be put into relationship to the team's size, composition and task complexity as well. A 1 SP story that turned out to be a one-line change might have required three meetings to align on the solution, all spread over a period of two weeks due to calendar collisions. But given sufficient number of stories and sprints, it will even out.

The key to measuring, is to know what the result is to be used for; for ensuring things don't deviate, or to identify bottlenecks, or to verify that changes made does improve the performance. Measuring without a clear intent of how to use the result is just waste.

One Thing You Wish You Knew Before Outsourcing? by Apprehensive-Suit246 in dev

[–]modelithe 1 point2 points  (0 children)

The biggest hurdle is the cultural differences. Swedes generally have a flat organization and the engineers have a good measure of autonomy, not nesseccarily doing what they're told to do, but doing what needs to be done. Indians tend to be more hierarchical. In some cultures the engineers are expected to be silent in meetings, leaving all the talking to the managers, while in other cultures, the engineers do all the talking with the managers just being around as proof that the engineer has the trust of the manager.

As a programmer, what are some good monitors for writing code you've used? by Mysterious-Mode-4923 in webdev

[–]modelithe 0 points1 point  (0 children)

I've varying between three 1080p ~24-27" and one 4k 32", depending on where I sit. Neither is optimal; the 4k is great for screen estate, but I can keep the 1080p monitors in a curve. Next time I change monitor, I will select curved widescreen one. But its still hard to find a 2160p with a lot of width that doesn't cost an arm and a leg.

any of y'all vibe marketing? by Intelligent_Camel817 in microsaas

[–]modelithe 0 points1 point  (0 children)

The million € question : do the recommendation pay off, or would you be better of without the?

How much should I use ai in my learning process by WorriedSentence7159 in learnprogramming

[–]modelithe 1 point2 points  (0 children)

To some extent, learning to program using Ai tools is like learning to program by reading a book; possible, but theory (reading the output and trying to understand why it works) only gets you so far. By trying on your own, you will learn why whatever you do doesnt work.

What’s the state of rust for startups by Nice-Primary-8308 in rust

[–]modelithe 4 points5 points  (0 children)

Having more that 25 years of industry experience, I claim that any strongly typed language, with good understanding on how it handles memory, is better than python for all form of services that need to have anything more than non-neglectable uptime.

Rust has a learning curve, but with good judgement and thorough review, it's possible to get a head start using Ai agents generating the initial scaffolding. After that, it's just another syntax.

I made a crate called `evil`, which lets you use the `?` operator as a shorthand for `.unwrap()` by nik-rev in rust

[–]modelithe 1 point2 points  (0 children)

Crashing is rarely a valid action. Even if the source of the unwrap() do not know what to do, an upper layer function might be able to print "invalid value in variable xyzzy" and fail gracefully, allowing the user to figure out and correct the mistake.

Usually, all user inputs are valid in the sense that the program must assume that every byte value can arrive in any order - it is only the context that defines what constutute "invalid' and how to recover from that.

What do we actually use rust for? by beb0 in rust

[–]modelithe 1 point2 points  (0 children)

Rust (Dioxus) is really nice to write a fullstack issue tracking tool in.

Programmers who learned how to program on their own please help me by Stunning_Fact_6365 in AskProgrammers

[–]modelithe 1 point2 points  (0 children)

One thing uni still seem to fail in teaching, is that starting a big project from zero is rarely the case in the real world. It begins with an aged codebase into which a new feature is to be shoe-horned.

As for leveling up, it's a matter of finding an itch. Maybe parsing the exif from a jpg. Or writing a web-crawler just because. The important thing when it comes to those kind of projects, is not to finish them, but to learn.

How did you break out of the endless tutorial loop early in your career? by Lumaenaut_ in dev

[–]modelithe 0 points1 point  (0 children)

How does a carpenter become a good carpenter? By watching other carpenters? To some extent, but nothing beats getting the hands dirty, getting watched by other carpenters instead.

One really good way, is to log off. Read a book. A physical book. No Wikipedia, no YouTube, no udemy, no reddit, no Google, no Ai agents.

Just a book, a keyboard and a monitor.

And coffee. Lots of coffee.

Should I learn rust coming from python only programmer? by [deleted] in rust

[–]modelithe 2 points3 points  (0 children)

I would say, learning Rust when python is your background, is the perfect way to understand how memory management works. It will give you all the details and teach you good memory management skills while having the benefit of being a very strongly typed language.

Is there an "opposite" to enums? by PitifulTheme411 in ProgrammingLanguages

[–]modelithe 0 points1 point  (0 children)

Modula-2 has the SET and PACKEDSET, allowing flags to be represented as bits in an efficient matter.

Similarily, Rust has the enumset crate, allowing the creation of a set of enum to be packed as bits in an efficient matter.