PDF documents are often used because they help preserve the original content/format of the document, but this can make splitting the file up a little more difficult than other document formats. If you have Adobe Acrobat, you can use the built-in Split Document function to split it up.There are several solutions to achieve the splitting […]
Programming
How to Enable Clutter-Free Reading in Google Chrome.
Some websites will be very cluttered with ads, promotions and other marketing materials, scatters all over the page. Since it makes reading hard, and you forget the reason you came to a blog post. That’s why you have Mercury Reader, is a browser extension that cleans up your reading experience in Chrome. Mercury is a […]
Basic Flow Chart Plugin With jQuery And Bootstrap – simple-flow
A basic, lightweight flow chart module which uses grid system to create a minimal, responsive workflow with SVG put together association lines and and arrows on the web page.
How To Send WordPress Email Using SMTP Server
Today’s article we are showing how to send WordPress emails using SMTP server. Everybody knows that emails are very essential for any application on Internet. While using WordPress as your blogging platform, you must have faced issues with email delivery. Sometimes emails are delivering and sometimes they are not. What is the solution for this?. […]
How to Read Text from Image in PHP
Did you ever think of reading text from image in PHP. Yes you can!. There are chances you may encounter this situation of reading the text from image in your web applications. So today’s tutorial we will demonstrate how to read the text from image in PHP. We will use the Tesseract Open Source OCR […]
How To Install And Use CKEditor In Laravel?
Today’s tutorial, we will show you how to use CKeditor in Laravel. CKEditor is a WYSIWYG HTML editor which allows us to write rich text formats. We can have HTML elements in the textarea, but it doesn’t have formatting options. Updating this HTML in textarea needs expertise in HTML/CSS. That’s why we have CKeditor, which […]
How to set and get config item value in Codeigniter?
In today’s tutorial we will see how can set and get a config value in Codeigniter. Codeignter is a very flexible framework with a lot of options to build a complete website. Basically, the Config class provides a means to retrieve configuration preferences. We don’t use Config class directly in our application as we have […]
PhotoSwipe: Responsive JavaScript Image Gallery
Description: PhotoSwipe is pure JavaScript gallery for mobile and desktop which works without jQuery, and supports touch gesterures, browser history API etc.
Ajax Infinite Scroll Pagination in Codeigniter
Today’s tutorial, we are going to learn ajax infinite scroll pagination in Codeigniter. These days many websites load more data while scrolling the page and it is achieving without loading the entire page again. As you know already, conventional pagination works when user clicks on the page number listed on the bottom or top of […]
How to Get a List of Attribute Options From Attribute Code in Magento 1
When we build custom modules in Magento 1, sometimes we need to get all the attribute options for catalog attribute. This article illustrates how to fetch attribute options using attribute code in Magento 1.
MySQL vs MySQLi in PHP
MySQL and MySQli are APIs to connect a MySQL database server in PHP. Each has it’s advantages and disadvantages. Note: By now MySQL extension is deprecated and it is not safe to use in future applications. It will be there for sometime for backward compatibility. MySQL Original extension designed to allow you to interact PHP […]
A Simple YouTube Video Downloader Script in PHP
YouTube is the most popular video sharing platform in the world. It helps users to upload, view, and share videos that keeps community guidelines. Tons of people selected YouTube video making as full job, as they create and upload videos and getting revenue from YouTube Adsense( Google Adsense). But, YouTube lacks one important feature, direct […]
How to upload Image in Codeigniter- With Example
Since you work with content management systems, you might have encountered with image/file upload several times. This is a very essential feature as you want to upload user avatars, product images, etc. Today’s tutorial we illustrate how to upload an image in Codeigniter with the support of examples. To demonstrate this upload function, we will […]
How to install LAMP with PHP 5.6 on Ubuntu 16.04
Installs LAMP with PHP 5.6 on Ubuntu 16.04
autoComplete.js- Simple Pure Vanilla Javascript Autocomplete
Description: autoComplete.js is a simple pure vanilla Javascript library that’s designed for speed, high versatility and seamless integration with a wide range of projects & systems, made for users and developers in mind. Features Pure Vanilla Javascript Zero Dependencies Simple & Easy to use Extremely Lightweight Blazing Fast Versatile Hackable & highly customizable Installation: Load […]
Pure JavaScript Calendar Library – jsCalendar
Description: jsCalendar is a standalone pure JavaScript library which we can use to create customizable inline calendars on any web page.
Nice Date Picker- minimal Date picker
Description: Nice Date Picker- with support for date ranges and no jquery dependency, easy styling and in pure javascript too.
How to Recursively counting files in a Linux directory
Since we work in Linux Operating system, often we need to see how many files inside a folder. Following is the command to count the files in a directory. find DIR_NAME -type f | wc -l More Details -type f to include only files. | (and not ¦) redirects find command’s standard output to wc command’s standard input. wc (short for word count) […]
A Simple Javascript Calendar Class
Description: A simple javascript calendar is vanilla js calendar for those who tired of using jQuery Calendar.
Use Mpdf in Codeigniter 3
Today’s post shows how to use the mPDF– pdf generation library- in Codeigniter. Since we use PDF docs in all walks of life, it is necessary to generate in all kinds of web apps. So we selected integrating mPDF to Codeigniter as today’s topic and will go through step by step.
Datepickk.js- Simple, beautiful and powerful date picker
Description: A simple, beautiful and powerful date picker is vanilla js calendar for those who tired of using jQuery Calendar.
Calendarize.js – Simplest JavaScript Calendar
Description: Calendarize is a thin, simple JavaScript implementation of a customizable yearly calendar for your web applications.
How to create a shortcode to display the WordPress site url?
Shortcodes are very useful when a content writer writes the content in the WordPress blog. It saves a lot of time by adding a shortcode instead of repeatedly typing the same chunk of data. We can use this shortcode to replace our WordPress site’s URL. As a result, the site URL automatically changes when we […]
A Simple Responsive Pure HTML, CSS and JS Calandar
Description: A simple responsive pure HTML, CSS and JS Calendar will work without jQuery.
Top 7 Free Magento 2 Extensions
Hundreds and thousands of free Magento 2 extensions are available in the E-commerce market. Moreover, you can not distinguish which is the best free extension for your website. The main advantages of free extension that you know are free to use and easy to find on Github. You may wonder the difference between the free […]
How to install fail2ban on Ubuntu Server 18.04
Fail2ban is an intrusion detection system, which protects your ubuntu server against vulnerabilities. What fail2ban does is it blocks the IP addresses that try to do brute force attack and it saves the attacking IP to an IP table for future reference. Here is how we install and configure fail2ban The issue below commands before […]
Create customer attribute in Magento 1
This tutorial will guide you through the steps to create a custom customer attribute in Magento 1. My use case was to save a mobile application token against the user for further authentication.
Remove Grammarly from Microsoft Office
Everyone must have used Grammarly one time or another. It’s been there for a while correcting your grammar and spelling mistakes, while you writing on Microsoft Word or Microsoft Outlook. Here we are talking about how to remove this extension from Microsoft Office. You can uninstall Grammarly for Microsoft by going to the Control Panel. […]
Node.js – MySQL INSERT Record Example
This tutorial demonstrates how to insert a record into MySQL database using NodeJs. This step by step guide includes init of node js, importing MySQL module and finally insert two records to the database. Open the console and create a folder called db_basic. And run the following command in the console. npm init This will […]
How to Select Last 7 Days Records in MySql
If you want to pull records for the last 7 days, you may use the following query. SELECT * FROM sales_flat_order WHERE created_at >= (DATE(NOW()) – INTERVAL 7 DAY) ORDER BY created_at DESC