Category Archives: Tutorials
Disable Column Sort in DataGridView
DataGridView has column sorting enabled by default. It’s usually a good thing but in some rare cases it can be a problem and should be disabled. To disable it, add a ColumnAdded event: this.dataGridView1.ColumnAdded += new System.Windows.Forms.DataGridViewColumnEventHandler( this.dataGridView1_ColumnAdded); and add … Continue reading
Apache Url Rewrite for SEO
I’ve been working on a personal business site of mine (I’ll post the link once I’m done), it has been listed in googles index recently and to my surprise I’ve forgotten to optimize the urls on the site and … Continue reading
Woopra Live Web Analytics in Action
I’ve been a beta (actually even pre-alpha ) user of Woopra for a while (one of the first, if not the first), so it’s now time to pay my dues by posting a video about it, the video was made … Continue reading
Asus Realtek HD audio problem
I recently got a new pc with an Asus P5K motherboard, after reformatting it the built-in sound card was not working anymore. This is how I fixed it: From control panel, add/remove, remove these 2 softwares if they are installed, … Continue reading
How to try the new metacity composite manager without installing it
Author: Hussam Al-Tayeb Metacity is the default window manager for the Gnome desktop. The next major version of metacity (2.22) to be released later this year, will have a built in composite manager that will be enabled by default if … Continue reading
Installing, Running and configuring a Squid proxy server
Author: Hussam Al-Tayeb The following tutorial illustrates how to install and run a Squid proxy server. First off, a little info about Squid, Squid is a fully-featured HTTP/1.0 proxy which is almost (in progress) HTTP/1.1 compliant. Squid offers a rich … Continue reading
Live Mail to Gmail
Author: Raymond Abdallah It’s been a long while since I’ve been thinking to change my Windows Live Messenger account from my old Hotmail account to my Gmail one! I wanted to migrate totally from the Microsoft Corp (not totally since … Continue reading
Imate Jamin – HTC Prophet – M600 Wifi problem
I recently changed my home network configuration, because of some weak wifi spots and I was amazed to see that my Jamin was going nuts from the change! Although I was able to ping it from within the network, I … Continue reading
Poor Mans Cluster PHP library to run a cluster
I’ve been cleaning my laptop today, and came along a project I did for my Parallel Programming course, I’ve never published this because the code was never completed as I lost interest, the challenge was the idea and the concept, … Continue reading
Upload using C# as Client and PHP as Server
Level: Beginner (coder) This is a small tutorial which will teach you how to upload files using a C# client application to a server running PHP. We’ll call the PHP script “upload.php”, this is what it should contain: <?php $uploaddir … Continue reading