Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Growing as a Developer - SEConf 2015 Kyiv

Sponsored · Ship Features Fearlessly Turn features on and off without deploys. Used by thousands of Ruby developers.

Growing as a Developer - SEConf 2015 Kyiv

how to be a better developer without being overwhelmed with all new hot technologies that come up everyday

More Decks by Андрей Листочкин (Andrey Listochkin)

Other Decks in Programming

Transcript

  1. Sublime Text vs Atom Angular vs React Storm vs Spark

    Chef vs Ansible Rust vs Go AWS vs DO
  2. fn max<T: Ord>(v1: T, v2: T) -> T { if

    v2 >= v1 { v2 } else { v1 } }
  3. fn gcd(m: i32, n: i32) -> i32 { if m

    == 0 { n.abs() } else { gcd(n % m, m) } }
  4. A*

  5. MVC

  6. OOP