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

How to open PDF file stored in remote server in android.

If you want to display a PDF file in your android application which is located at the remote server then you have to follow the instructions given below. Add this web-view in your xml file. <WebView android:id="@+id/webView" an...

Test process improvement

Test Process is the planning activity to test the application software. Bellow are the best practices for Test Process Improvement Increase quality - In today's time software has become an intrinsic part not only in business sector but in ev...

How to Apply Active Record Observer on a Particular Column

Meaning:- Active Record Observers means a callback or a trigger which will get called in the life cycle of active record object. This is used for the purpose of reducing the burden on model's functionality which is not directly belongs to model....

How to Create Accordion

Hello All, If you want to make an accordion, this code will help you to make a dynamic accordion using HTML, CSS and Jquery. An accordion is a stacked list of items. Each item can be "expanded" or "stretched" to reveal the content associated...

Indroduction of Testing and Types of Testing

What is Testing? Testing is the process of improving the quality of Software or Software application. Ways of Testing? 1.Manual Testing 2. Automation Testing 1.Manual Testing: Manual Testing is a type of testing where testers m...

Risk Analysis

Risk analysis is one of the method to determine How much risk is involved in something. The method is use to determine when to test something or whether to test something or not. High risk item should be test early and Low risk item can be tested...

CSS Positioning

As I am a fresher to web design, I don't know exactly all the concepts of positioning and their differences. But as much i have studied the CSS Positioning, I can explain it here as far as my knowledge.Positioning is used to get the blocks exactl...

How to integrate MobBill Mobile payments for Video, Ringtones etc

Hi All, Here I am sharing how to implement MobBill Mobile payments, for this follow the steps below :- Step 1 -> You need to login into the link http://merchant.mobbill.com/insight/login/auth and create your account. Step 2 -> Now...

How to convert number into corresponding Month Name

Hello Everyone, In this article I am sharing how to display Month Name for corresponding number such as if we have month coming in number from server say(1,2...so on) and we want to display January in place of 1, February in place of 2 and so on ...

How to Create Tab Bar in phoneGap Onesen UI

Hello All, The following code below will help you to create Tab Bar in phoneGap Onesen UI. <ons-tabbar> <ons-tabbar-item icon="home" label="Home" page="FirstPage.html" active="true"></ons-tabbar-item...

.Net MVC Controllers and Simple Model Validation

.Net MVC Controllers The controller is a heart of the entire MVC architecture which inherits system.web.mvc.controller. The controller acts as a coordinator between the View and the Model as it receives input from users via the View, then proc...

Routing In MVC

What is Routing The concept of pattern matching process used to monitor the requests and determines further step for each request is known as Routing. In other words , the mechanism of mapping request in our MVC application is Routing. MVC ...

Navigation Between Pages in Phonegap onsenui

<ons-page class="center"> <h1>My First Page</h1> <ons-button ng-click="ons.navigator.pushPage('secondPage.html')"> Push My second Page </ons-button> </...

Manual Testing and Stages of Manual Testing

Manual testing The process carried out to test the software defects manually without using any automated tool or script is know as manual testing. In such testing tester plays a role of end an user and test the software application by using ...

What is STLC (Software Testing LifeCycle)?

STLC (System Testing Life Cycle) The process executed in planned and systematic manner to test the working and functionality of software application is known as Software Testing Life Cycle (STLC). In lay men language we can say that, STLC is a...

Custom checkbox using jquery

Hello Reader ! Here is an example how to make a custom check box using simple script and css. Script $(document).ready(function(){ $('label').click(function(){ $(this).toggleClass('checkedN'); }); }); css .checkedN {ba...

Creating a Terrain in Unity - Part 1 (Beginner)

A brief introduction of Unity 3D Unity is a cross-platform game engine which is used to make 2D and 3D games for mobile devices, web browsers, consoles and desktops. There are many useful features in Unity which includes Particles, Physics, S...

How to make Sticky navigation

Hello Readers ! Below is an example of sticky navigation with simple script which is compatible with internet explorer. You can use this script for sticky header or sticky footer. I hope it will be helpful for you. Script:- $(docume...

Example of Parallax Scrolling

Hello Readers ! Here is an example of parallax scrolling with simple script and it is also compatible with internet explorer. Parallax Scrolling :- The parallax scrolling web design is in trend, Its shows the background moving at a slow...

Example of parallax

Hello Readers ! Here is an example of parallax with simple script and it is also compatible with internet explorer. Script :- <script type="text/javascript"> $(document).ready(function() { $(window).bind('scroll',funct...

Make a div align center using jquery

Hello Readers ! Here is an example, how to make a div always center align using jquery. You can do this using css but this method will work with positions (absolute, fixed etc) and it is also compatible with internet explorer. <script>...

Advantages of using stored procedures :

Stored Procedures stored procedures is the collection of Sql statements which is stored in data base . below are the advantage of stored procedures : 1.stored procedures reducing network traffic and boost application performance. . ...

Why Bugs/Defect in Newly Developed Product?

It is impossible to create error/bug free product from developer or an expert people in certain technology. There are some reason that cause major bugs in product. 1. Writing Initial Requirement Miscommunication is the major issue while writi...

Compile your code even when application is in background

When application enters in background the compiler stop working and it has to wait till application enter foreground. Use following code to compile some of your code even when application is in background bgTask = [application beginBackground...

How to create an application using Facebook 4.0 SDK

To create a new Facebook application, register on https://developers.facebook.com and make a new application that will generate a Facebook application id and secret key which you will use in your development. After creating the application ope...

How to create a custom Spinner

To create a custom spinner create a custom view with the following initialization method - (id)initWithFrame:(CGRect)frame superViewFrame:(CGRect)superViewFrame { self = [super initWithFrame:frame]; if (self) { // Initializ...

How to find current location of device (using CoreLocation framework)

There are two ways to find current location (lat,long) of device : Using CoreLocation framework OR using Mapkit framework. Here's how to get the location using CoreLocation framework : 1. Import CoreLocation/CoreLocation.h in h file of view...

How to add list dynamically

This is very simple way to add list dynamically using jquery. In this first you have to give Id to select tag then add the script. <html> <select id="memoryCategories"> <option>Categories</option> </select&...

How To show Rating (Angular.js)

How to show Rating Dynamically If you want to show rating dynamically you can follow the code below. Here phone.rating contains rating and it comes dynamically. <html> <div class="rating-block clearfix" funboard-rating rating-va...

Create custom component in Joomla 1.5

Sometimes, when we are working on CMS like Joomla, Drupal etc, we have such requirements for which we need to build our own component. On that component, we can add our logics for development. Here are some basic steps to create you own Joomla...

Steps to create custom plugin in Joomla 1.5

There are some core plugins availabe in Joomla project for e.g. System, User, Search, authentication, content etc. Plugins provide a function which are associated with specific event trigger. In one of my project, I had a requirement to add pa...

How to Integrate iPayy(Payment gateway) API

IPayy API is basically a payment gateway by which you can sell anything through your website. In brief, it just generates an OTP number which is called as One Time Password and will send number via msg to your mobile. Here I am going to show t...

Stitching two images together using Graphic class

Below is a function that takes two images as parameter with their coordinates and Height Width and stitches both the images together with their respective coordinates and returns a new image. public Bitmap StitchImages(Bitmap baseImage, int...

Best Way to Create Best Design

To remember few point in mind to make best design Choose Best Color Theme. It would be necessary to select best color theme, because color theme is basic part of any design. We can choose eye caching color as per the industry standard. C...

Setting up the Amazon Product Advertising API based on PHP SOAP

Hi all,for setting the amazon product API you will need amazon associates account and AWS account. Create the account using this link: http://aws.amazon.com/. After registration, generate `AWS_API_KEY` & `AWS_API_SECRET_KEY`. Download the A...

Changing Windows Hosting Account's Default File

If you want to make your website's default file you can do this by using Windows hosting accounts running IIS 7, hence you only have to specify your website's default file using a web.config file. To change your website's default file, include...

Prevent from text selection on double click of mouse.

Sometime you may need to prevent from text selection on double click of mouse button. You can use use the following css3 code for the same:- .monthReport label {-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-mo...

Software Verification and Validation

Software Verification and Validation Verification Verification is the process which makes sure that the software product is developed in the right way. It is a disciplined approach to evaluate whether a software product fulfills the require...

Advantage of "loadModel" over "$uses"

Advantage of loadModel over uses While using "$uses", many unrelated model gets loaded. So it's best practice to use it only when it is needed through out the controller. If you only need it randomly then loadModel(). Another way of loading a...

Creating CSV from HTML using jQuery

In one of the project, I needed to create the CSV file from the html using jQuery. To make this possible, I created the below code to convert the html into csv file using jQuery. <script type="text/javascript" src="jquery.min.js"><...

How to Create Simple Html File Through PHP Script

This tutorial show's how we can create a simple Html file through PHP script. if($filename == ''){ $filename = 'demo.html'; $writefile = ($filename , 'w'); $content = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict...

Android create custom edittext with clear button.

In android there is no default text clear button functionality in EditText so here is a simple example of implementing text clear button in edit-text, You just have to follow instruction given below to make it in your edit-text. 1)- First you...

Using Containable in CakePHP

Containable behavior was introduced in CakePHP 1.0. It helps you out to find out the data from the associated models/tables in a consistent way. Containable simplifies the binding operation in your model bindings. To use the new behavior, you...

Implementing AFNetworking

AFNetworking is currently the most popular 3rd party networking library for iOS and OSX. The latest version of AFNetworking (2.0) is built on top of NSURLSession which is the new preferred method of networking introduced in iOS 7 (in place of old...

Storing and retrieving String[ ] Array using SharedPreferences in Android.

I came across to the many questions asking about to store some kind data in Shared-preferences such as String[] array. Many of these questions are answered with "Use a database". But here i will show you a perfect piece of code by which you ...

PHP Script to import any excel database in MySql

Hello Friends, If you want to import any excel sheet to your My SQL database you can use the following code below. I have specified comments wherever needed.This is complete script and here you need to keep the classes directory with your cod...

Indexing in Mysql

Indexing is useful for faster searching of data. Suppose you have a product table in your database with more than 2,00,000 records, now when you search a record on basis of product name, it takes time too long. Now if you want to perform your sea...

Date base search in Mysql

Hello Friends, Generally we need to do date based search in mysql like Get all the users registered in the last week, or last day, last month, last year. We have very good function of mysql DATE_SUB(). Lets get some the example below: 1) Se...

Convert HTML string to Plane NSString

Hi Friends, Sometime in API responses we get html strings. To get pure string from html string this code will help you. NSString *htmlStr = @"html String"; NSData *data = [htmlStr dataUsingEncoding:NSUTF8StringEncoding]; NSDict...

How to detect screenshot taken by user in iPhone.

With the help of the notification "UIApplicationUserDidTakeScreenshotNotification" in our application we can detect the screenshot taken from iPhone. Use the following line of code to generate notification for same. [[NSNotificationCenter def...
1 250 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: