Monday, November 11, 2013

First of all we have to apply a patch to the original kernel 
Git /ɡɪt/ is a distributed revision control and source code management (SCM) system with an emphasis on speed. Git was initially designed and developed by Linus Torvalds for Linux kernel development in 2005.

Installing GIT:

GIT can be installed in many  ways. The two major ones are: to install from source and to install from an existing 
package for your platform i.e apt based (Ubuntu, Debian) or rpm based ( Fedora ).

Installing from Source:



$ yum install curl-devel expat-devel gettext-devel \
  openssl-devel zlib-devel

$ sudo apt-get install libcurl4-gnutls-dev libexpat1-dev gettext \
  libz-dev libssl-dev


When you have all the necessary dependencies, you can go ahead and grab the latest snapshot from the Git web site:
http://git-scm.com/download
or you can download the package using wget:
$ wget https://git-core.googlecode.com/files/git-1.8.4.2.tar.gz
Then, compile and install:
$ tar xf git-1.7.2.2.tar.gz
$ cd git-1.7.2.2
$ make prefix=/usr/local all
$ sudo make prefix=/usr/local install

Installing on Linux

If you want to install Git on Linux via a binary installer, you can generally do so through the basic package-management tool that comes with your distribution. If you’re on Fedora, you can use yum:
$ yum install git-core
Or if you’re on a Debian-based distribution like Ubuntu, try apt-get:
$ sudo apt-get install git
That's it.
The first thing you should do when you install Git is to set your user name and e-mail address. This is important because every Git commit uses this information, and it’s immutably baked into the commits you pass around:
$ git config --global user.name "Digital Exploits"
$ git config --global user.email digitalexploits@example.com

Again, you need to do this only once if you pass the --global option, because then Git will always use that information for anything you do on that system. If you want to override this with a different name or e-mail address for specific projects, you can run the command without the --global option when you’re in that project.
If you want to check your settings, you can use the git config --list command to list all the settings Git can find at that point:
$ git config --list
user.name=Digital Exploits
user.email=digitalexploits@gmail.com
...
Before installing Graphics Driver, let's install some of the dependencies:



Sunday, October 20, 2013


#main-wrapper {margin: 0px auto 0;width: 960px;}
#content-wrapper {float: left;width: 600px;}
.post{margin-bottom: 15px;padding-bottom: 15px;}
.post-body {clear: both;margin-top: 10px;line-height: 20px;}
.post-body h1, .post-body h2, .post-body h3, .post-body h4, .post-body h5, .post-body h6 {margin-top: 15px;}
.post-body h2 {margin-bottom: 0.4em;}
.post-body p {margin-bottom: 10px;}
.post-body img {padding: 3px;border: 1px solid #e1ddd3;background: #eaeaea;}
.post_thumbnail {background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxDDmseUQOI_7EfN1Vf_LJkynlfK-7by0a6rSzjCrFWC_dreywtdD2HOHcDNxP7DQCQ9-z3d-dhwtd7b8G9OVFKtK_KEDO1XXlQ3CyH5FM907LYn3Fac841uWOZcGQTAIfMJRgWR_qFWV4/s1600/imgbg.gif") no-repeat scroll 0 0 transparent !important;margin-bottom: 17px !important;padding: 9px !important;}
.post-body th {padding: 0;margin-right: 2px;}
.post-body li {list-style: circle inside;}
.post-body ol li {list-style: decimal inside;}
blockquote {border-left: 10px solid #ccc;margin:10px 0 10px 20px;padding-left: 20px;}
blockquote p {padding: 10px;}
.alignleft {float: left;margin: 5px 10px 0px 0px;}
.alignright {float: right;margin: 5px 0px 0px 10px;}
img.aligncenter {display: block;margin: 0 auto 5px;}
.post table{font-size:1.2em;margin:5px 0 25px 1px;}
.post table td{padding:8px;border: 1px solid #ccc;}
#blog-pager{clear:both;margin:20px 0 20px;padding:10px 0;}
.comments h4{font-size: 22px;font-weight: bold;margin: 5px 0;padding: 10px 0;}
#comments-block.avatar-comment-indent {position:relative;margin:0;}
dl#comments-block {line-height:1.6em;margin:2em 0 1.5em !important;}
#comments-block .comment-author {font-size: 14px;font-weight: bold;margin-left: 0;padding: 3px 5px 3px 75px;border:0 none;}
#comments-block .comment-author a, dl#comments-block dt.author-comment a{color:#333;text-decoration:none;}
#comments-block .avatar-image-container {background:url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhgtewIKv40wXLB0gcHYXGcZISB9Qb5enoiJ8iIWSnhl3TyzOw2bMhIkwIrCKfayHQwTewsis6Y2GkKN0205RYXg4uiHU434RaGwVIhGf2j3Sq1msiyxn61m4eLdxLYzdghBtad69fQ3OM/") no-repeat scroll center #D2D0CC;border:2px solid #D2D0CC;height:50px;left:10px;position:absolute;width:50px;margin-top:5px;}
#comments-block .avatar-image-container img {float:right;height:50px;width:50px;border:medium none !important;}
#comments-block .avatar-image-container.avatar-stock img {border-width: 0;padding: 0px;}
#comments-block .comment-body {padding-left: 75px !important;padding:5px;}
#comments-block .comment-body p {margin:0 0 0.75em;}
#comments-block .comment-footer {border-bottom: 1px solid #D2D0CC ;font-size:10px;padding:5px 5px 15px 75px;text-decoration:none;font-style:italic;margin: 0 0 15px 0 !important;}
#comments-block .comment-footer a{text-decoration:none;}
.post-footer {margin-top: 15px;}
h2.date-header, .PageList h2, .Label li span{display:none;}
a.home-link, #blog-pager-older-link a, #blog-pager-newer-link a{background:#a0434a;border: 1px solid #000;color:#fff;border-radius: 3px;margin:2px;padding:3px 7px;text-decoration:none;}
a.home-link:hover, #blog-pager-older-link a:hover, #blog-pager-newer-link a:hover{background:#a0434a;border: 1px solid #000;color:#000;border-radius: 3px;margin:2px;padding:3px 7px;}
.Profile img {border:5px solid;float:left;margin:5px 10px 5px 0;padding:1px;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;}
.profile-data {color:#999999;font:bold 20px/1.6em Arial,Helvetica,Tahoma,sans-serif;margin:0;text-transform:capitalize;}
.profile-datablock {margin:0.5em 0;}
.profile-textblock {line-height:1.6em;margin:0.5em 0;}
a.profile-link {clear:both;display:block;font:80% monospace;padding:10px 0;text-align:center;text-transform:capitalize;}
#sliderw {clear: both;width: 930px;height: 356px;padding: 15px;background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhERJKa6nT5AkqXuOTosXd-AAVfEw-Nwm3SmC0zGIraxqGnIeYppmOJiMnBU25fTubdzLZ9NiuX4w0WELXqbOOVyb0YOnxyamFyYw4w9Ny30lWfGrRIzwTpVBbjhY0b6OELUI0rgENINsgt/s1600/slide-shadow.png) no-repeat;margin: 0px auto 20px;position: relative;margin-top: -252px;z-index: 999999999;}
#slider {position:relative;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCD1gKw4RyMiKvljKRqvK5CzSAstFZCSLpNW7H6i4IQS17gHRI-0jPb6yMtAaWH7XKXDRwgUZ1aFDn1KEI8GTpjnyrlyiavgdG-VnjDXjq9y3VKievFuID0Vqzbq1ELqGH2rNBSjqp-4Cv/s1600/loading.gif) no-repeat 50% 50%;width: 930px;height: 317px;}
#slider .desc {font-size: 11px;margin: 0px 0 0 0px;padding:0;color:#fff !important;}
.tit {font-size: 12px;color: #fff;margin-bottom: -10px;display: block;text-transform: uppercase;text-shadow: 1px 0 1px #000;}
The CSS radial-gradient() function creates an <image> which represents a gradient of colors radiating from an origin, the centerof the gradient. The result of this function is an object of the CSS <gradient> data type.
Radial gradients are defined by their center, the ending shape contour and position, and color stops. The radial gradient consists, going from its center to its ending shape and potentially beyond, of successive uniformly-scaled concentric shapes, identical to the ending shape. Color stops are positioned on a virtual gradient ray going out horizontally of the center and going to the right. Percentages positioning of color stops are relative to the intersection between the ending shape and this gradient ray representing 100%. Each shape is monocolor and defined by the color on the gradient ray it intersects.
Ending shapes can only be circle or ellipse.
Like any other gradient, a CSS radial gradient is not a CSS <color> but an image with no intrinsic dimensions, i. e. it has no natural or preferred size, nor ratio. Its concrete size will match the one of the element it applies to.
The radial-gradient function does not allow repeating gradients. For such a functionality, use the CSS repeating-radial-gradient function.

Syntax

Formal grammar: 
  radial-gradient( [[ circle               || <length> ]                     [ at <position> ]? , | 
                    [ ellipse              || [<length> | <percentage> ]{2}] [ at <position> ]? , |
                    [ [ circle | ellipse ] || <extent-keyword> ]             [ at <position> ]? , |
                                                                               at <position> ,     <color-stop> [ , <color-stop> ]+ )
                   \------------------------------------------------------------------------------/\--------------------------------/
                                 Definition of the contour, size and position of the ending shape         List of color stops  
    
          where <extent-keyword> = closest-corner | closest-side | farthest-corner | farthest-side
            and <color-stop> = <color> [ <percentage> | <length> ]?
Definition of the ending shape
radial-gradient( circle, … )                /* Synonym of radial-gradient( circle farthest-corner, …) */
radial-gradient( ellipse, … )               /* Synonym of radial-gradient( ellipse farthest-corner, …) */
radial-gradient( <extent-keyword>, … )      /* It draws a circle */
radial-gradient( circle radius, … )         /* A centered circle of the given length. It can't be a percentage */
radial-gradient( ellipse x-axis y-axis, … ) /* The two semi-major axis are given, horizontal, then vertical */

Definition of the position of the shape
radial-gradient (… at <position>, … )

Definition of the color stops
radial-gradient (…, <color-stop>)
radial-gradient (…, <color-stop>, <color-stop>)

Values

<position>
<position>, interpreted in the same way as background-position or transform-origin. If omitted, the default is center.
<shape>
The gradient's shape. This is one of circle (meaning that the gradient's shape is a circle with constant radius) or ellipse (meaning that the shape is an axis-aligned ellipse). The default value is ellipse.
<size>
The size of the gradient. This is one of the Size constants listed below.
<color-stop>
Representing a fixed color at a precise position, this value is composed by a <color> value, followed by an optional stop position (either a <percentage> or a<length> along the virtual gradient ray). A percentage of 0%, or a length of 0, represents the center of the gradient, the value 100% the intersection of the ending shape with the virtual gradient ray. Percentage values in-between. are linearily positioned on the gradient ray.
<extent-keyword>
Keywords describing how big the ending shape must be. The possible keywords are: