Limit RSS to certain categories in Wordpress.

Limit RSS to certain categories in Wordpress.

If you’re like me, you may once in a while have something to write about that isn’t necessarily related to your overall blog topic. Take me for example. My blog is mainly about internet and application development (programming) however sometimes I find a really cool tip or trick that isn’t necessarily related, such as a [...]

Wordpress Missed Schedule Explanation and Fix.

Hey guys, long time Wordpress user here. I wanted to give a little info about the “missed schedule” problem people have been having in Wordpress. The Wordpress scheduler (wp-cron.php) needs access to your blog (http://www.yourblog.com). If your hosting provider isn’t setup correctly it (your ISP) will not be able to access your site. This is [...]

Forum software for Wordpress.

I’ve recently been on the hunt for forum software with good Wordpress support. Many of the mainstream packages such as phpBB and SimpleMachines(SMF) don’t integrate real well with Wordpress. Plus, many of the mainstream forums packages are overkill for what I (and probably most bloggers ) really need.

How to install Wordpress with FTP.

Wordpress is a popular blogging software package freely available to anyone. Many hosting companies provide one click installation of a wordpress blog but some traditional hosting service may not. Installing Wordpress isn’t as difficult as you may think. You’ll need to at least know how to FTP to your server in order to complete this [...]

How to SEO your Wordpress blog.

How to SEO your Wordpress blog.

For those of you that know what SEO is and run Wordpress as your blog engine, you may be wondering how you can easily SEO your blog. SEOing your blog can help you get more search engine traffic and can make your blog look more professional. Many people offer programming services that you have to [...]

Making a simple ListBox with GTK and Glade3.

Adding a simple ListBox widget in your GTK application is easier than you think. This tutorial will show you how to create ListBox-like functionality in GTK using Glade3. GTK uses the TreeView control as their do-all list control. You can create simple lists, tree-like lists and all sorts of various list views. What is really [...]

Read More »

Glade 3 + GtkBuilder + Anjuta Example.

Today I whipped up a simple GTK application using the Anjuta IDE, Glade 3, and the new GtkBuilder system. As some of you know, Glade 3 and GTK changed things up. First Glade stopped using generated code which required you to use libglade. Now the GTK developers created their own interface interpretor called GtkBuilder. [...]

Read More »

Get Windows Service info in C#.

This code will show you how to search for Windows Services. The ServiceController class handles almost everything service related. You can also check if services are running by checking the service.Status property and you can search for installed services using the sample code below. The services we are talking about are the services that run [...]

Read More »

Visual Basic comes to Linux.

Visual Basic for Linux is here, sort of. In my search for the perfect RAD environment for Linux I came across a project called Gambas. Gambas is a Visual Basic like development environment for Linux which is very much like Microsoft’s drag and drop Visual Basic but it is not a clone. For an Open [...]

Read More »

Add background color to PNG files in C#.

This code snippet will let you force a background color into a PNG file with C#. When working with PNG files in Visual Studio sometimes you’ll run into situations where the background of a PNG shows up as grey or even blue. This is because of the PNG files transparency and Windows can sometimes [...]

Read More »

C#: A multi-threaded UDP server with BackgroundWorker.

The following code shows you how to build a UDP server in C# using the UUdpClient class for the networking and BackgroundWorker class for reporting data back to the application. This particular UDP server class is designed to be used with a Windows Forms or GUI. When using the UDP server you pass a BackgroundWorker [...]

Read More »