
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
Different ways to create objects
Different ways to create object:
We can create objects in java in four different ways.
Using new keyword
Using Class.forName()
Using clone()
Using object deserialization
Creating an object with the help of new keyword:
...
AppDelegate,UIApplicationDelegate,UIApplication Object,Singleton
UIApplicationDelegate-> UIApplicationDelegate is a protocol which consists some predefine methods. These methods are called by singleton UIApplication object.
UIApplication Object-> UiApplication Object is the object of UIApplication...
Tips For Bug Analysis
Hello Readers..
By this blog i am trying to explain the few important tips for the bug analysis. Before creating any new bug we have to analysis in well manner. Here i am mentioning few points and i hope these points will very helpful for all ...
Difference between include(), require() and require_once()
The include() function
The include() function is used to include the whole text of a specific file to another file where we want to include that file. While including the file if there will be any error in loading the file, it will only produc...
Animations in AngularJS using CSS
Animations are the effects that makes the visualization attractive and illusionary moving. In AngularJS we can use animations with the following directives :-
Directive
Animation Type
ngRepeat
enter, leave and m...
SQLite3 with Unity5 : Connectivity
First you have to add an extension (named.. SQLite Manager) in the Mozilla Firefox browser. (It is simply for managing database in some cases).
Then you need three .dll files (known as ASSEMBLIES)..., (these files are simply PLUGINS for SQLite...
How to create Bounce Text animation function in android
In the below example I have created a Bounce Text animation function. Here I have added Button and TextView in activity_main.xml layout then I have created new directory (anim). In anim directory I have created bounce.xml layout and in MainActivi...
Different AppStates in iOS
THESE ARE THE APPSTATES IN IOS
AppState tell that whether the app is running in foreground or background or when the state changes..
In early versions of iOS three states were supported : n...
How to add RecyclerView in dialog box
In the below layout example, I have created a dialog box with RecyclerView. Here I have added first RecyclerView dependency to Grandle file. Now in next step I have Created a Main RelativeLayout. All layout added in Main RelativeLayout then creat...
AppDelegate
AppDelegate-> AppDelegate is a class which inherit from UIAppDelegate and contains basics launching methods of any applications .
It contains many methods but five basic methods are given below.
- (BOOL)application:(UIApplication *...
How to move to next image through swipe in android
For changing the image on swipe can be done by implementing the ViewPager in your android app.
For implementation of ViewPager we need to follow the steps mentioned below:-
1) Create ViewPager tag in your xml file .
activity_main.xml
...
AngularJS $timeout and $interval
$timeout and $interval are two AngularJS timer services. We use these services to call functions and these are similar to javascript’s setTimeout and setInterval functions.
$timeout- This is used to call a function and schedules a single c...
Android app development for Beginners 1
In this tutorial following points are covered:
1. Getting started with Android application development
2. Installing Java JDK
3. Installing Android studio
4. Creating android studio project
Leadership to be Boost Up.
A President is a leader of a nation. A Father is a leader of a family. You are a leader of yourself. It is truly genuine that you are the leader. Need proof? All things considered, who controls your hands? Who controls your feet? Who controls you...
replaceAll() to replace square brackets in a String
To replace any character from a String, we generally use replaceAll() method of String.
Below is the example
String Str = new String("Hello + world +");
System.out.print("Output Value :" );
System.out.println(Str.replaceAl...
BroadcastReceiver in Android Tutorial
What is a BroadcastReceiver: Application component
Its usage: Notify the receiver for an event
How we can register broadcast: Static & dynamic
Lifecycle of a BroadcastReceiver
Key points while implementi...
Benefits of Being a Visionary
Being a visionary in whatever you do whether as a CEO, a chief, a group leader, a manager, an entrepreneur, a representative, an expert specialist, a specialist, a dental practitioner, a designer, a legal counselor, a group volunteer, a mentor, a...
Marker interface in java - Serialization
Marker Interface in java:
Marker Interface is an interface in which there are no members. i.e we don't define any methods or data members inside the marker interface. It is also called tag interface. A very obvious question comes in m...
java.lang.NoSuchMethodError: com.fasterxml.jackson.databind.JavaType.isReferenceType()Z
I was integrating solr with java using maven dependencies
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-solrj</artifactId>
<version>5.5.0</version>
...
Get the list of All Available Font in ios
To get the list of all the font that is available in xCode you can use this code.
for (NSString *name in fontnamesArray) {
NSLog(@"Font Family: %@",name);
NSArray *fontFaces = [UIFont fontNamesForFamilyName:name];
...
How to create Toolbar text animation in android
In the below example I have created Toolbar text animation function. Here In activity_main.xml layout first I have created Toolbar and added a TextView, then In MainActivity I have used ObjectAnimator class. You can see below program it will clea...
Program to count how many integers from 1 to N contains 0's as a digit
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n,remainder,cnt=0,i,temp1;
scanf("%d",&n);
for(i=1;i<=n;i++)
{
temp1=i;
while(temp1)
{
remainder=temp1%10;
...
Executive Leadership Development-Organizational Success
Executive leadership development is the need of great importance. Leadership advancement programs adjusted to your authoritative goals offer you some assistance with staying at the highest point of your business development activities. These prog...
Copy Text from android application
I am writing code to copy specific content on any event.
Android provides clipboard-based framework to do this task.
Clipboard is represented by ClipboardManager class. To instantiate it, we need to call getSystemService(CLIPBOARD_SERVICE)
T...
Iterate json data in angularJS
While working for an autocomplete funtionality in angularJS encountered a problem where instead of the JSON we need to iterate each element and have to make an Array of string.
For iterating the JSON data(from server side), we used:
$scop...
Hide an Element - display:none or visibility:hidden?
display:none:
An element can be hidden by setting the display property to none.
This property hides element in such a way that when the page will be displayed it is displayed as if the element is not there.
The layout is as there w...
How to design Business details layout in android
In the below example I have created Business details screen layout. Here, first I have created LinearLayout and added all layouts in this Main(Parent) LinearLayout, After this I have added ScrollView for page scrolling. I have also used Tex...
Command Line Arguments
Command Line Arguments:
Command Line Arguments are those arguments which are passed during executing a program through console.
Arguments passed from console can be used in a java program and can be taken as an input.
Example...
Xcode Demo
Welcome to Xcode tutorial series.
This is an XCode tutorial for beginners and introduce you to the main parts of the development environment of Xcode. There are 4 major areas: the Navigator, Editor, Debug Area and Utility Area.
The Navigator ...
What is the significance of the Finalize method in .NET?
The significance of the Finalize method in .NET
In .NET the clean activity for objects i.e when they are no longer required is done by Garbage Collector. But unmanaged resources (for example: Windows API created objects, File, Database c...
Regular Expression In Python
Hi All,
Regular expression is used to validate input. Python have a library which have many methods to use regular expression.
Regular Expression :- A regular expression (or RE) specifies a set of strings that matches it.
The functions i...
Employee Motivation
Building a team of motivated people in your business is key to get the absolute best results, yet such a large number of managers focus on the 'ra-ra-ra', instead of the important things – the things that make people feel great in t...
How to create ListView in android.
To create ListView in your android app follow the steps mentioned below:-
1) Define ListView in your xml file where you wish to show list view.
activity_main.xml
<LinearLayout
xmlns:tools="http://schemas.and...
AngularJS expressions
Expressions in AngularJS is represented using double curly braces-{{ }}. Expressions are used to bind the data to the HTML in the same way as the ng-bind directive of angular.
Expressions using-
1.numbers:-
syntax- <p>Price...
How to create Accelerate image in android
In the below example I have created a Accelerate image function. Here I have added Button and ImageView in activity_main.xml layout then I have created new directory (anim). In anim directory I have created accelerate_decelerate.xml layout ...
What Is Browser Compatibility Testing ?
What Is Browser ?
In the common words, browser is a software application where we can recover, study and show the data on the WWW (World Wide Web).There are several types of browsers available in the market like Internet Explorer (IE), FireFox...
Principles to Improve Your Leadership Skills
Nevertheless, you require not fuss/fret on the off chance that you are looking for approaches to enhance your leadership. There are generally acknowledged rules that when studied and connected, are accepted to be useful in enhancing one's lea...
Underscore.Js
"Underscore.js" a tiny and powerful library with a minified size of 5.7kb. You can download this library from
http://underscorejs.org/underscore-min.js
This library support over hundred of functions which can be very useful in our...
Different type of Session function in php
session_start();
It Start new session or resume existing session or the current one based on the session identifier passed via any request like $_get and $_post. When a session start php will call the open and read the session handlers.User can ...
Pop Up Menu Android
Pop up menu simply show Menu in a pop up window anchored to a View.
It displays the pop up below the anchor view if it finds space otherwise above the anchor view.
If we touch outside of it, then it will dismiss the pop up menu.
First, w...
Deployment Models in Cloud Computing
Cloud computing is defined as the sharing of resources rather than approaching applications by local servers. It is on demand due to advantages of high performance, low cost of services, scalability and availability.
Cloud computing deployment...
Leadership Lessons from Greatest Leaders.
Since the starting of mankind each one of us needs and advantages from leadership, whether it's religious, social,family, instructive, overseeing, proficient or business. The actuality is that without leadership there is just no direction or ...
Two Way Binding in Swift
Hi All,
Two Way Binding :- In two way binding, data flows in both direction, from object to UI and vice-versa. For instance, you can have a UITextField called as nameTF which is binded with an object having property nameValue. So when the obj...
How to design New user Sign Up form layout
In the below layout code I have created a new user Sign Up form page. Here I have created first LinearLayout all layout added in this Main LinearLayout, In below code I have also added ScrollView, Relative layout, ImageView, TextView. In dr...
How to succeed As a Leader?
You are highly proficient and have shown on numerous occasions that you can deliver. That is the reason you are presently in an leadership role. So in what manner would you be able to thrive now that you are a leader?
Concentrate on the end ...
One Way Binding In Swift
Hi All,
One Way Binding :- In one way bindings, data flows only from object to UI and not vice-versa. For instance, you can have a UITextField called as nameTF which is binded with an object having property nameValue. So when the object value...
Testing Of CAPTCHA
What is a ‘CAPTCHA’ ?
‘CAPTCHA’ is the deformed content or words. Generally, this is contest reply testing and this reply must be created by the person or human. These 'CAPTCHA's comes in various forms.
...
Explanation of php_uname
php_uname function is used in php for getting information about the operating system ,host name, release name, version information and machine type.This method is used in php for returning a description of the current operating system in which yo...