Category Archives: Programming
Eclipse whole word search in Workspace
Although not very obvious, it is actually possible to perform a whole word search in your eclipse workspace. To do so, click on “Search” (from the menu) and then “File” from the sub-menu. Make sure to select “Regular expression” and then … Continue reading
Visual Studio 2010 C++ Service Template
So you install Visual Studio 2010, all excited, want to code your first C++ Service and notice that there is no more template for Windows Service under C++, then you check under C# and it exists there… so what the … Continue reading
Asterisk Setup – 404 Not Found
If you’re getting a 404 Page Not Found error when you’re trying to access your Asterisk web gui on http://localhost:8088 (by default), it’s because you need to create a symbolic link to /usr/share/asterisk/static-http, do the following and all should be … 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. I had previously posted a version for C# that can be found here: http://www.johny.org/2007/08/upload-using-c-as-client-and-php-as-server/ … Continue reading
Apache2 .htaccess RewriteEngine error
To enable .htaccess files on your server, edit “/etc/apache2/sites-available/default” file, change AllowOverride to All NameVirtualHost * <VirtualHost *> ServerAdmin admin@site.com DocumentRoot /var/www/ <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow … Continue reading
Mysql could not fetch schema table status
To fix MySQL Administrator error ”Could not fetch schema table status”, simply disable McAfee and your problem should be solved
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
New Woopra Sneak Peek
Here’s a sneak peek preview of what to expect in the next version of Woopra! For all those who are waiting for an invite, post a comment and make sure to put your url in the url section (comments … 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