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

Search In

The Grid system in Skeleton Framework.

Skeleton is a lightweight framework for CSS . It specifically has two CSS files: the popular normalize.css file and the skeleton.css file. The grid system of Skeleton is used create responsive website hence it's a most important part if Skeleton

Honeypot

What is Honeypots ? A honey pot is a computer security system which is used to attract people who’s motive is to penetrate the security of someone system . It is a trap to delude Hacker . Honeypot monitor the activity of the Intruder . when multip

Data pass between two viewcontrollers

Hi All, If you need to pass data from one ViewContrlloer to other ViewController then first make properties in second ViewController in which you need that data For example:- In SecondViewController.h @interface SecondViewController : UIViewContr

Best way to create a singleton class in Objective-C

There are different ways to create a singleton/shared instance of a class in Objective-C. Here I have explained two most preferred methods for it and both are thread safe. 1) Using "@synthesize" #define SINGLETON_FOR_CLASS(yourclassname) \

Architechture of Katana

Architechture of Katana based application: There are four layers of Katana based applications: Application layer- Application layer is the client. e.g. your website built in Asp.net MVC , or console or windows application. This is used by end use

Select all Siblings after a child

In jQuery, to select all siblings div after a child we use a function nextAll(). Syntax: $(element).nextAll(); For example: <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <div id="main"&

Efficient method to find maximum difference between two elements in C?

#include<stdio.h> int maxDiff(int a[], int n) { int maxDiff = -1; // Initialize Result int maxRight = a[n-1]; // Initialize max element from right side for (int i = n-2; i >= 0; i--) { if (a[i] > maxRight)

Namespace in C++.

Namespace In C++ two variables with the same name are not possible in the same scope i.e a name given to specific type or function represent one entity in a particluar scope but with namespaces, there is a possibility to create two variables or memb

How hashMap internally works in java ?

It’s not wrong to say that HashMap is an implementation of Map interface as it allows value storing in key value pairs. Although unique elements are present in Hashmap, null values and only one null key are allowed. Hashmap basically works on

Test Scenarios

Test Scenarios It is a high level document that consist of all the possible combinations or ways of testing the application. Generally, test scenarios are written to understand the flow of the application. Why it is high level document? As it does

1 16 187
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: