About 50 results
Open links in new tab
  1. What is "swarming"? - Software Engineering Stack Exchange

    Swarming, in its simplest form, means that teams work collaboratively on items (stories) and work them to completion. The core concept is to "quit starting, and start finishing". In other words, instead of …

  2. agile - Scrum and swarming non-parallelizable tasks - Software ...

    Jun 15, 2016 · Scrum and swarming non-parallelizable tasks Ask Question Asked 9 years, 9 months ago Modified 8 years, 6 months ago

  3. How dangerous is storing sensitive information in LocalStorage?

    Nov 5, 2025 · Since I started studying security in web applications, it seems that everyone always says to never store sensitive information (e.g., refresh tokens, access tokens, and so on) due to the risk of …

  4. Branching strategy for multiple team working on same repository

    Mar 15, 2023 · I am trying to come up with a branching strategy. We have two teams working on the same product which is kept in one repository. Both teams have different release plans and if both …

  5. What JSON structure to use for key value pairs?

    Your problem is description is broad enough to say that any of those formats will work, and the real question is how to make it simpler to consume, which depends on what technologies clients use.

  6. Working with static constructor in Java

    Feb 8, 2014 · I didn't get a complete understanding of static constructors in Java. If it is allowed, why it is allowed? In what scenarios would you use it? What purpose would it serve? Can someone give me a …

  7. multithreading - How can single thread execution speed further …

    Sep 5, 2024 · What are things that newer CPU can do to speed up single thread execution? multiple registers? (can compilers always benefit from it?) SIMD? (do compilers use SIMD without code …

  8. Split single repository/service into pieces in clean architecture ...

    Mar 13, 2025 · I'm curious to know your opinion on how to organize code in services and repositories in the context of a three-layer architecture (controllers - services - repositories). Let's say there is a User...

  9. What problem does Rust's "atomic reference count" actually solve?

    Feb 16, 2024 · The Rust programming language offers a Arc atomic reference counting generic type for use in multi-threading environment, since Rc is optimized for performance in single-threaded …

  10. Why use string.Empty over "" when assigning to a string object

    Mar 7, 2018 · I've been running StyleCop over my code and one of the recommendations SA1122 is to use string.Empty rather than "" when assigning an empty string to a value. My question is why is this …