Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
Tags
Crop an image from UIImageView
With the following method stated below you can crop an UIImageView.
-(UIImage *)cropedImage:(UIView *)view{
UIGraphicsBeginImageContextWithOptions(view.frame.size, imageView.opaque, 4.0);
CGContextRef c = UIGraphicsGetCurrentConte...
Latent Bug
A bug which is not fixed in earlier versions, releases and it still exist is known as Latent Bug.
In Another words we can say A bug which is not observed by tester in two or three releases but observed by client or End User
The Latent bugs will...
.Net Assembly Manifest
.Net Assembly Manifest
A file that contains Metadata about .NET Assemblies is known as Manifest. Here, data about data or machine-readable information about a resource is Metadata.
MetaData: Metadata is a collection of data that describes ho...
Update Panel
Update Panel
An Update Panel is a control used to refresh selected parts of the page instead of refreshing the whole page with a post back. This is referred as performing a partial-page update.
An Update Panel has two child tags.
1: Conte...
Black Box Testing
Black Box Testing :
It is the process of giving the input to the system and checking the output of the system Without worrying about the output process generated by the system. It is also called as Behavior Testing.
In this program is consi...
Some keyboard shortcuts in Eclipse.
Eclipse provides lots of keyboard shortcuts which can save your lot of time.
Here is a list of shortcuts that you might want to try out: -
**Navigation Shortcuts**
*Shortcut Description*
Ctrl + Shift + R Open / Search for resour...
V-model and Phases of V-model
V-model stands for Verification and Validation model. In this model testing of the product is planned in parallel with a corresponding phase of development. There are various phases of the V-model.
Phases of the V-model are as follows:
Requ...
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...
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...