In this Tutorial, we implement the server application. This application should be able to monitor files and communicate with multiple…
Angular UI is a bunch of mini projects that helps you be more productive with your Angular app development. Downloading…
Imagine you’re building a simple stock ticker application. You have a server resource that publishes the APIs you need for…
All web apps will require more than one page or view, and Angular is well-equipped to handle this with its…
Flexbox addresses the shortfalls in each of the aforementioned display mechanisms. Here's a brief overview of its super powers: It…
angularjs provides an abstraction layer over URLs (and their behavior) in the form of the $location service. This service masks…
RESTful endpoints often expose CRUD operations that are accessible by calling different HTTP methods on a set of similar URLs.…
Web browsers enforce the same-origin security policy. This policy authorizes XHR interactions only with resources originating from the same source…
Doing XHR and JSONP calls using the $http service is straightforward. Let's consider an example of fetching JSON content with…
A test for a controller follows similar a pattern to the one for a service. Let's have a look at…
To make our application more elegant while working in cron, we should implement logging to a file. Symfony2 supports some…
It's quite open-ended as to where to register listeners for model events. One place is in the boot method within…
let's create a console command, which will be executed very often: $ php artisan make:consoleManageWaitinglist This will create…
Symfony2 provides a default mailer component called swiftmailer. Its default configuration looks like this: # app/config/config.yml # ... #…
When developing the JavaScript calls, developers can often face a problem with dynamically changing routing. Sometimes during the refactoring, some…
If we would like to not have the event handled immediately, but rather, put into the queue, we can…