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

Notification Badge using in CSS

Hello Readers Notification Badge is the most important part of the webpage. You have probably seen notification badges somewhere, such as on Ecommerce sites, and Social Media Sites like: Facebook, twitter, LinkedIn etc. So, in this tutorial...

How to make Bootstrap columns all the same height?

Hello Readers! Bootstrap is the most amazing HTML and CSS framework by far. Also, the grid system is near to perfect. It has columns and rows to keep our content just in place perfectly. But everything has its weak point. Bootstrap has i...

Create a HelloWorld application using angularJS

Generally any angularjs application requireds a following components: 1. ng-app - This component is required to make a links between the AngularJS application and the HTML. 2. ng-model - This component is required to bind the values of AngularJ...

routing in codeingiter

Hello Reader's,  If you are working on CodeIgniter Project and want to customize the pages URLs. Codeigniter offers you to do this by using it Routing function. The Routing the is method for hiding the controller and model functions f...

HTTP 1xx Series Status Codes Indicating Informational Message

Here we will learn what is the meaning of all the status code that come under the 1xx series (i.e. indicating informational message in different situations). HTTP 1xx series status code are as an acknowledgement to the client. With the help of...

Get Android app version from Play Store link andorid

This blog is about get current version of Android app on Play Store android using Jsoup. There is no official API to get version number but we can get it by reading HTML.   Here we start. 1. Create Project. 2. Open Manifest file and...

How to create a simple custom module in Joomla?

Hello friends, today we will discuss how to create a custom module in joomla. Here, we are creating a module example. You can change the name of your according to your requirement. To create a module in joomla four basic files are required: ...

Using multiple submit buttons inside a single form tag in ASP.NET MVC

In this article we will see how we can use multiple submit buttons inside a single form tag in ASP.NET MVC view page, where each submit button will target different actions based on its value. It is important to note that we will use a single POS...

Play video within given frame or in UICollectionViewCell/UITableViewCell

Hi Readers, Usually we have scenarios for playing videos within the app. MPMoviePlayerController will be used for that. But you can see MPMoviePlayerController deprecated in iOS 9 and later. So we need to put our focus on AVPlayer now. With AV...

Bind() method in jQuery

Bind() method: Bind method is used to attach events to selected elements and also used to specify a function when the event occurs. Syntax: $(selector).bind(event,data,function,map) Example: <!DOCTYPE html> <html> ...

Hands-up Notification Android

Hand-Up notification comes up with API level 21. Hands-up notification is open small floating window on top of the screen only when device is active. Hand-up notifications are High-priority notifications.Hands-up notification required to set ...

Adding textbox dynamically and save the values in angularjs

To create textbox dynamically in angularjs, we have to declare an array named inputs in which we will push the textbox element dynamically. In input box, we have included ng-model to bind the property name to the input. so we ...

Flip Effect

Hello Everyone!! In this blog we are going to flip an image. The image has two side:- Front side:- Here is an image. Back side:- Here is some text. When the hover effect is apply to the image block the the back side text will appear. ...

Explanation about HTTP Status Codes and HTTP Error

In this blog we will learn about the HTTP status code and error code. When an HTTP request is send by the client sends the server receives an appropriate response. For understanding the response properly, we will always find a three digit HTTP st...

How to make Flip animation image in android?

 In the below example code, I have set the animation to an ImagView when you clicks on image, image will rotate 180 degrees from Y axis. Here first, I have added an ImageView within actvity_main.xml layout, after that I have created a flip.x...

How to add Google fonts in TinyMCE editor in rails application?

In my app there is requirement to add Google fonts select-box in existing TyniMCE editor and also  fonts family should be load from app/assets folder. To complete this task we will following  the below steps.     ...

Using Delayed Jobs in Rails

Using Delayed Jobs in Rails When creating a web application sometimes need arises that we have to schedule some jobs during the execution of a particular method. Due to these job the render of the page has to wait until the task gets over...

Asp.net MVC: AngularJs Pagination

Asp.net MVC: AngularJs Pagination AngularJs allow pagination through uib-pagination directive. Example to demonstrate Asp.net MVC angularjs Pagination.  Asp.net MVC StudentController: using System.Web.Mvc; namespace Mvc...

Types of Divider

Hello Reader This blog post will tell you how to make different types of divider between two HTML elements. There are total 10 dividers I will be providing here. The very first is a single line divider which we most commonly use. The second d...

Test Cases for Web Application Cookie Testing

Test cases:   Some of the major test cases for Web Application Cookie testing are below:   1) As a Cookie privacy policy, ensure from the design documents that no private or sensitive information is getting saved in the cook...

ProgressBar in Notification Android

Sometime we need to download large file from server or some progress which takes time. For user experience we show progress bar so that user can check estimate time and progress completion. This blog is about how to set up Progress bar in No...

Open Another Modal in Modal bootstrap

Here what I am doing is opening the modal window in which there are two buttons one is close button and  other is open other model button. On clicking the other modal window other modal opens up and the previous one fades away. Here i will s...

Integrate Splunk MINT in an android project

Splunk MINT is used to send crash report of your mobile application. After integrating Splunk MINT SDK in your application, you can use Splunk MINT Management Console to monitor your mobile apps.   Follow the simple steps to integrate...

Discussion on login with Facebook in CakePHP

Hi Reader's, Welcome to FindNerd,today we are going to discuss login with Facebook in CakePHP. As we see that login with Facebook is very important feature for a web application because most of users do not take too much interest in signi...

Handling IFrame in Selenium Webdriver

IFrame: Its a Html document which is embedded in another HTML document or web page inside other webpage on a website. >> It is used to insert the content into the webpage from different source such as advertisement. >> IFrame ...

Software Errors That Every Tester Should Know

Software Errors and Bugs:   An error is a variance from perfection or correctness. A bug is an error or fault in a product which leads to the incorrect or unexpected result.   So, the following can be concluded:   ...

Password Hasing in Cakephp 3.0.

Hello Reader's , Hope your are doing good today. Today we will learn about password hashing in CakePHP 3.0. Before going to start you should know about Password Hashing. Now days password are one of the most important security featu...

How to create simple Chatbox Speech Bubble

Hey all! This blog post is about creating simple chatbox speech bubbles.  There are 4 separate classes. One for the chatbox conversation, second for the speech bubble, third and fourth for the two persons interacting respectively. The spe...

Axlsx gem Integration in Rails

AXLSX gem is one the most recommended gem for the creating excel file in rails application. To integrate AXLSX gem, we have following steps. first we need to insert gem in our gemfile   gem 'axlsx_rails' and run bundle in...

Set timeout function example

The setTimeout funtion is a JavaScript code used to execute a code in particular time intervals. These time intervals are called timing events. There are two methods to set interval with JavaScript:- setTimeout(function, milliseconds)...

keypress, keydown, keyup events in jQuery

Hello readers, Today we will discuss about keypress, keydown, keyup events in jQuery. These events fires when user pressed any key. Lets have a look all three events:   keypress: This is a special event and works when any key ...

CSS Linear gradient property

Hi,  This blog is continuation with my previous blogs in which I had discuss type of CSS gradient properties, In this blog i am going share how to use css linear gradient property in different ways. Go through the following examples below...

An Example of AngularJs with NodeJS

Welcome to FindNerd. Today we are going to take an example of angularJS scope variable with nodeJS. There are other blogs available related to angularJS as well as nodeJS. You can check these blogs to get a clear idea of these two javascript fram...

How to create a realistic american flag in illustrator

In this tutorial we will learn about to make a realistic flag in illustrator.   Step 1: First we need to create the vector american flag. so open up a new document and make the rectangle on the canvas. Fill the red color inside it. ...

Shapes of CSS

Hello Readers! In this blog post, let us learn how to create simple shapes that can be made even simpler using CSS. I am providing the code for 5 shapes we might be using then and now. Note that, all of the figures below use only a single HTML...

Inspection in Software Testing

Its a method of verification.The objective of inspection  is to find defects in the code or product, thus improving the quality of the work. A thorough word by word checking of a software product(or part of a product) with the intention o...

An Overview of javascript within a form

Hello everyone , Today in my blog with the help of an example i.e cake form I have illustrated the use of array, if and else statement and JavaScript functions .   Basically the form helps in calculating the price of the cake depending...

Methods to monitor android EditText

If you have to perform certain tasks before, after and during the text changes in android EditText the following methods will help you to monitor your operations. Implementing the Textwatcher interface provides the callback methods listed below, ...

Accessing another apps by listing installed applicatoins in android

This tutorial is for getting the list of installed apps in your android devices. The information we reterive with the currently installed apps in a device using  PackageManager class. We will get the instance of this class by calling getPack...

Range operators in Ruby

Range operators in ruby are used to extract a sequence. Sequences have an initial point and end point by which we can generate consecutive values in the sequence. The values of a range may be objects, numbers, characters or strings.   ...

Globalization (or Internationalization) and Localization

Globalization (or Internationalization) In IT industry, Globalization is also known as Internationalization. Globalization is the process of making a product multi-lingual or in multiple cultures/locales. It is the process of designing and dev...

How to display flash messages in Symfony

Hello Friends, If you are looking to flash success messages in Symfony. Please review the code below: 1) Open your controller and put the below code with your changes: // Define your success message as below $request->getSession(...

About HTTP and HTTP request and response structure.

In this blog we will learn about what is HTTP , HTTP Request structure at the client side and HTTP Response structure at the server side. HTTP (HyperText Transfer Protocol): Data communication in the internet is done on the basis of this pr...

What is NoSQL Database and its type

NoSQL is a non sql or we can say a non relational database management system. NoSQL is designed to support the requirements of cloud applications and to overcome issues like scalability, performance and data distribution limitations of relational...

Navigation Activites on Deep Linking andorid

This blog is about Navigation of application activities. When an Activity is opened with Deep Linking then pressing back button close application instead of working in normal backstack flow. If you are not familiar with Deep Linking then pleas...

Asp.net MVC: AngularJs ng-include

Asp.net MVC: AngularJs ng-include AngularJs ng-include directive allows an HTML page to embed various other HTML pages. In Asp.net MVC AngularJs ng-include allows inclusion of various views(cshtml pages) in a view(cshtml page). .cshtml page...

How to crop the video from URL in objective-C

If we record the video from our app and need to crop that video in the square shape on any other specific frame then use the following code- In this code, we need the URL of the video that can be local URL because when we record any video it i...

clone() method in jQuery

clone() Method: Clone() method is used to make copy of selected html element including its child nodes, data and properties. It is useful when we need to duplicate html elements in a webpage.   Syntax: $(selector).clone(true|fa...

How to remove html element with the help of jQuery

It is very easy to remove html elements, we can do this with the help of jQuery . jQuery have two method for doing this one is jQuery remove() method and the other one is jQuery empty() method. Below i am explaining jQuery remove() meth...

Speech Bubbles on hover

Hello Readers If you want to create speech bubbles using css3, here is the code that will help you. This blog post will tell you how to make CSS speech bubble without using any image. You need a <div> element. Though I’m u...
1 65 269
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: