Category: Others (Technical)
What is TypeScript, its advantages and some examples
What is TypeScript? TypeScript is a strict syntactical superset of JavaScript and adds optional static typing to the Javascript language.It is pure object oriented with classes, interfaces and statically typed like C# or Java. It is designed for the development
WordPress Custom Post Type
WordPress Custom Post Type In WordPress every single content is generally called a post, even post is also a post type in wordpress. There are many predefined post types like post, page, attachment and many more. We can also create
How to use Bootstrap pagination
How to use Bootstrap pagination Steps to use Bootstrap pagination: 1. Create a simple html file. 2. Include bootstrap css and js CDN link in html file. Example : <!doctype html> <html lang=”en”> <head> <!– Required meta tags –> <meta
Some important features in Laravel Framework
Some important features in Laravel Framework 1. Artisan: Artisan is a command-line interface tool which is provided by laravel. By using this tool, users can create database structure. It is also used for creating the MVC files right away which
Drag and Drop in Jquery UI
Drag and Drop in Jquery UI Problem: Jquery UI provides APIs to make DOM elements draggable and droppable. We can do some things out of the box by using its APIs. I have written a Jquery code below in which
Steps to configure Selenium webdriver in Eclipse
Before we download and install selenium webdriver and eclipse, we need java which is prerequisite that must be installed in our system. Following activities need to be performed during configuration: 1. Steps for configuration of eclipse IDE: 1.1. Go to
Create Salesforce Custom Object Using Apex Code
Salesforce custom object using apex code There are two ways of creating a custom object and its related fields in Salesforce. The first and the easiest way is to go to the Objects link beneath Create tab, click on the new
How To Install WordPress On Windows
Installation Process of WordPress on Windows We need WAMP or XAMPP to setup our own local server environment and install WordPress on Windows. Here we will discuss how to install with xampp assuming that xampp is already installed on the
Allow the Cross Origin Request (CORS)
Cross Origin issue is resolved by adding header(“Access-Control-Allow-Origin: http://yoursite.com”); to allow the particular origin or we can also allow all the origin by replacing the path to *. For Cake php header is defined in file public/index.php. Code: header(“Access-Control-Allow-Origin: http://yoursite.com”);