In my previous post I wrote about let keyword, in this post I would like to write about another new ECMAScript 6 keyword, const. There…
1 CommentTutorials / Programming tips Posts
In this tutorial I will introduce you to new ECMAScript 6 let keyword. Variables declared with let keyword behave like other languages variables. These variables…
Leave a CommentThe following tutorial describes how to delete files and directories that you no longer need in your application. Removing a single file in Ruby is…
2 CommentsTo perform where clause on comma separated string/values, MySQL has an inbuilt function called FIND_IN_SET which will search for values within a comma separated values.…
Leave a CommentChecking whether a file exists or not, is one of the most basic file-related tasks which you will do most of the time, and thankfully…
1 CommentTo create webpage screenshots we are going to use PhantomJs. PhantomJS is a headless WebKit scriptable with a JavaScript API. It has fast and native…
Leave a CommentLaravel provides pagination for Eloquent results out of the box, but for custom data, we need to do the pagination manually. In this tutorial, I’ll…
13 CommentsEach construct provides an easy way to iterate over arrays and hash. each loop will continue until it has gone through every item in the…
1 CommentI received a tutorial request from my reader that asked me how to access CI’s base URL inside the JavaScript/external JavaScript files. Editing base URL…
Leave a CommentLaravel5.3 is coming with following new features, 1. Rollback one migration 2. Blade Foreach Loops (new $loop variable) 3. Eloquent Collections are cleanly serialized and…
Leave a CommentIn this post I would like to provide basic usage steps and a list of some basic Git commands to get you going with Git.…
Leave a CommentSlim is a full-featured, open-source PHP micro framework that helps you quickly write simple yet powerful web applications and APIs. It comes with a sophisticated…
90 CommentsIn this tutorial, you will learn how to use MySQL IF function. MySQL IF function is one of the MySQL control flow functions that returns…
Leave a CommentYou can start,stop and restart Nginx web server by issuing any of the following commands from your terminal as a root user. Based on your…
Leave a CommentWe use append() method for adding elements dynamically into an already existing element. If you miss use this function, it will dramatically affects the performance…
Leave a Comment