Monthly Archives: February 2016

Feb16

Tagged in:Comments:

Angular2 ngFor skip first index

Permanent Link to Angular2 ngFor skip first index

Simply use angular2 pipe slice by appending at the end of array. <li *ngFor=”#user of users | slice:1″> {{ user.name }} is {{ user.age }} years old. </li>

Feb02

Tagged in:, , , , , Comments:

Symfony 3 should I upgrade or stay with Symfony 2

Permanent Link to Symfony 3 should I upgrade or stay with Symfony 2

Everyone is excited about Symfony 3, including myself 🙂 Symfony 3 or Symfony 2? Symfony 2.8 is exactly same as Symfony 3. But wait, then what’s the difference? Symfony 3 mostly have new directory structure for logs, cache and console. Also all the previous deprecated functions are removed. Should I upgrade then, if its same? […]

Back to top