Technology Inside Out!

Index ¦ Archives ¦ Atom ¦ RSS

Variables in PYTHON

Variables in Python

Variables

Variables are used for storing data in the form of integer,char ,boolean etc.They act as a storage medium for us . Based on the datatype of variable  interpreter allocates the memory required by that datatype. There are 4 types of variables.

  • Integer
  • String
  • float
  • complex

Values are assigned …


Create your own Simple File Transfer App over LAN (with Source code in JAVA)

Many Core Java packages can be used to create useful applications. This application uses java.net package to establish connection between two systems residing on the same network.  This point is important, because it will not work for arbitrary networks (having no connection between them). For those who don't have …


Getting Started With 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 …


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

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 …


JAVA - Getting Started with Introduction

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 …


CSS - Border Radius for rounded corners

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 …


ASP. Net Basics : Deny access to a particular folder

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 …


Z-Index in CSS

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 …


PYTHON - Getting Started

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 …


Understanding Conditional Statements: if else

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 …

© The Geeky Way. Built using Pelican. Theme by Giulio Fidente on github.

Disclaimer Privacy policy