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
IEnumerable, ICollection and IList Interfaces
IEnumerable is the core of the ICollection and IList interfaces.
IEnumerable Interface:
IEnumerable interface is used to iterate values. Usually, it is used with the help of a foreach loop. It has only one method i.e. GetEnumerato...
jQuery queue() Method
queue() Method:
Queue method is used to display the queue of functions waiting to be get executed on selected html element. In a queue there can be one or more functions waiting to execute on selected html element. We can also manipulate the q...
Top 3 Calendar and Events Extension in Joomla
Hello friends,
Today we will discuss about the Calendar and Events Extension in Joomla. Joomla provides many Calendar and Events extension. Here we will discuss the popular top 3 calendar and events extension. They are as follows:
...
How to align checkboxes and their labels?
Hi there.
In this blog post, I will tell you the solution for one of the minor problems faced in CSS.
And that is, vertically aligning checkboxes and their respective labels consistently across browsers. Whenever I try to align them correct...
Custom CheckBoxes
Hello Readers! In this blog we will be creating custom check boxes that can be used in forms. Here is an example of custom check boxes using pure css.
CSS Code:
/*-- custom checkbox radio --*/
.cust-checkbox {
...
Creating Charts and Graphs in Rails
Creating Charts and Graphs in Rails
Few days back I was working on a project, in which a dashboard was needed with stats showing in different kinds of charts. i.e: pie chart, barchart etc. So I looked for a gem that can include all o...
How to disable resizable property of textarea?
Hi all.
The <textarea> tag and the <input> are very much similar in terms of their usage. The only difference between the two is : <input> accepts a single line input where as <textarea> accepts a multi-line text input....
Close to having database queries displayed to Jlist, what am I missing?
Hello, I feel like I may be very close to having my app display the rows from my database in the Jlist the way I would like (with every column from each row displayed as one item on the Jlist. I think the problem might be in connecting the ...
How to avoid adding emoticons in android edittext
If you don't want to allow users to add emoji in edittext then below few lines will be helpfull for you. This method will return blank string while typing any similies/emoji in your editext.
public static InputFilter EMOJI_FILTER = new I...
Creating Credit Card Form Using Bootstrap
Hello readers, Today in my blog I have tried to create credit card form using Bootstrap.
In the HTML, I need to create an outer div with the class name as credit card div and had 2 nested div inside it.
With the help of ...
Hamburger icon using pureCSS
Hello Readers!
We developers find every solution to deal with different codes and reached to final solution in the end, I thought previously that this transition effect would be possible using only jQuery. But here we used only pureCSS that will...
Creating a Loader Using CSS Properties
Hello readers, Today in my blog I will discuss about creating a loader using CSS properties.
As many of us has seen various loaders while opening a website, In this blog I have tried to create a loader using CSS properties.
...
Defect Seeding
Defect Seeding :
Defect seeding is the process in which one group of the project inject the defects in the product while other group test the product to remove them. It is also know as bebugging.
It is a reliability&nbs...
Javascript void operator
The Javascript void operator set the given expression and then returns the output as undefined.
The void operator is employed to amass the undefinable denoting price, typically we tend to use "void(0)" (which is suggests th...
Multiple Inheritance in Java with Example
Hello!!
As we know that java does not support the multiple inheritance but java 8 provides a way by which we can use multiple inheritance. It provides a default method to do this job.
In java 7, interface are used to declare the contra...
Accordion Using Jquery Type -II
Hello Readers! In our previous blog we discussed about the simplest accordion with default functionalities. In this blog we will be discussing about the another type of accordion with content collapse feature. In this type of accordion when we cl...
Accordion Using Jquery Type -I
Hello Readers! In this blog we will discuss about one of the simplest type of accordion using jquery.
In this type of accordion the content will be displayed on the click event of the the particular section. This task will be perform...
Difference b/w Function Declaration & Function Expression
Hello readers, Today in my blog I would like to discuss about the difference b/w Function Expression and Function Declaration.
The first question that arises in the readers mind would what basically these both terms mean, so he...
How to Move Your Data Warehouse to the Cloud in Three Clicks
Moving Your Data Warehouse to the Cloud
Is your data warehouse in the Cloud? Are you thinking of moving it there? Once there, what if you want to change to a faster, cheaper database?
Moving to the Clou...
CMMI Overview
CMMI integrates multiple disciplines into one process improvement framework:
System Engineering
Software Engineering
Integrated Product and Process Development
Supplier Sourcing
It supports two different representations:
Co...
Difference between find() and filter() methods
Both the methods are similar to each other.
It is hard to understand the difference between jQuery find() and filter() methods. The difference between the two is that find() method searches for all the elements in the selector while the filter...
Selecting Test Cases For Acceptance Testing
In Acceptance Testing we follow basic scenarios:
1. End to End functionality Verification : Test cases that include the end to end functionality of the product are taken up for acceptance testing. This ensures...
Different way of writing multiple click functions
jQuery make it possible to interact with user by adding events to the web page, It includes many Events Methods like hide(), bind(), blur(), change(), click() and dbclick(). Here in this blog I just want to create one "click" function t...
Migration in Rails - Part2
Hi friends,
In my last blog Migrations in Rails: PART 1 - Introduction and Creating Tables I told you what is migration and how we can create tables in migration today I will tell you some other generic queries that are used:
1. Dropp...
Migrations in Rails: PART 1 - Introduction and Creating Tables
Migrations in rails are basically used for executing DDL (Data Definition Language) statements. The main tasks of migrations are:
1. Creating tables
2. Updating Schemas
3. Altering tables
4. Dropping tables
Each migration works as a new ...
Different Types of Renders in Rails
render is used to provide response of a request in rails. There are multiple kinds of responses that you can send with request. Lets see one by one:
1) actions:
By default if nothing is specified as render, actions are rendered withing in...
Protect From Forgery in rails
The first concern for every application is its security, so rails by default provides a method protect_from_forgery, which is always present by default in your application, whenever you create a new application. i.e.
class ApplicationControl...
Transaction in Rails
As we all know in SQL transaction are used to maintain the integrity of the data, so that if there are multiple queries written, which has a condition that either all of them are executed or none. So for achieving those rails has written the wrap...
Introduction to JWT
With API becoming so popular these days thanks to SPA base applications, it was also required to keep these APIs secure. So the most popular of securing api's is token based authentication, whose flow is little bit like this:
1. In the b...
How to play Youtube video in your android app
In previous posts we discussed about how to generate youtube video thumb and video_id. Now we are going to implement how to play videos in your android app by going through below easy steps.
Step1: First adding YouTubeAndroidPlayerApi li...
Changes Related to Active Records While Updating From Rails 3.2 to Rails 4.0
From Rails 3.2 to 4.0, there were so many things that got changed. So here I am telling you the major changes that affected the active records, and that you should take care of during updation from 3.2 to 4.0:
1) There were some inconsistenc...
How to generate video id from youtube video url in android
If you are using YouTubePlayer in your android app and wants to play youtube video on that, so first we need a youtube video url. From that url we can get a video id(11 alphanumeric character set). In below example we are going to generate a vide...
Material UI in WPF-Part 2
Hi Friends,
In the previous part we’ve seen some Material controls and they look pretty impressive. You don’t have to put extra effort for styling standard controls and need a little effort for out of the box controls like sliders ...
Hide/Show content with plus minus sign using JQuery
Hello there.
In this blog, I am going to tell you how to hide or show your content. If you are trying to hide and/or show your content, this can happen with a change in the plus minus sign.
How? This blog has the answer to it.
...
Difference b/w onClick() and onSubmit() Event in Javascript
Hello readers , today in my blog I would like to discuss about the difference b/w the onClick and onSubmit Events .
Below is the difference b/w them :-
Below is a example showing the use of onSubmit() :-
<html>
...
JavaScript- Hide broken image icon or set a default image icon when source image is not found
Hello Readers,
When source image is not found then it will show a broken image icon. In today's post we will learn how hide broken image icon when image URL is invalid or not found.
onerror attribute of <img>&n...
Pure CSS Animated 3D Pyramid
In this blog we will be creating a 3D pyramid which will be rotating around vertical axis, ie, Y-axis and also on its own axis using pure css. The most important properties used in the making of pyramid were : transform-origin, transfrom-style, a...
Ranking the SEO better! Does the original content and updated website work?
I have heard that the original content and regular website updation is important for the high SEO ranking. Is it true? Please explain how?
Smart Fox Server With Unity3D
Hello Readers !!
Today we are going to discuss the Smart Fox Server in Unity 3D.
We all need to put any server in the game if we are trying to create a Multiplayer game so that we can connect two real players together.
Sma...
How to find the next element in jQuery
Here we will learn how to find the next element of the current.
In jquery the .next() method is used find the immediate sibling of the given element in the DOM(Document Object Model).
In .next() method only the sibling elements will be sele...
Material UI in WPF-Part 1
Hi Friends,
I think most of you have heard of Angular Material UI and those who have seen it, they do like the clean and minimalistic idea and very simple layout which actually looks stunning. But that is for web. Now what if we want it for ou...
How to read a text file using Scanner in Java?
Hello!!
As we know that their are multiple way to read the text file in java. BufferedReader class is generally uses to read the text file. FileReader, BufferedReader, FileInputStream is used to reade the text file in java ...
Difference b/w Dreamweaver & Adobe Muse
Hello readers, Today in my blog I would like to discuss the difference b/w Dreamweaver and Adobe Muse.
Who should use which software b/w among the both ?
-: Dreamweaver this software is used by the web designers that loves to...
5 Essential Tips for Developing Your First iOS App
Every company needs an app. If you’re the one responsible for making those apps, your work is already cut out for you. Making your first iOS app may seem intimidating, but going in with the right knowledge will provide you with some com...
Integrating SOAP in your Rails Application
Hi Friends,
Most of the large applications use SOAP for data transfer between two parties. So in rails we can also integrate SOAP support. For this there are multiple gems available. One of the mostly used gem is "savon". So here we ...
Integrating SAML with Rails Application: Part 2 ( Setting UP Local IdP server)
In my previous blog Integrating SAML with Rails Application, I told you how we can integrate SAML in your application and also told you few things regarding the Service Provider and Identity Provider. So once you have a ready Identity Provider, e...
Integrating SAML with Rails Application: Part 1
SAML is Security Assertion Mark Up Language, which was built to provide authorization between multiple identities, so that multiple services can use the same authentication.
The SAML authentication can basically happen in two ways:
A) SP In...
Google URL shortener API with Javascript
Hello Readers,
goo.gl service at Google URL shortener API takes long URLs and squeezes them into less characters to make a small link so that can be easily share on social media and email to friends. This API is free with a daily limit o...
The "Pie", "Donut" or "Semi-circular" charts
hello readers!
We designers have to deal with HTML pages and CSS every time. We have so many properties that will make a page to new look and making it more stylish by adding animation, keyframe and different effects to it. There are many enough...