Find Control in .NET

It is a way of handling Nested control (NET controls on NET Container Controls) because these nested controls are never available in coding hence we need to find them before using them like normal controls. Suppose you have a Asp.NET Linkbutton named “lnkSubCategory” and you have placed that in a repeater control named “rptCategories”. Now…

Drupal and Varnish a short introduction

Varnish is a HTTP accelerator (or reverse proxy). Its very much capable of processing 100,000 requests in a sec. Most likely quicker then Drupal, even with page caching on. Want to see how it works?   Cache hit User requests a URL Varnish checks it’s cache Varnish retrieves the data from the cache Varnish delivers…

Install Git 1.6.1 on Reckspace Centos 5.2

This is best shortest and definitely working method i found. First you need to install the dependencies yum install gettext-devel expat-devel curl-devel zlib-devel openssl-devel Then get the git source code from online repo wget http://193.198.184.21/software/scm/git/git-1.6.1.tar.gz untar the git source code wget http://193.198.184.21/software/scm/git/git-1.6.1.tar.gz Finally install git cd git-1.6.1.tar.gz make prefix=/usr/local all make prefix=/usr/local install Check if…