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…

Adding dynamic form elements using AHAH in Apply for for role Module

In Drupal AHAH is the best practice for adding removing from elements dynamically  I am not going to explain the basics if anyone want to learn what is AHAH go to http://drupal.org/node/331941. I have been using apply for role module in the registration form. I got a task form my client to add some fields dynamically in the…

How to create a new project in XCode

This post is just to let you guys know how to create a new project in Xcode 4.x. So First of all open the Xcode from your Applications folder or search “Xcode” in spotlight. When xcode is opened now you have to follow these steps Click on “File” available in the top bar of your…