Blogs
Visit Wordpress

Creating Installer for Laravel Project

Posted on July 10, 2017


When you are working on a laravel project there is some basic setup that needs to be done for each install of the project. Like Permissions for “bootstrap/cache”, “storage”, “vendor” folder composer install / composer update Copying .env.example to .env Key generation Migration & Seeding NPM install Instead of asking your user to do these […]


Read More

Laravel Queues With Supervisor

Posted on June 19, 2016


In this blog, we are going to take a look into Laravel Queues. Queues allow you to defer the processing of a time-consuming task, such as sending an e-mail, until a later time which drastically speeds up web requests to your application. For example, the sign-up page of your application. When the user fills in […]


Read More

Partials & Utils in Handlebars

Posted on May 18, 2015


PARTIALS Let’s say we have a structure like the following : data = { students : [{ name : ‘ABC’, roll : 1 }, { name : ‘DEF’, roll : 2 }, { name : ‘GHI’, roll : 3 }], subject : [{ name : “Programming in C”, credits : 4 }, { name : […]


Read More

Block Helpers [Built-in & Custom]

Posted on March 22, 2015


In the last post, we discussed blocks and contexts. We used {{#each}} in that post, known as “Each Block Helper“. So, what is a block helper? Block helpers make it possible to define custom iterators and other functionality that can invoke the passed block with a new context. [Handlebars Docs] Handlebars give us some built-in […]


Read More

Blocks & Contexts in Handlebars

Posted on January 12, 2015


A block in handlebars.js is same as any other language – it’s a section of code that is grouped and placed together. To start a block we have to prepend a “#“. => {{#Block}} To end a block we have to prepend a “/“. => {{#Block}} There are some pre-defined Block Helpers available in Handlebars. […]


Read More

Search

  Recent Tips

See All »

  Recent Seminars

  • PHP 8 - Features

    PHP 8 has been officially released in November 2020! This new major update brings many optimizations and powerful features to the language. This...

  • ProxySQL

    ProxySQL is a high-performance SQL proxy. ProxySQL runs as a daemon watched by a monitoring process. The process monitors the daemon and restarts i...

  • Unix Commands & Shell Scripts to help save our time

    Time is important. We should not waste it doing trivial things. Automate things wherever possible.

See All »