Getting Started With Chef-solo

Posted on Thu 30 January 2014 in Linux • Tagged with Automation, Chef, Chef Solo

Chef-Logo

Chef is an amazing tool from opscode to automate your work. Though it is very useful, it is also very complex to understand and work with. Before discussing about Chef-solo, here are some terminologies related to chef that we should learn first.

Recipes: These are the files that contain the …


Continue reading

Beginning Android, for Java / C++ programmers (Android-Part 0)

Posted on Mon 27 January 2014 in Android • Tagged with Android, Java, Programming

Beginning Android

Most of the people now have Android devices. This attracts a lot of people to begin career as an Android Developer. Although creating games with sophisticated graphics isn't easy, but creating a simple Android app is. What you need to start Android Application Development is good knowledge of OOPS concept …


Continue reading

JAVA - Getting Started with Introduction

Posted on Sun 26 January 2014 in Java • Tagged with Java

Introduction_to_java

Before learning JAVA, it is advisable that you should have a programming background. Even if you re not from programming background, I will try to make it as simple as I can.

JAVA is one of the most powerful language. The various software which are powered by this programming language …


Continue reading

CSS - Border Radius for rounded corners

Posted on Sat 25 January 2014 in CSS

Border radius is used to create rounded corners  see the following.

[codepen_embed height=200 theme_id=1 slug_hash='emxdk' user='ianoop' default_tab='css' animations='run'/]

css border radius

Above code fore border radius is equivalent to

border-top-right-radius: 20px;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;

or

border-radius: 20px 20px 20px 20px;

You can specify rounded …


Continue reading

ASP. Net Basics : Deny access to a particular folder

Posted on Fri 24 January 2014 in ASP.NET • Tagged with ASP.NET

ASP.NET.ARTICLE.Deny_Access_to_user_cover_page

Setting authentication is most important part of asp.net web application project, there can a time where you don't want any user to access a particular folder. For example while creating a Gallery project we don't want any user to access the /pictures folder.

ASP.net supports 3 modes of …


Continue reading

Z-Index in CSS

Posted on Sun 19 January 2014 in CSS • Tagged with CSS, HTML

z-index

What is Z-Index ?

Z-Index is the property of CSS which is used to order the elements behind and in front in the form of stack. You can consider this a virtual stack where the higher value of z-index is placed infront and the lower value of z index is placed …


Continue reading

PYTHON - Getting Started

Posted on Wed 15 January 2014 in Python

1624592_800549696627341_1247213667_n


 

Why Python ?


Python is a **high-level programming** language whose syntax is said to be clear and expressive. Python has a large standard library. Python is an easy to understand language we can learn this language in a few days and for making any gaming software we should must have good …


Continue reading

Understanding Conditional Statements: if else

Posted on Sun 12 January 2014 in C • Tagged with Conditional, If-Else, Nested

In this tutorial, we'll uncover something much interesting which would simplify our work as a programer and help us to check if a given condition is true or not. We'll study about the Conditional statements like if - else , if-else if-else, nested if -else and switch (continued in next tutorial)

Understanding …


Continue reading

Operators in the C language

Posted on Thu 09 January 2014 in C • Tagged with C language, Operators

Welcome to your next tutorial in the C language,  today, we’ll discuss about operators in the C language. We have already discussed about Variables in C language, and how we can store data in variables input by user, next we may need to update this data , or make various …


Continue reading

Asp.net Basics : Uploading a file in asp.net using validations (Part 5 of 5)

Posted on Tue 07 January 2014 in ASP.NET • Tagged with ASP.NET, C#

This is a part 5 of the 5 part tutorial.
If you are visiting this page for the first time then you must visit part 1 of the tutorial
on how to upload a file on server here

Contents of this 5 part tutorial
Part 1 : Basics of ASP.Net …


Continue reading