Planning Poker Plus is a lightweight web app for agile teams that want faster, clearer estimation sessions without setup friction. It combines a simple board-and-card workflow with real-time updates, private voting, and shareable join options so teams can move from discussion to aligned estimates quickly.
Planning Poker Plus: Collaborative Agile Estimation in Minutes weiterlesenArchiv der Kategorie: General
Your favorite Java collection is slow!
A little history
Java collection framework is an object oriented framework for dealing with data vectors. It started with JDK 1.2 and is today is very popular. There are well-known Collection classes like
- ArrayList,
- LinkedList,
- TreeSet,
- HashSet,
- LinkedHashSet,
- ArrayDeque, a double-ended queue
- Vector which is older and not popular anymore because of the synchronisation penalty you’re paying for it.