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

Ubuntu: Changing Permissions At Command Prompt

Changing Permissions At Command Prompt   This is accomplished by using the "chmod" command. The chmod is followed by a 3 digit number used to indicate the permissions required. The first 3 digit indicated the owner's perm...

How to create file using cat in Ubuntu?

Hello friends, I am writing this blog which will let you know how to create a file using cat command. Using cat to create a file cat is useful for creating a file. Enter the command cat, followed by the > (the right chevron) character an...

AngularJs Directive to show clock.

Hi All, In this post we will discuss about to build clock using AngularJs. Angularjs provides a directive to build clock face and digital clock. This clock is responsive and auto updated when we change the data. To use this directive we need to ...

Angular 2 vs Angular 1

As in my previous post I have already explained that AngularJS1 is a javascript library which is prefect for single page application(SAPs). Angular js is nothing just a javascript library which extends HTML with new markups. Single page applicati...

How to Run Whatsapp on PC Without Bluestack

In 2009, WhatsApp was founded by two Yahoo! Former employees, Brian Acton and Jan Koum. Since then, there was no looking back for them. Whatsapp added 1 million users every day, and now Whatsapp has around 450 millions users, which indeed a large...

How to Build an SEO Friendly Website from Scratch

Building an SEO friendly Website is not a tough ask. But, we have to be a street smart player for this game of SEO web site creation. If you are already here through organic search, then this is a clear evidence that the web page has complied to ...

Car Controller Script

Here is the car controller script, just add this script to the car object and for values you can view the attached screenshots. This script contains the normal code for car controller, In this code the car object is just simply moving accordin...

How to align an elements center horizontally and vertically?

If you want to align your text to be centered inside the box from both side (horizontally and vertically) you can do this very easily, this below example will helps you. Html:   <div class="contentbox"> <p>This is ...

Basic Type of Error in Software

An error cause the correct behavior of software and affect the accuracy. It affect the expected result of application which might because of incorrect requirements implementation or because of invalid data entry by user. Basic Type of errors :...

How to create PDF report for account module in Odoo-9?

In Odoo-9 first we install the accounting module and then create new module and inherits the account.invoice object in account module to own your module and give type is pdf in module. Follow these step show below: Step1:- First we create n...

Events to use with InAppBrowser plugin: Phonegap

In this post, you will see the events that can be used in InAppBrowser plugin. There are different methods: addEventListener removeEventListener close show executeScript insertCSS InAppBrowser.addEventListener: It will add ...

Ionic Framework - $ionicActionSheet service in ionic module

Hello Readers, In this post we will discuss about $ionicActionSheet service. It is a slide-up pane with various options as per requirement.There are easy way we can close this slide-up pane by hitting Cancel button on it or in desktop escape k...

Data table Server-side processing using Cakephp

In cakePhp if have an extensive database which contain a huge number of record so you can apply the datatables server side processing there. By applying the datatable server side processing you are furnished with pagination highlight in which it ...

Best practices Asp.net MVC

There are several points which we have to keep in mind while developing Asp.Net MVC application. Some of them are given below:   1. Remove unnecessary references- When we create a project there are many references which are added au...

How to use inappbrowser plugin in your application

In this post, you will learn about the cordova-plugin-inappbrowser which provides a web view to display in your application. Installing the plugin: cordova plugin add cordova-plugin-inappbrowser Initializing plugin: When cordova.InApp...

Spellcheck Attribute in HTML5

Hello, reader's Today we will discuss about the HTML5 attributes. Basically attributes are used to define some additional information about the HTML elements. As there are various global and standard attributes used in HTML5. Here , we wil...

Use of const keyword with pointers

//============= A simple program to demonstrate the use of "const" keyword with pointers================== /* * By => Bipin Gosain * Date => 17/4/2016 */ #include <iostream> int main(){ using std:: endl; ...

How to get the Connection String from App.config

To get the connection String from App.config, we will proceed as follows:-   1. First we need to add the connection string in App.config file.   Example: <configuration>    <connectionStrings&g...

DateTime To string format

In C#, we use a method DateTime.ToString(string) to get the value of a DateTime in specific pattern of string.   Syntax:- public string ToString( string format )   It accepts one parameter "format" which specifi...

JQuery Slider For Rails

JQuery Slider For Rails As we know these days in almost all applications there are image sliders which keep rotating and displaying images one by one like a slide show. To integrate the same functionality there is a gem which we can use to ...

Handling dropdown in Capybara

Handling dropdown is very easy in Capybara. Here we do not have to create the object of Select class and the select option through Select class object. We directly have to pass the option value which is to be selected to the desired location. ...

Clicking on links or buttons using Capybara

Capybara provides some methods to navigate the application through links or buttons:   Click_link_or_button Click_link Click_on   Capybara do not uses the fixed strategy to locate elements. It uses its own “best ...

Use of Streams in NodeJs

Streams are objects, which are use to read/write operation from or to a file. There are four types of streams. Readable -  used for read file. Writable -used for write file. Duplex - used for both read and write a file. Transform &n...

Cordova - Social Sharing Plugin

Hi All, In this post we will discuss about Cordova social sharing plugin. Now adding social media in your app become easy with this plugin.You can share text, images or a Url via this plugin. About this plugin: This plugin use native ...

Backreferences and Boundary Matchers Of Regular Expression

A backslash (\) followed by a digit indicates that the defined groups to be recalled is known as backreferences. For example the defined capturing group (\D\D) matching two consecutive non-digits which can be recalled with added ‘\1’ ...

Manage Users in PIM

Hello Today's blog post details out about Administration in PIM. It highlights the aspects of managing users and steps to carry out the same.   User management is generally carried out as part of the administration. A permission...

How to Get Top Google Rank for Multiple Targeted Keywords?

  Being an SEO professional, you may face some situations when you are asked by your Boss to get top rank for highly competitive multiple keywords say 8 to 10 on Google for a single landing page. This situation is a bit challenging to...

How to show google maps inside bootstrap tabs

Whenever, we want to show google map inside bootstrap tab, it works fine as far as it is needed to be shown inside the tab which is set "active" by default, usually first tab is set active and its content is shown visible by default. ...

How to functional field is replaced by computed field Odoo-8?

In Odoo-8 first, we create the own module and then create fields and make these fields a functional fields. Ones we create functional fields after this the functional field is replaced by computed field. Like, first create a computed field and...

Side MenuBar in iOS

  Side MenuBar or menu list is used to provide a list to the user so that user can easily move to those pages according to the need. Here is an example of including menubar in the application with the help of a superclass REFrostedViewCot...

Callbacks in Node.js

Node.js depend on the asynchronous code to do the execution fast so having dependable callbacks is very crucial. Callback functions is called at the completion of any task. In node, code is dependent on callback, so that every thing execute fast....

Structural Semantic Elements in HTML5

Hello readers, Today we will discuss about the Structural Semantic Elements that are used in HTML5. Introduction of HTML5 HTML5 is basically a latest and an enhanced version of HTML. HTML5 has various new features including new elem...

Create amazing charts and graphs with angular-fusion-charts

In this post, you will learn how to use fusion charts and graphs in angular. There is a plugin for using fusion charts in angularjs. you can add this plugin and use it for web or mobile applications. Features of this plugin: It will add ...

how to choose correct answers from multiple choices questions ?

how to choose correct answers from multiple choices questions using php and mysql i don't know if i'm doing in the right way because i'm still new in programming world  1- i'm using an array to store the questions  ...

How to add datatable in cakephp with records fetching from database

In cakePhp if you have an extensive database which contains thousands and a huge number of record so you can apply the datatables there. By applying the datatable you have given pagination highlight in which it is dependent upon you that what num...

IBDesignable

IBDESIGNABLE is available in Interface builder since Xcode 6.. We use IBDESIGNABLE to add additional properties to the view not only just the view but UILabel UIButtons and more.. By default properties are present related to views. In some case,...

Pagination in Rails Using will_paginate Gem

Hi Friends, Today I am going to tell you how we can integrate pagination in rails. First let's know why pagination is required in an application. Pagination is fetching data in batches and rendering one batch  at a time. It is nece...

Finding or Building a New Object In Rails Through Active Records

Finding or Building a New Object In Rails Through Active Records Active records provide us with some methods which we can use in our database to find or create objects automatically without having to fire two queries. These methods run 2...

How to prevent and USSD code from running in android?

I want to see how can I prevent a specific USSD code from running in android java? for example if the user dials *1234# an error pops or just make it not working. I want to create an application that prevents dangerous USSD codes from runni...

PIM for Search Engine Optimization

Hello readers Today's post will discuss in detail about role of PIM in optimizing the search results received from the search engine. It is very essential to filter the results as per their relevance. According to the statistics more than ...

How to crop images using Angularjs with example

In this post you will learn about cropping images using Image Crop directive in AngularJS. This directive provides you the feature to crop any image in a circle or square shape. You just need to have angularjs to use this directive. To start wit...

variables in ruby

Variables in ruby Variables are used to hold any data which will be later used by programs. There are 5 types of variables in ruby 1.Ruby global variables 2.Ruby instance variables 3.Ruby class varibles 4.Ruby local variable 5.Ruby...

Customizing validation error messages in ASP.NET MVC

Hi all, In the following blog, I'll try to show how to customize validation messages in ASP.NET MVC application. In MVC application, while implementing both client side and server side validation, we usually came across default way of show...

Rails select_tag helper method

Going by my application, I have an index.html.erb file that lists all articles and i was in need of a search box that would search all articles depending on the selected category.So firstly ,I created a search box within index.html.erb like this ...

Why is Google the Best Search Engine?

Over the last decade, Google has become synonyms to search engine. I guess, every person, who has a computer with working internet connection,  must have used Google for day-to-day activities. If you are going to calculate the price of infor...

ASP.NET: How to use SelectedIndexChanged with DropDownList ?

ASP.NET: How to use SelectedIndexChanged with DropDownList? SelectedIndexChanged is an event which is fired whenever selected item changes in web server controls like DropDownList, Combobox etc. To handle SelectedIndexChanged event a correspon...

Steps to Install Express JS

Express JS is a Node JS web application framework. Here I am telling about the installation of Express JS  and create your small  test application using MEAN . Also I am assuming you have already installed Node.Js and MongoDB in your sy...

Operations of character classes and use with quantifier

Dear readers in previous blog I have explained about the character classes(basic definition). Now in this tutorial I am going to explain all of you about operations of character classes with Unions, Intersections, Subtractions and how we can use ...

Instant Approval Article Submission Sites List 2016

Hi Guys, Today, I am not going to  write any tutorial/Blog/Article for mentoring purpose but I am giving you real weapon for high DA link building.   What is Link Building? It’s a method of getting links (Dofollow ...

How to add icon with text in tab layout

In the below code example I have created a Tab layout, here I have created two methods, first is add text value and second in declare icons.You can see below example code it clearly describes How to add icon with text in tab layout.   ...
1 105 292
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: