Projects by Jimmy Burnett.

Linux Projects

Quickboox is a Linux project I started focusing on making it easier for people to create small Linux distributions for lower resources PC’s such as mini-x86 systems. The system comes with a development environment to easily build small Linux distributions and to better help people learn how Linux works.

Wordpress Plugins

WP-SiteLinks
WP-SiteLinks is a Wordpress plugin that displays a simple list of links for search engines to index. The plugin will show the most recent 80 posts for your blog. The 80th link is a link to another 80 posts, and so on so forth. This is great for getting new or merged sites indexed by search engines a little a quicker. Read more about it here.

JB_YahooPics
I simple plugin that lets you how pictures from Yahoo Pictures in your blog posts or on your side bar. Currently supports displaying 1 picture, or 3 columns. Check it out here.

Applications

CommentGator – Free Blog Commenting Software
CommentGator is a free Windows based program that lets you visit blogs and quickly leave comments. It saves your Name, URL, Email and Comment text for quick insertion into blog posts. Check it out here.

Utility Distros

Treadstone Zero is a small, lightweight Linux distribution that lets you easily erase, remove and zero-fill hard drive partitions. More info here…


No Comments »

No comments yet.

RSS feed for comments on this post. TrackBack URL

Leave a comment

Sponsor & Advertise

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 »