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
Ado.Net : Best practices for C# programmers
Hi Friends,
All of us use ADO.Net one or another way while writing code for database connectivity. In .Net whether you are using your custom classes for data connectivity or using ORMs(Entity Framework) or Enterprise Library, you are using ADO...
How to merge partner in OpenERP-6.1?
In OpenERP first, install the sale and account module and then create the own module.
Follow these step given below:
Step1- Create your own module and then create merge_partner file and then pass this file in __init__.py file in your own mo...
Multidimensional Array in C#
An array is the collection of homogeneous elements which stored in a contiguous memory location by using the same variable name. Elements of an array are accessed by their index value. Array index start with 0 and go up-to-the length of an array ...
ASP.NET : Binding ArrayList to Repeater in C#
Binding ArrayList to Repeater in C#
The repeater is a web server data-bound control which repeats a list of items that are binded to the control. Repeater.DataSource is a property that provides data to Repeater and this data is binde...
How to make Custom Spinner using material design
In the below example code I have created a Custom Spinner. Here first, I have added spinner library in build.gradle file. After that, I have added Spinner layout in activity_main.xml layout. In MainActivity I have added items name in String.
Y...
Desktop application like word web (http://wordweb.info/free/)
I need to make a Desktop Application with following features :
Once installed, it gets launched at the time user logs in and runs in the background.
If the user selects some text from browser or from notepad and clicks a particular key combinat...
8 Most Effective Tactics to Launch a Product Using Social Media
An infographic representation of Social Media as a Product Launch tool. Courtesy: www.123rf.com
It was December 2013, Pop Queen Beyonce took the music industry by storm, when she launched a (15 video and 17 songs alb...
Capybara Matchers
There are many times when more than one result matches with the actual result. So, we get the ambiguous match. Capybara provides some options to handle this situation.
Suppose we have to perform some assertion on date field then in t...
Show background transition effect on hover
If you want to change width and height to the box and show the content after a transition on hover, below code will help you.
We can easily use the transition property and change the width and height to the div, for this first we will create t...
What are directives?
Directives are the functions of javascript in Angularjs, the function can run when the DOM is loaded by the angular framework. By this new approach, Angularjs will let you to create a new directive which could manuplate or modify DOM logica...
An Overview to HTML5 Global Event Attributes
Hello readers, Today we will discuss about the HTML5 various global event attributes , these are of various types such as window events, mouse events, form events and media events.
Whenever any user visits a website it generates any action eit...
Change background image and display content on over effect
If you want to change background image and display content on hover effect this code will help you.
lets say if you want to show a content only when you move a cursor on an image div, and when image changes it will display the content or ...
Find the maximal of maximum sum of contiguous subarray by deleting no more than one elemnent?
You're given an array of N integer numbers.
The maximal sum of the array is the maximal sum of the elements of a nonempty consecutive subarray of this array. For example, the maximal sum of the array [1, -2, 3, -2, 5] is 6 because the sum of...
send data into php using javascript and ajax
i need to send data into my database using ajax but i don't need to send duplicate data so how can i return false if the username or email already exist in my database or prevent submit also i need to prevent submit if the password fields are...
C program to show the implementation of array of pointers to strings...
/*=========================== Program to sort the strings in an array of pointers to strings =======/
/============================ By :Bipin Gosain ============================/
============================= Date :27-5-2016 ============...
Merge Manager
Hello
This blog post provides an overview of the Informatica MDM Merge Manager.
Merge Manager
Merge Manager is a component of the Informatica MDM Hub Data Steward workbench. Merge manager is used to reviewing and merging ...
Shake Detector in Android
In Android, the most commonly used sensors are the accelerometer, it is used to measure acceleration. Here it is explained how to detect a shake motion.
Step 1. Create Class ShakeDetector that will extend SensorEventListener:-
Step 1(a) :-&...
Informatica AddressDoctor in Action
Hello
Today we will discuss the process flow involved in cleansing an address encountered for the purpose of use by the Master Data Management.
Informatica AddressDoctor is designed to deal with improperly truncated data, in...
Rails custom ordering of record
Sometimes we need to display the records in a specific order. For that, we need some method
Suppose I have the priorities ['0', '8', '4'] .And I have a model event with priority column.
Now I need to get all the even...
Top 5 Essential Twitter Tools
Whether you are an engineer or labourer, an electrician or a carpenter, a rocket scientist or a common geek, everyone needs right tools to complete their work effectively and efficiently. No one imagines this world without making use of tools. Th...
How to write byte array to file
In C#, many times we need to write a byte array to file. In this blog, we are going to illustrate how to write the byte array to file by using three methods.
1. By using File.WriteAllBytes(string , byte[] ) Method
...
How to make Tab Custom Layout?
In the below example code, I have created a Tab Custom Layout. In Tab Layout I have added Text with icon. Here first I have created two custom tab layouts Then I have created a method setupTabIcons() and inflate Custom layouts for tabOne and tabT...
How to implement zip compression in .Net ?
Hi Friends,
Sometimes we need to compress some files programmatically in our code particularly in the case when you are developing any multiple download scenario. We compress the files for following reasons:
1-Compressed files are smaller i...
jquery slideToggle method
In many site we have seen that when we click on some div,other div will slide down from it , this will happen with the help of slideDown() method in jquery.
If we want to make some div to slide up we can do that by using slideUp() method...
Understanding $emit, $broadcast in AngularJS with example
The services yield by Anjularjs which can be utilized for communication based on event between controllers are $on, $emit, and $broadcast. These are under the publish/subscribe design pattern of angularjs i.e. you can publish an event somewhere a...
.Net 4.5 : Json parser
Json.Net is a popular high-performance JSON framework for .NET
Features of Json.NET :
1. It provide JSON serializer for converting between .NET objects and JSON
2. It supports Binary JSON,XML to JSON, JSON to XML, LIN...
How to use percentage based dimentions in layout?
This tutorial will help you to give percentage based layout width and height. As now the Android have introduce percentage support library. It will helps to run your applications for multiple screen sizes.
So far this support library support f...
Objects in javascript
Hii,
In this blog i am going to discuss about objects in Javascript and how we can use it.
While writing client side scripting language i.e Javascript we use concept of OOPs(object oriented programming languages) which helps us to use propertie...
Database Testing
Database testing: Testing done on the retrieved data by the application is called Database testing. In the database testing, we match the data, displayed to the user, with the data stored in the database.
Following factors to be kept in mind f...
ion-list directive in ionic module
Hello Readers,
In this blog we will learn about ionic module's directive ion-list and ionItem.
Basically, lists are widely used in web application and mobile application. List contains items so both can be HTML element. Every list req...
Delegates in iOS
Means of communication between the objects can be implemented using Delegates. One object can send messages to another object through delegates.
For example, if we want to pass data forward then it is easy through UINavigationController as...
Cookies Testing
Every web browser save the website small information in the form of text files known as cookies. These files are saved in the user’s hard drive by server; these saved cookies are then used later when user reopen that website again...
How to use Automapper in .NET ?
Hi Friends,
Before knowing about "How to use Automapper" we should know what mapping is and then we'll see how to make it "automatic". So I am taking here an ASP.NET MVC example to make things easier and understandable....
Social Media : A Powerful Mass Notification Tool
Social Media is considered as the ultimate Mass Notification Tool. With changing times, methods and modes of notification and communication have also changed. Today, you will find the qwerty wolves lurking everywhere. RTs, shebang, RSS feeds, has...
Interesting fact about AND and OR operator
Hello readers,
I want to share an interesting fact about AND and OR operator, which you might not had encountered. As we know that in AND operator the result is only true when the values of the operands are true, if any of the opera...
An Overview to Meta Tags
What is Meta Tag ?
It provides information known as data in an html document.
It allow us to develop the description of the web page.
It is used by search engines to index a page so that the user can easily find it.
It help the user t...
How to find BoM for particular product and product_uom in Odoo?
In Odoo first, we have to create own modules and then create a function to find the BOM in our own modules.
After this, we will search product on the basis of the product_tmpl_id and relate it to the BOM.
Here, product_uom is the Uni...
How to use statusbar plugin in phonegap
In this post, you will learn to use statusbar plugin of cordova. The StatusBar object can customize Android and iOS statusbar.
Installing the plugin:
You should have cordova 5.0+ to install its stable version by the following command:
...
append( ) property
append( ) property is used to insert a block of elements inside a particular element. It helps in adding block of element during runtime.This property insert's content, specified by the parameter, to the end of each element in the set o...
Difference between Interface and Abstract class
Interface
Interface looks similar to a class, but it does not contain implementation. They may contain declarations of events, indexers, methods and properties.
With Interfaces, it is easier to achieve plug-n-play like a...
How to display video background in html
In this post, you will learn about video display in background using html and css. There is video tag in HTML5 which you can use to embed a video in your web page.
<video width=450" height=340" controls autoplay>
<source src=abc....
How to uninstall .Net framework ?
Hi Friends,
.Net framework makes our life easier by providing multiple assemblies for development of applications. All good here except when it gets corrupted because of some file missing or due to some other programs interfering with it. So t...
Comparable Interface in Java
Comparable:- Comparable interface found in java.lang package and it contains only compareTo() method. It use the single sorting technique to write our own comparison logic and is used to sort the elements on the basis of...
CSS Accordian
One incredible thing about CSS is the capacity to make extraordinary searching plans for your sites and with CSS3 you can compose code that does not require javascript (as long as you have the latest web browsers!). This following example demonst...
How to execute stored procedure?
Stored Procedure is already written queries which are saved in database. If you want to use any SELECT, INSERT, UPDATE, DELETE query multiple times then you can put your query in stored procedure and use it anywhere. You can execute your stored p...
ASP.NET : Class vs Structure in C#
Class vs Structure in C#
1) Class variables and structure variables are stored in different memory location. Class variables are stored on heap whereas structure variable are stored on stack.
Explanation of how class variabl...
How To Add Store View Selection In Magento Admin Grid?
Hello Readers,
In this tutorial, I will explain how to add Store View selection to Module’s Adminhtml
This article assumes you already know how to create Magento Admin grid.
Go to Namespace/Module/Block/Adminhtml/Module/Edit/Tab...
Understanding Hard Links vs Soft Links
In Linux or Unix based OS create file into two parts ::
1. Data part : it contains the information regarding the iNode number of the file along with the variuos permission on that file.
2. Filename part : contains the name of file and inode...
Difference between Sprite, Textures and Materials
Hi guys , this post briefly explains what is the basic difference in Sprites, Textures and Material in Unity:
Sprites : All the graphic components that are part of 2D Game development are called sprites. Sprites can be moved around, resized , ...