Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Loader in HTML

We can design a loader using HTML/CSS. In the below example the loader is designed using transition. Transition is used for animation in HTML. To see the transition effect we have to use to things:- 1. CSS effect which we want to apply. ...

Select distinct records using Linq

We often need to select distinct records from a list or from database. In Linq, we can select distinct records from a list or collection using Distinct method. Suppose we have a list with the name Employees and we want to select only Distinct ...

Cloud-based Knowledge Base Can Improve your Customer Experience

                  Customer support is a key selling point for many businesses around the globe. It is one of the best ways to ensure that the customer is going to come back to...

Uses of dragging and dropping elements in HTML5

Dragging and dropping can enable users to drag an object from one destination point and drop it to different location into the same webpage. This is a very instinctive way for users to interact with your webpage. Where we have to use Drag and ...

What's new in latest Android studio version 2.2?

New studio version 2.2 has many features that provide developers vast range of functionality.   1. Layout Editor  Drag and drop from widget palette ,new blue print of your layout,tools like auto correction. Properties panel ...

Reading text from a file and saving in the database in Ruby

As we know that in almost all web applications we need to amend such a functionality where you need to get the content from a file stored externally in your pc. lets say this content to be a simple text content. In these cases what we can do i...

What is overloading and overriding in php?

Overriding: When we inherit a class into another class and provide the definition for one of the function of parent class  inside the child class, then this function is overridden and this process is known as function overridding. Overr...

How to make Back to Top Button using Javascript

Making a good client experience on your website it is necessary to keep individuals on the page. The most ideal approach to make a decent client experience is to make it simple for users to utilize, if your website is hard to utilize it disturbs ...

Different Product Types in Magento

Hello Readers, In Magento, There are 6 different types of products available with the appropriate set of features required to sell the product. By Default product types in Magento are: Simple Products, Configurable Products, Grouped Produc...

Configuration and Authentication using OpenSSH key

Secure Shell (SSH) is a cryptographic network for operating network services securely over an unsecured network. A common example is for remote login into a system by an user.  Installation :  Generally it comes already ...

Accessing JSON object in JavaScript

JSON is used to read data from a web server, also it is used to display the data in a web page. In this blog we will be accessing the values of JSON object with the help of the jquery's getJSON() method. GetJSON() method is used to load the J...

jQuery wrap() and unwrap() method

Hello friends, Today we will discuss about the jQuery two methods: wrap() and unwrap(). Both method are used to wrap and unwrap a particular element. Let's discuss them in details: wrap(): wrap() method in jQuery is basically wrap ...

Insert Data in Acumatica ERP

Hi Friends, Today i will tell you to how to insert values in acumatica ERP. The Code below is used to insert data in the acumatica erp. Suppose i want to insert data into the EPApproval table. Here firstly i need to create instanc...

Trigger() method in jQuery

Trigger() method: It is used to trigger an event for selected element and also trigger default behaviour of an event for the selected html element. It works similar to the triggerHandler() method, but triggerHandler() does not trigger default ...

How to generate a random number in PHP?

Hello friends, Today we learn how to generate a random number in PHP. In PHP, following function are used to generate random numbers. rand(): rand() function is used to display a random number. Syntax: rand(); Or you can als...

Some general purpose SQL queries

Some general purpose SQL queries syntax   1) To get text of stored procedures, views and triggers   sp_helptext 'Object_Name'   2) To get all stored procedures of  a related database   Sele...

Deploy Local magento to live server

Steps to describe Local magento to live server ?       Copy all of your local files to server     Delete the content of the /var folder     Export magento database from localhost and ...

Print the html using a print button

There are many case which need the print out of the document that is being currently displayed. We can print the document easily just by using a button and a little javascript code. All you need is a html. Then the div or the part of the...

Node.js authentication with passport local

In node.js authentication and login could be a difficult task but there are some modules available in node that makes it easier for a node developer. One of them is Passport. Passport is a middleware that allows us to authenticate using username...

Introduction to Single Page Application System

A single page application is a web application designed approach that fits the data into a single page with the aim of providing compact coding, similar to the desktop application. It uses all the mordern browsers, html5 and ajax that helps in cr...

Progress loader plugin for Cordova / PhoneGap iOS apps.

Hello Readers, In today's blog we will talk about progress plugin in Cordova / phoneGap apps. It is a progress loader and there is no need to add any JavaScript library for this.   This plugin supports iOS platform. It should be...

How to get default properties of the given class in PHP?

Hello friends, Today we learn how to get the properties of a class in PHP. In PHP, get_class_vars() function is used to get all the default properties of a particular class. It will return the result in the form of associated array. The proper...

Use Collection View in swift

Hi, Step's required to use collectionView in Swift 1- Add collection View in your project 2- Set the delegate for collection view in controller 3- Collection view has a prototype cell, you can design accordingly you want. 4- Cr...

How to Design a Table using Div

Tables are the most powerful way to align elements in a proper/tabular way on a webpage. The concepts of table are very clear to designer, so it will be easier to create layout using table. But tables have many problem like a layout through ...

CSS3 Hover effect

CSS3 Hover effect makes possible several changes to the single elements by adding many features to it, for example It includes feature like transition, transform and animation. That will add new effect to the simple div. The :hover selector is us...

Top SEO Trends That Are Dominating 2016

  In 2016, some of the most well-known SEO strategies are even more crucial than before. In addition to some of the old methods becoming far more emphasized in various ways, there are brand-new changes on the horizon as well. Being aw...

opening activitiy with transition

In certain cases it is required to open the activity with transition like from left-to-right or top-to bottom or vice-versa. For this we have to create xml file that must be kept in "anim" folder. Regarding xml, we have 4 differen...

LESS- Mixin

Mixin in LESS are group of CSS properties which have similarities to functions in other programming languages. LESS mixins allow us to include all the properties of an existing class or ids into another by including the class/id name as its prope...

How to generate content on mouse hover without using javascript

Hello readers , today we will discuss about generating light weight and easy to use tooltip using css3. Tooltips are a great way to show user more information by simply hovering over an image, text or hyperlinks. They can be used to provide capti...

Jquery .map() method

Jquery .map( callback ) method is used to project the contents that is used in the array and then map this object with the new set of array, It is able to create a new array for calling every elements. It provides function once for each set of an...

FindNerd: A professional platform for enhanced Global and Local exposure

                With the passage of time, we have evolved immensely to manage our personal networks. Within our networks, different people play different roles. Sociologists use the word “inner ...

How to validate email address in HTML5?

HTML5 allows you to validate an HTML form field using a regular expression. The below HTML code validate an email address against a regex. <input type="email" name="email" required pattern="[^@]+@[^@]+.[a-zA-Z]{2,6}" />   Te...

How to convert query string to json object in javascript?

You need to parse an URL and return all the parameters from the URL, you can use the below javascript function:- var getURLParameters = function(url) { var result = {}; var searchIndex = url.indexOf("?"); if (searchIndex...

TypeError: variable "x" redeclares argument in javascript

If you redeclared a function parameter in the function block using a var. This is a naming conflict and javascript gives you a warning "TypeError: variable "x" redeclares argument" This warning occurs in strict mode only. I...

How to run a single mocha test?

When working in mocha, oftenly you don't want to run all the test cases. Mocha provides you the feature to specify which exactly you want to run. Running a single test file Using mocha-cli you can easily run a single. This can be accomp...

Parcelable Android Example

Parcelable is mechanism for passing data between Activities. Parcelable works same like serialization but It is faster then serialization. Here are the points to make class parcelable. 1. Create simple model class like below I created with ...

How to change category page layout ?

Hello Readers, This tutorial will guide you about "How to change category page layout ". There are different ways to change the category layout in Magento.   1. Change individual category page layout   Login to...

CSS3 Animation

An animation takes place when the style of an element changes. To use the animation by CSS3 we have to define some keyframes. These @keyframes will be having the styles of an element at particular time. For the CSS3 animation we need to speci...

Display content on the basis of drop down value selected without using id concept

Hello Reader! Usually, when we are asked to get the contents to be displayed as per the value selected from the drop down we use to get it done with the concept of id. Consider a scenario where the list contains more than 10 items, than generatin...

Concatenate two arrays in Java

Concatenate two arrays in Java is quite simple you can use single liner solution from the Apache Commons Lang library.   ArrayUtils.addAll(T[], T...) For example if you have two array firstArray and secondArray, you would have code ...

java.io.FileNotFoundException: the system cannot find the file specified

If you face following error: "java.io.FileNotFoundException: the system cannot find the file specified" and error similar to below is visible in logs: Exception in thread "main" java.io.FileNotFoundException: Report.PDF (The s...

Cordova plugin media - record and play back audio files on a device

Hello Readers, In today's post we will discuss about media plugin for Cordova apps. This plugin allows to record and play back audio files on a device. This plugin defines media constructor. We need to use this plugin with the device ready...

File Upload in Node.js

Form processing and file handling are very common and important part of any web application. Now with express, handling file uploads becomes very easy. So far we have seen and used req.body now we have req.files. req.files contains all the inform...

How to read folders in a folder in Joomla?

Hello friends, Today we will learn how to display all the folder within a folder in Joomla. In Joomla, folders() method is used to list all the folders within a folder. This function return an indexed array of the folders Syntax: JFold...

Top 13 Successful Business to Business Marketing Tips for Entrepreneurs

  There have been tons of articles on content marketing but what about marketing business to business? Today I have put together a list of successful marketing tips for business 2 business marketing that you can use to help to get the...

Time validation in 24 hours format using regular expression with javascript

In this blog we will learn to convert the time format as per requirement with the help of the regular expression.   Pattern of regular expression for time in 24-hour format:   1. Pattern 1: ( [01]?[0-9]|2[0-3] ) : [0-5][0-9]...

Adding Effects using queue() Method

Queue() method is used in jQuery to returns a number of animations to be performed on the elements in the jQuery object. This method is used for the continuous looping of a jquery element. It returns the effect which is used in the queue. While q...

VR in Unity3D

Hello Readers !!   Today we are going to discuss the most new topic i.e VR. VR is known as Virtual Reality. It quite interesting and simple thing. You must have seen VR box below:- If you want to create your game for this ext...

Screen shot plugin for Cordova / PhoneGap

Hello Readers, Today's post is about we can capture screen shots in our Cordova / phoneGap application. Well !  This Screenshot plugin provides the functionality that we can capture the screen shot of current screen and save it int...

An Overview to METRO UI

Hello readers , Today in my blog I will discuss a new technology introduced by Microsoft i.e METRO UI .   Introduction :- It is basically known as a Design language that is created by Microsoft for enhancing the user interface . ...
1 54 269
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: