Agile UX – Confitura 2013

I już po tego rocznej confiturze… Odpowiadając na liczne zapytania po prezentacji “Agile UX – czyli jak połączyć zwinność z używalnością” zamieszczam poniżej zestaw materiałów do których nawiązywałem w trakcie prezentacji. W załączniku do tego wpisu znajdziecie też slajdy z prezentacji. Obawiam się, że nagranie z prezentacji może nie być udostępnione ze względu na problemy techniczne :( Kilka przydatnych linków:

User Interface (UX) Techniques – Janne Jul Jensen
Dave Nicolette – My personal agile journey
Advanced Common Sense
Agile UX – slajdy z prezentacji

P.S. Dzięki wielkie za feedback!

You May Also Like

Visualizing GIS data in JavaFX 2.0 beta using GeoTools

Geographic data mostly comprises of polygon coordinates sets along with attributes, like country or city name, etc. This is quite easy to visualize in JavaFX, which supports rendering for SVG paths. In the article, I show how to read such GIS data from...Geographic data mostly comprises of polygon coordinates sets along with attributes, like country or city name, etc. This is quite easy to visualize in JavaFX, which supports rendering for SVG paths. In the article, I show how to read such GIS data from...

Writing JAXB in Groovy

Suppose you want write a jaxb class in groovy. Why? Because you do not have to write these all getters, setters and other methods. You only have to write your fields down.@XmlRootElement@HashCodeAndEquals@ToStringclass Person { String firstName String ...