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

How to handle Simple Mail Transfer Protocol (SMTP) in python

In python Simple Mail Transfer Protocol (SMTP) is a protocol. Python provide smtplib module to handle the email system and SMTP client session object which is used to send mail to any Internet machine with an SMTP or ESMTP listener daemon along w...

Compute difference between two arrays in PHP

This article defines an array function of PHP, which is used to find the difference between two arrays. The details of function are given below : array_diff() : array_diff() is used to compare two or more arrays to find the difference. The fun...

Creating Thread Using Threading Module in Python

If you want to implement a new thread using the threading module, you have to follow the following steps which is given below Step-1 Define a new subclass of the Thread class. Step-2 Override the __init__(self [,args]) method to add additional ...

How to make Menu Groups in android

In the below code I have created Menu Groups. Simply I have added menu items in menu folder, all menu item are added in group. See the below code it will clearly described how to make Menu Groups . Step(1)-MainActivity- public class MainAct...

Laravel 5.0 Illuminate, Facades, Service Container, Service Providers

Hi Readers, If you are new to Laravel 5 you will definitely come across following terms and you will be using them without actually understanding what they stands for. But it always helpful to understand what are they stands for and why do...

How to run mysql join in Codelgniter

Hello Friends, If you are looking for mysql join in codelgniter. Please review the code as below: // Initialize select query $this->db->select('*'); $this->db->from('users'); // Define join in last parameter define left ...

What Is Path Testing ?

What Is Path Testing ? Path testing is a kind of structural testing approach. Path testing generally depend on the algorithm and the source code of the application. This testing does not depends on the requirements or clarifications. Path test...

Get user by using screenname in liferay

Hello Guys ScreenName is uniquely identify to user and we can use screenname as user tag name in liferay. Here, two ways to get user by using screenname with companyId : Step 1: Get user by using screenname in jsp(view.jsp) page...

Laravel 5.0 Difference between Fillable and Guarded

Hi Readers, If you are new to Laravel you will definitely come across two properties in the model one is Fillable and another one is Guarded. I myself did not get the use of these properties but once I get along I understood the actual use...

How to apply swipe feature on imageView in Android

If you are looking to perform certain task on swiping on the imageView or other widgets in android (the task may be change of activity, or change of the image on imageview). Here is the code snippet that can help you out with this. Step 1:- ...

Calculate distance between two point and draw route on map

Hi all, Let take you have two points, Point1 (In Boston) and Point2 (In Atlanta), Now you have to show the route between two points. In below method , you have to pass two param's i.e.. two point of map. - (void)displayRouteFrom:(CLLoca...

How to insert multiple records into MySQL Using MySQLi/PDO

Here we will learn how to insert multiple records into MySQL Using MySQLi/PDO using the mysqli_query()/exec function in MySQLi and PDO respectively.The examples below insert two new records to the "Employee" table: For example: MySQLi m...

Deleting Data in cakephp2.x

If we are required to delete a record, cakephp 's model class offers a way for the same. Deleting the record with the perticular id can be done by using delete() function : delete(integer $id = null, boolean $cascade = true); The abo...

Change color of polyline

Hi all, If you want to change the color of a polyline or route on map just change the color in this delegate of map. - (MKOverlayRenderer *)mapView:(MKMapView *)mapView rendererForOverlay:(id <MKOverlay>)overlay { MKPolylineRen...

Javascript Math Object

This object is used to perform mathematical tasks. It has various mathmatical methods. Using this object we can also create the random numbers. 1)Math.random() Example : <html> <body> <p>Math.random() returns a random n...

How to run select query in Codelgniter

Hello Friends, If you are looking to execute select query in codelgniter. Please review the code below: // Pass the table attributes you need to fetch $this->db->select('id, first_name, lastname'); OR $this->db->select('*'...

How to Sanitize Email ID and URL in PHP

Hello Everyone, today I will guide you "To Sanitize a String in PHP" SANITIZE :- Data affirmation is usually an inclusive element of working with varieties. Not merely may be published files result in protection problems, nevertheless addition...

Passing Information Using POST Method in Python

We pass information to a CGI program in the POST method. And post packages give the information in exactly the same way as GET methods but instead of sending it as a text string after using post. In the URL it sends it as a separate message. This...

How to removes a directory in php ?

Hi Reader's, Welcome to FindNerd, today we are going to discuss how to removes a directory in php ? If you want removes a directory then you should use The rmdir() function that is removes an empty directory. The rmdir() function retu...

What is process to unlink a directory in PHP ?

Hi Reader's, Welcome to FindNerd, today we are going to discuss how to unlink a directory by using PHP ? The unlink() function is used to deleted a file.unlink() function returns TRUE on success and FALSE on failure. syntax of unlink(...

How to get filetype from a filename?

To get a filetype from a filename we have define a function GetFiletype() in which we have a passed a parameter i.e.,the name of the file. Using this function we will extract the '.' operator from the filename and use the extension to get filetyp...

How to check validate url in php ?

Hi Reader's, Welcome to FindNerd, today we are going to discuss how to check validate url in php ? If want to check validate url in php then you can use FILTER_VALIDATE_URL.This is filter validates a URL. you can see below example &...

What is process to get the vedio views from youtube using API in PHP ?

Hi Reader's, Welcome to FindNerd, today we are going to discuss how to get the video views from youtube using API in PHP ? If you want to see the total counts of a views on youtube video by api, then you should use below code: <?php...

How to resize image in codelgniter

Hello Friends, Generally we resize image after uploading. If you are looking to resize image with codelgniter. Please follow the code below: // Include gd library $config['image_library'] = 'gd2'; // Define your source image path $co...

How to use the dis Module in python

In python dis module converts byte codes to a format and You can run the disassembler from the command line and It compiles the given script and prints the disassembled byte codes to the stdout . The dis function takes a class, method, function o...

Jquery draggable

Hello Readers , While building a web application , several times we need a box or a div which can be draggable so below is the code for explaining that . Example : <!DOCTYPE html> <head> <link href="http://code.jqu...

Calculate sum and product of all values in the array

Many times we need to calculate sum or product of values stored in an array. The most common way is to calculate sum or product by using for or foreach loop. For example we have an array with some numeric values, now we want to calculate the tota...

Jquery serialize function.

Hello Readers , jQuery serialize() method is used to create a text string in standard URL-encoded notation. It is used in form controls like input, textarea, select etc. It serializes the form values in such a way so that its serialize...

How to create the media player in android?

If you are looking to create a music layer in android , here is the simple code snippet that can help you for this :- Step 1:- Create an xml file for music player say"music_player.xml" <RelativeLayout xmlns:android="http://schemas.andr...

How to make Spinner in Popup Window in android.

In the below example I have created Display spinner in Popup Window. Here I have created a popup.xml layout. In popup layot i have added TextView, ImageView, Spinner and button. And in activity_main.xml layout I have added a button to open spinne...

How to use addClass() in jquery

The addclass() method is used to add one or more class name to the selected element. This method is used only to add one or more class names to the class attributes not to remove the existing class attributes. Syntax : $(selector).addCla...

Adding card with braintree

Hi All , These are simple steps to add card to braintree account in iOS. 1.Initialize braintree object with valid client token. BTAPIClient *token = [[BTAPIClient alloc] initWithAuthorization:@"cleintToken received from tree"]; ...

Modify or change the URL without reloading the page using javascript

Hello Guys Here, We can update address bar with new URL without hash or reloading the page by using javascript. Following examples help you to better understanding : function processAjaxData(response, urlPath){ document.getElem...

Jquery append()

The jQuery append() method is used to insert specified content at the end of the selected elements in the jQuery collection. Syntax : $(selector).append(content, function(index, html)) Example : <!DOCTYPE html> <html&g...

Maintaining scroll after postback

While handling postback if we have pages with large data it should scrolls. So when doing that postback occurs and the position where last scroll is done gets lost by the browser. So for doing that we can use the page property which can make t...

How to use jquery attr()

The jQuery attr() method is used to set or return attributes and values of the selected elements. Syntax : $(selector).attr(attribute) Example: <!DOCTYPE html> <html> <head> <script src="https://ajax....

Building Services in Android Using C# and Xamarin

In Xamarin we have functionality to build app using C# and other Visual Studio supportive languages. We can build apps by implementing services into it. For using and implementing services we can use interfaces and classes that con...

How to Improve Your Listening Skills?

Whether you are a learner or a professional coach, the one thing that matters a lot is your listening skills. As a good listeners it is always considered how effectively you listen to so...

How to validate IP Address using PHP Filter Extension

Hello readers, In this blog I will guide you "To validate IP Address using PHP Filter Extension". The below code validate your IP Address is valid or not using filter_var() function. <?php $ipAddress = "107.20.120.5"; if (...

How to add a Favicon to your Wordpress Blog

Many of the wordpress themes are having options in admin panel for uploading and changing the favicon image. But if we want to make a custom favicon image or we do not have any option in theme then we can create a custom favicon for every wordpre...

How to get current working directory in php ?

Hi Reader's, Welcome to FindNerd, today we are going to discuss how to get current working directory in php ? So basically The getcwd() function is used for returning the current working directory. This function always returns the curre...

Mutation Testing And It's Benefits

Mutation Testing:- Mutation testing is a kind of structural testing approach. In this normally users utilizes the pattern of the code to conduct the testing method. In the high level, this is also a method of amendment to the source code in t...

How to create/modify/expyire a cookie in php

To know what is a cookie and about the optional parameters for the cookie see click the link below. http://findnerd.com/list/view/What-is-a-cookie/13459/ Here we will see how to create a cookie and modify the cookie and how the cookie exp...

How to upload file in Codelgniter

Hello Friends, File uploading is very basic component of web-development. If you are new in Codelgniter and want to code for file uploading please follow the below code: //Configure set the path where the files uploaded will be copied. Make...

How to get Table and Field Information of MySQL database?

To get the table and field information of a table in MySQL using PHP we will follow the steps given below: Make a connection. Select a database. Find the number of fields using the mysql_num_fields(). Then we will print the type, name, le...

How to create tuples in python?

In python, tuples is just like a list but little differ form list, To say correctly tuples is a sequence of immutable Python objects and it can not be change just like a list also tuples use parentheses. Creating a tuple is as simple you have to...

What is the different between onclick and click

on('click', function() use less memory then .click(function() and it works on dynamically added elements.If we are using on('click', function() then we can remove this handler by using off('click', function(). The main advantage of on click is th...

How to define pagination in Codelgniter

Hello Friends, Pagination is the basic component of listing pages. If you are new in Codelgniter and want to use paging in your listing pages. Please follow the below code for the same: 1) Open your listing controller where you want to show l...

How to use opendir() Function in php ?

Hi Reader's, Welcome to FindNerd, today we are going to discuss how to use opendir() function in php ? The opendir() function is used to open a directory handle. The opendir() function always returns a directory handle resource on succe...

SQL Tutorial -> SQL Aliases

<-- Chapter 23: SQL Wildcards Chapter 24 SQL Aliases SQL Aliases are used to rename a particular table name or column name in a temporary manner. In a SQL statement , any table or column name can be temporary change. SQL Syntax fo...
1 138 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: