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

45 valuable tips for developers in 45 minutes

Riga Dev Day
January 22, 2015
78

45 valuable tips for developers in 45 minutes

In this sessions Jan-Willem Eshuis takes you into a fast journey along 45 valuable tips for developers using real world practical examples. In his talk Jan-Willem covers topics like clean code, testing, deploying, hosting, infrastructure and service and support. After the 45 minutes of passion, humor and speed you'll remember at least a couple of tips to apply them in practice.

Riga Dev Day

January 22, 2015
Tweet

Transcript

  1. The actual tip Main subject 1/45 Tip X of X

    Main subject The actual tip Example Indicates example(s)
  2. Not bad Example Programming 10/45 int score = 10; char

    grade; if (score > 10) { grade = 'A'; } else { grade = 'B'; }
  3. Better;-) Example Programming 10/45 int score = 10; char grade

    = 'B'; if (score > 10) { grade = 'A'; }
  4. Example Programming 13/45 /** * This function make a copy

    of the source * file to the destination location * * @param string $source * @param string $destination */ public function copyFile($source, $destination) {
  5. Packages / Modules in PHP Packages in Java NPM or

    NodeJS Don’t invent the wheel! Modules / Packages Programming 18/45
  6. Choose the right database Database RDMS for structured data NoSQL

    for less structured data (or other specific situations) 33/45
  7. Use a search engine for search and not your database

    Database 35/45 For example Elasticsearch, Solr, Amazon Cloud Search