
Search In
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 the numbe
Angular 2 architecture consists of module , component , template , metadat , data binding , service , directive and dependency injection.Some of them are :
Module
Component
Template
Metadata
Module:
A module is a block of code that is used t
To show HTML text on UILabel we need to convert the text to NSAttributedString. To achieve this we can use following code:
if let htmlData = htmlString.data(using: String.Encoding.utf16, allowLossyConversion: false) {
if let att
In my previous blog Dealing with Directories in Ruby, I explained you, how we can play with directories in ruby. Today I am going to tell you how we can interact with files by opening them in different modes and performing read/write operations in fi
In your login page you have two fields that are username/email and password in that page you have a checkbox . In that form you have a checkbox if you select that check box then your cookies will be saved in your browser for that remember me code you
Hello friends,
Today we learn how to check a value exist an array or not. In jQuery, $.inArray() method is used to check the value exist in an array or not. If value exist it will return the index of the value and if the value not exist in arr
Hello friends,
Today we learn how to make clone of an element using jQuery. In jQuery, clone() method is used to make clone or copy of a set of element or a particular element. This method makes not only the copy of element but also it's child,
Hello Reader's if you are new to asp.net and looking to see how email is send then this blog is helpful to you. Sending the email in asp is comparatively similar with php just you have to follow the coding syntax.
<%
Set myMail=CreateObject(
Hi Readers,
Welcome to FindNerd, today we are going to discuss how to use a number_format() function in PHP ?
Basically, a number_format() function is used to format numbers with grouped thousands. This function is very easy to implement.
Number_fo
Hi Reader's,
Welcome to FindNerd, today we are going to discuss how to Calculate sum and product of all values in the array in php?
Calculate sum and product are very important features when we need calculate sum or product of values stored in a
