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

Share
Posted in C#, Programming, Tutorials | 3 Comments

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

Share
Posted in Analytics, Programming, SEO, Tutorials, Web | Tagged , , , | 2 Comments

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

Share
Posted in Analytics, Client-Server, Database, Domain Name, Hosting, Programming, Project, Tutorials, video, Web, Woopra | Tagged , | 9 Comments

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

Share
Posted in Help, microsoft, Tutorials | Tagged , , , , | 16 Comments

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

Share
Posted in linux, Programming, Tutorials | 2 Comments

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

Share
Posted in Client-Server, Help, linux, Tutorials | Leave a comment

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

Share
Posted in Help, Raymond Abdallah, Tutorials, Web | 8 Comments

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

Share
Posted in Help, Imate, Jamin, Tutorials, Wifi | Leave a comment

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

Share
Posted in Client-Server, Cluster, Parallel Programming, PHP, Programming, Project, Tutorials | 2 Comments

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

Share
Posted in C#, Client-Server, PHP, Programming, Tutorials | 11 Comments