Site Map

1 - Making a simple ListBox with GTK and Glade3.
2 - Zero-Day VBScript plagues Windows XP / 2000.
3 - Glade 3 + GtkBuilder + Anjuta Example.
4 - Arch Linux + Kdevelop + Irrlicht 3D + Blender
5 - Arch Linux smokes all others. My Arch Review.
6 - Howto install Gnome Shell in Ubuntu.
7 - Has Verizon been hacked? Security certificates revoked!
8 - My first blocked number in Google Voice.
9 - Howto build a custom Linux kernel.
10 - 3500 Netflix on Linux petitions.
11 - Apple bans "android" from apps store.
12 - Fallen Earth Gameplay Video
13 - My early Fallen Earth review
14 - Howto uncompress .txz and .xz files in Linux
15 - Windows: DIRUSE - Show disk usage for a directory.
16 - Linux: cal - display a calendar
17 - Google dropping support for older browsers.
18 - My .02 on Apple's anti-flash, anti-freedom movement.
19 - Linux: (g) awk - search and replace.
20 - Setup a telnet chat server with STChat.
21 - Linux: cut - divide file into columns.
22 - CommentGator for Windows 7.
23 - Zero-Fill Partitions
24 - Windows: comp - compare files
25 - Windows: cipher - encrypt or decrypt
26 - Linux: screen - multiplex terminals
27 - Linux: chroot - change root directory.
28 - Linux: du - Disk Usage
29 - Linux: adduser
30 - Monitor network resources by application in Windows7
31 - Bash and Shell Dialog Examples
32 - Get Windows Service info in C#.
33 - RockYou hacked passwords weak.
34 - Howto Disable Aero in Windows 7.
35 - My first look at Windows 7.
36 - Google Voice Review, one number for all your phones.
37 - Visual Basic comes to Linux.
38 - Add background color to PNG files in C#.
39 - Run Android in Windows and Linux with VirtualBox.
40 - Easily write ISO files to USB drives in Linux.
41 - C#: A multi-threaded UDP server with BackgroundWorker.
42 - Check for a Windows service in C#.
43 - Setting up a firewall in Linux with iptables.
44 - Cool desktop widgets for Linux with Screenlets.
45 - 3D Linux Desktop switcher with Compiz.
46 - Spy on MSN, AIM and Yahoo chats with ChatSniff.
47 - Desktop Video Recording in Linux (Like Fraps).
48 - Which Linux desktop for Netbooks?
49 - How to Switch Between GDM and KDM in Ubuntu.
50 - Strip email addresses from HTML or Text with C#.
51 - Easy Windows SVN Client with TortoiseSVN.
52 - Read Gmail attachments with IMAP and PHP.
53 - Yahoo Picture Plugin for Wordpress.
54 - Forwarding a PHP website from one domain to another.
55 - Linux GUI Programming with GTK#, Hello World.
56 - UNIProgrammer - Programming Forums
57 - Creating a directory system for Wordpress.
58 - Show thumbnails from a directory on your web server.
59 - MapServer - A free GIS engine for everyone.
60 - Quanta Plus, an HTML, CSS and PHP IDE for Linux
61 - Limit RSS to certain categories in Wordpress.
62 - Mono, .NET for Linux,
63 - Write .NET programs for Linux with MonoDevelop.
64 - .NET GIS solutions for PocketPC and SQL server.
65 - Dundas MAP, GIS map components for Visual Studio.
66 - Convert C# code to Visual Basic,Python and Back.
67 - Create GUI apps for Gnome with GTK+.
68 - Debug PHP code with the PHP debug tools.
69 - Implement SSH using libssh.
70 - jsFlow java library for switch and router monitoring.
71 - SharpDevelop, a free .NET development environment.
72 - Visual Studio and CodePlex by Sara Ford.
73 - Developingfor.NET - Visual Studio Development Blog.
74 - RSS.NET - Read RSS feeds in .NET.
75 - Create OpenDocument spreadsheets in PHP.
76 - Rapid Application Development Library 2.9.0
77 - Wing IDE
78 - Simple Sockets
79 - Will web developers adopt Silverlight without a Linux plug-in?
80 - How to download web content with .NET.


Next 80--

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 »