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

walking along with Agile

Here are some best practices that we can easily follow.... Our goal should be to satisfy the customer by early and best delivery of the valuable software. Good to have the change in requirements even after late development of product. Ag...

Pop and Push Elements in an Array

The examples below will help how one can include or remove new array elements in javascript with the help of unshift/ push/ shift/ pop functions. unshift() is used to add one or more elements to the starting of the existing array and returns t...

Why should You Need Technology!!

Because you Believe in Progress. And using technology will improve your live. Because now it become the biggest hub for education information you can Share or get more value able information. You have Massive online course, Ebooks. Becau...

Total of values in multiple textbox.

The code below will help, how one can use selector "class" to sum all the values in different input box in a Form. <pre>&lt;pre&gt;&amp;lt;pre&amp;gt;&amp;amp;lt;script language="javascript"&amp;amp;gt; fun...

Why do Bugs occur?

Bugs Occur Because of the following reasons:- Inexperienced developer:- Inexperienced programmers or programmers without proper domain knowledge introduce simple mistakes while coding. Lack of coding practices, unit testing, debugging are so...

Texturing in 3d Coat

Hello Guys, Since we all know that Photoshop is a great tool for painting and coloring a character or a 3d asset but during texturing process, there is a lot of back and forth in checking textures in your 3d programme, What if you could paint dir...

Best Practices used in Game Development

Writing simple games in HTML5 is easy, but you need to do certain things to make sure that your game runs smoothly. Here are some of the best practices for building HTML5 Games. #1: Use a Framework When using lot of images, sound effects and...

Implementing a RESTful service using WCF 4.5

Hello coders, In this article we are going to implement a RESTful service using WCF4.5. Note: WCF stand for Windows Communication Foundation Please follow the below steps to implement a RESTful service. Step 1: Open visual studio/New project...

Points to keep in mind while testing UI (User Interface)

UI (User Interface):- User Interface means testing the application that how easily an user can use/understand the application.GUI (Graphical User Interface):- In GUI we test requirements like background color, button naming convention, drop down ...

Working with List in Provider Hosted App for Sharepoint

Sharepoint List in Provider Hosted App This Blog will provide an insight of how we can use Sharepoint List and its properties in Provider Hosted App. Assuming you already are familiar with Sharepoint and Provider Hosted App. As we all know Pr...

Sharepoint Development Setup on Local Server

This blog is useful in setting up your own Sharepoint development environment on local server. I am assuming that you have already installed Sharepoint 2013 into your development server and now you want to start development for Sharepoint. ...

Colors of Testing

Colors Of Testing White Box Testing (WBT):- White box testing is also known by the different names  Clear box testing  Glass ...

QTP (Quick Test Professional) and its uses

Introduction to QTP(Quick Test Professional) QTP stands for Quick Test Professional and is a product of Hewlett Packard (HP). QTP was owned by Mercury Interactive and later it was acquired by HP. Its original name was Astra Quick Test and lat...

REST attributes of WCF Service

Objective: In this article we will explain what are the REST Attributes of WCF service and there usage. Here WCF Stands for Windows Communication Foundation WebServiceHost: This is a class which is inherited from ServiceHost Class. Servi...

Application Domain Overview

Application domain works like a process works for Operating system. It keeps the application isolated from each other, the same way an operating system process works. Isolation is required so that applications do not conflict with each other. It ...

Types of Environment Testing

Types of Environment Testings are: Desktop application testing Client server application testing Web application testing Every application differs in the environment as they are going to test on different different platforms and serve...

Profiling in .net

Introduction In this section we will talk about three things: what to profile, why we need profiler and how can we profile our code. So we will discuss this one by one. Profiling collect the information about an application, that helps you...

Web API Routing

Basics for Web API Routing The Web API framework maps incoming requests to the appropriate action based upon the HTTP verb of the request. The Web API route URLs to a controller, and then to the action which matches the HTTP verb of the re...

What is Auto Boxing

Auto-boxing was introduced for removing the need to manually "box" primitives. It just happen automatically when and as needed. Auto-boxing can be defined as getting a reference type out of a value type by type conversion, it can be either imp...

How to scroll listview inside a ScrollView in Android.

Hello Friends Here I am going to share a very important code to make ListView scroll inside a ScrollView. Most of the Android developers says: Its not a good approach to put a ListView inside a ScrollView because a ListView is already a sc...

Tutorial On LinQ and Simple LinQ examples

Introduction of LINQ: Abbreviated for Language-Integrated Query (LINQ). It was introduced in Visual Studio 2008 and .NET Framework version 3.5. The main concept behind it was to fill the gap between world of objects and the world of data. LINQ...

Jquery and WebMethods for AJAX calls

What is jQuery? jQuery is a lightweight,JavaScript library (write less, do more). The purpose of jQuery is to make it much easier to use JavaScript on your website. jQuery takes a lot of common tasks that require many lines of JavaScript code ...

Integration testing mehodologies

There are two approaches of Integration Testing: Big Bang approach Incremental approach: Incremental approach includes following methods: a. Top down approach b. Bottom Up approach c. Sandwich approach Big Bang Approach: In B...

Default function for Increment/Decrement updates database field values in rails 2.3.8

Generally at the time of development a situation of incrementing or decrementing a database field it can come like Number of views for a particular page or Number of views of a individual profile. In rails there are two default functions for this...

Understanding Lambda Expressions

What is Lambda Expression ? Lambda expression is an inline delegate introduced with C # 3.0 language. It is an easy way to represent an anonymous method. Lambda is used to write anonymous functions which does not take parameter and which does ...

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...

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...
1 273 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: