Symfony logo

Update Symfony Installer to latest version in Ubuntu Linux

So here I was trying to create symfony 5 project but somehow as things weren’t working as per documentation. I ran command ‘symfony check:requirements’ to see if my system fulfills all requirements for latest version of symfony, but this is what i received: I was on version 1.5.11 of symfony binary, which apparently was the

Update Symfony Installer to latest version in Ubuntu Linux Read More »

How to combine Angular4 and Slim Framework applications into one application for production

This tutorial helps to get any anular4 application into the production with the PHP or any other kind of server side technology, in this one we use the slimframework but the concept remains the same with other server side technologies. Assumptions: This tutorial assumes that you are already familiar with Angular2 or Angular4 and also

How to combine Angular4 and Slim Framework applications into one application for production Read More »

How to change default value printing symbols in Angular JS ?

This tutorial is brief and easy way to change the default Angular JS value printing symbols ‘{{‘ and ‘}}’ into something else. This tutorial is very short one, recently while working on a Symfony project along with Angular JS we had a small little problem, as the twig in symfony uses ‘{{‘, ‘}}’ and so

How to change default value printing symbols in Angular JS ? Read More »

Using HTML5 web storage features(localStorage and sessionStorage)

Cookies are the old friends of web developer as they allow a lot of flexiblity due to the local storage of data, but with HTML5 we get two new client side storage features. localStorage and sessionStorage are two new HTML5 features, these allow the storage of data on the client end with allowing flexiblity of

Using HTML5 web storage features(localStorage and sessionStorage) Read More »