In AngularJS, Filters are used to format data which is served to the user. Filters are added to expressions by using the pipe(|) character and followed by a filter method. There are a lot of in-built filters available in AngularJS
For ...
Controllers in AngularJS are the JavaScript object that consist of properties and functions. Controller's main objective is to defines the flow of data in the application. In AngularJS we define controller using ng-controller directive. Whene...
This Blog is about RAM detail that Total Ram size your Android Device and used Ram size in your Android Device.
From API level 16 Android gives properties to get Ram information.
In this tutorial I will explain to get RAM size for...
Cyclomatic complexity metric was firstly introduced by Thomas J. McCabe in 1976, based on control flow representation of the program.
It is used to refer the complexity of the program(source code).
It is a measure of ...
Hi Readers,
Welcome to FindNerd,today we are going to discuss on remember me in CakePHP.
If we have a login form in our CakePHP web application, So when we checked the “Remember Me” checkbox in our login page then our login id wil...
Here we will see how the non blocking programming works and how the control goes from one program to another without sequence.
Example for Non-Blocking:
Let us create a text file file_2.txt. Now write some content in the file_2.txt
Let u...
Bootstrap is one of the most popular front-end frameworks. In this blog post, I will be discussing one of the most important concepts in Bootstrap: The Grid System.
In web design, grids organise and structure content, and make the websites eas...
Hii,
AngularJS is used to make web apps in a simple way which can be easily maintained, In this blog i am going to share a simple example by which you will learn how to create an AngularJS Applications.
Before you go through an example,yo...
Here we will learn about callback function in node. Callback functions are called once the given task is completed. Callback functions are used highly in Node. It is also known as blocking. In node.js all APIs support callbacks.
Example: Let u...
Authentication is a mechanism of verifying users coming to particular system so that they can only make use of resources for which they have been provided permission. Having a strong authentication mechanism in an important part of a system.
&...
Hii,
Use of Ternary Operator in AngularJs is one of the great feature which provides an alternative to conditions such as if, else and end if.
Using this feature you can easily use JavaScript functionalities in...
Hello Readers ,
In this blog, I am going to guide you that how you can create Rich Text Editor in your Application.I am using Jquery plugin to create Rich Text Editor it contains so many features.
First, you need to include .js file in your...
In WPF, we can easily bind WPF controls with xml data using XmlDataProvider. Using XmlDataProvider, we can bind xml data in XAML file itself without writing any code in code behind.
Here, below is the example of XmlDataProvider.
F...
We know that test driven development is basically for functional testing , in this blog we will test listview using instrumentation method runOnMainSync() that executes a call on application main ui thread.
here is the layout file :
<L...
Hii,
This blog is in continuation with my previous blog on directives in angularJs, in this blog, I will discuss expressions in angularJs.
In angularJs "Expression" are used to bind data to HTML.
E...
ANCHORS-
Anchors represent hyperlinks. A hyperlink is used to navigate or if we want to move a user from one page to another or download a file or external resources.
Anchors are also used to link to particular section of the same page by g...
Cross site scripting (XSS)
XSS is sending unfiltered data such as <script> or any other HTML data to the server, when the user needs any resource, the server sends unfiltered data to the client. The attacker may get private data.
Prev...
Test Cases:
A test case is a kind of document, which includes the test data, preconditions, expected & actual results, etc. It is based on the test scenarios to check the results and compares it with the requirement. Test case has been cre...
Hello readers, today we will discuss printing pascal's triangle using recursion. Pascal's triangle is a triangle where each number is the sum of the two numbers directly above it. We have one of the most interesting Number Patterns in Pas...
Welcome to FindNerd. Today we are going to discuss schemas in mongoose with nodejs. There are other blogs available on FindNerd which are describing different features of nodejs so you can read out these blogs as well. Question is raised that wha...
There are n number of situation where we want to call a function before or after an action. In Codeigniter, we can implement this by using Hooks. In-other-word, we can say Hooks are the event which can be called before or after the execution of a...
Hii,
This blog is in continuation with my previous introductory blog on angularJs, in this blog I will discuss about directives in angularJs.
Directives:
In angularJs "Directives" are used to extend the functionality...
Hello Readers!
This blog post will show you a really simple "home" structure. We all must've drawn such homes at some time in our childhood days, but it gets even easier with CSS. The position - absolute and relative, have the ma...
Hello Readers,
We can choose image through Cordova camera plugin but with this plugin we can only select one image at a time.
Now, Cordova image picker plugin helps to select more than one image at a time i.e user can select multiple image at...
Hi Readers,
We can download video file from Youtube if we know youtube URL of the video. First you need to add attached files (HCYoutubeParser) into your project. Now you need to call following function into your code:
let video = HCYout...
Is it accurate to say that you are doing little business web showcasing in Australia yet? The following inquiry is do your guests disregard your business? The facts could prove that your nearby business gets request from the your ne...
Basic Skills That Every Tester Should Have
1. Documentation:
Documentation is necessary to testing. Also, ensure that you see the value of the documentation process. The benefits of documentation are, it will help you to track req...
Instructions: The following programming problem can be solved by a program that uses three basic tasks-Input Data, Process Data, and Output Results. To process the data, it uses loops, arrays, decisions, accumulating, counting, se...
Bug/Defect:
Discrepancies between the expected result and actual result called a defect or A software bug is an error or fault that leads to an system or software program behave incorrectly or unexpectedly.
How to report a Bug:
Repo...
Are you interested in tracking your Android app activities? If yes, Google Analytics provides a service for which real time tracking of Activities, fragments, events, exceptions and crash reports can be done easily.
Steps to integrate Google A...
In SQL, LIKE clause is basically used to search the homogeneous data using wildcard from a database. The LIKE operator is used to find out the particular string from a table's field into database.
Some wildcard examples are give...
Hi Readers,
It is sometimes required to download files or images from server into local. We can perform these tasks by NSOperation and NSOperationQueue efficiently. The basic idea is to create each download operation separately and add these o...
Hellow Reader's ,
Some time we need to set default time zone in our applications.In this blog i am going to explain how you can do this.
This is a simple step for change the defualt timezone in cakephp.
Go to your project directory
...
AngularJS has some built-in directives, and these directives allows us to extend HTML element.
Here we are going to discuss about the two directive that are used for data binding. One is ng-model and second one is ng-bind
Data binding is one of...
TTS define Text To speech.
Android provides TextToSpeech functionality from API level 4.
TextToSpeech is in package android.speech.tts.
Here is how to work with text to speech functionality in android.
1. Create...
Hi Reader's,
Welcome to FindNerd,today we are going to discuss beforeSave() method in CakePHP.
Basically beforeSave() methods is an important feature of CakePHP and this is a pre-save logic. It is also called callback methods in Cak...
Hellow Reader's ,
In this Blog you can learn how to secure your password in DB with Blowfish password hasher. it is very difficult to hack. you can use blowfish hasher by following these steps.
First use below line in your User (Model)
...
Hello, readers.
This blog post will tell you how to get one image in place of the other on hover. The height and width of the images are 100% and the position is given absolute. Due to this, one image appears behind the other. The second thing...
Hellow Reader's ,
In this blog we are going to explain how to show image thumbnail before image upload.In many web application we need to show image thumbnail before uploading.
It will work on every browser which support HTML5 Fil...
Pattern Attribute:
Pattern attribute is used for input field validation and used to provide a regular expression which is used to match the input fields value whether the value is according to the pattern specified or n...
Here we will learn how to create a server instance in node.js. First of all we will have to check if the node.js is properly setup in our local machine. Let us create a file with name demo.js and write the below code in the file:
console.log...
Hello Friends,
If you are new in Symfony and looking to get location to save your js, css or image files, please review this blog. We have many ways to save the public files in symfony here we are describing two different ways to save these pu...
In modern world, most of the web applications are api based. So using api's we also need to validate the authenticity of the user. When it is a proper web application the authentication of the user is maintained using cookies and sessions. Bu...
Hello readers
If you want to use Background Transition on your anchor tag, buttons, div, etc. then code below will be helpful for you.
According to the code the transition will occurs on hover or and will focus on when time is define...
Following are some key challenges of Software Testing:
1) Testing the complete application:
It is quite impossible to test the complete application. There are many test combinations so it’s impossible to test every combination. It wil...
There are two ways to know that the particular application is installed in your android device or not.
1st way:-
In first way we get the list of installed application and check whether the targeted package name (package of the application t...
PAGINATION IN RECYCLERVIEW
Hello, Here is a simple pagination tutorial in recyclerview.
Step 1 : - Create a recycler view and its adapter, In my case i have created a custom adapter in order to show user's profile image.
...
Welcome to FindNerd. Today we are going to discuss GET request in nodejs. There are different request methods available to process the data. Here we are going to take a small example on GET request in nodejs. First of all we want to mention that ...