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, 8 months ago Modified 8 years, 5 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. 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...

  6. What does it mean to "triage an issue" in programming?

    Mar 21, 2018 · What is your question? Do you want to know what "triage" means in computer programming or do you want to know what the person meant with that sentence? You already …

  7. 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 …

  8. 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 …

  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. C# List vs Dictionary cost vs benefit with complex keys

    Oct 7, 2024 · I am designing a program and I am looking to decide over a Dictionary vs a List. Since I know I have unique values per item I imagined a Dictionary/List that looks like: Dictionary<(int k1, …