Ubuntu Directory

Ubuntu Files, Apps and Programms

Back to the Ubuntu Directory

AdminBaseCli-monoCommDatabase
DebugDevelDocEditorsElectroni
ElectronicsEmbeddedFontsGamesGnome
Gnu-rGraphicsHamradioHaskellHttpd
InterpretInterpretersJavaKdeKernel
LibdevelLibsLispLocalizationMail
MathMetapackaMetapackagesMiscNet
NewsOcamlOldlibsOtherosfsPerl
PhpPythonRestricted/adminRestricted/miscRestricted/x11
RubyScienceShellsSoundTex
TextTranslationsUtilsVcsVideo
WebX11XfceZope
Random Packages for Ubuntu.

Ebook-tools-dbg
ibrary and tools to work with the EPub file format The ebook-tools provide ways for accessing and converting different ebook file formats. . This C li...


Language-support-nso
etapackage for Sotho, Northern language support This metapackage depends on all packages that provide native language support for applications. (like ...


Putty
elnet/SSH client for X This is the Unix port of the popular Windows ssh client, PuTTY. It supports flexible terminal setup, mid-session reconfiguratio...


Eagle
rinted circuit board design tool Eagle includes a layout editor, schematic editor, and an autorouter. The following limitations apply to the EAGLE Lig...


Libdigest-hmac-perl
reate standard message integrity checks HMAC is used for message integrity checks between two parties that share a secret key, and works in combinatio...


Libmd3-1
ibrary to handle Quake .md3 files - runtime library This library provides full support for loading all Quake .md3 models found in the field. Many of t...


Capisuite
asy fax and voice box solution for ISDN/CAPI capable devices In the default setup CapiSuite provides a fax and voice box solution for multi users. Onl...


Kstart
erberos kinit supporting AFS and ticket refreshing k5start can be used instead of kinit to obtain Kerberos tickets. krenew can be used instead of kin...


Libmrml1-dev
ibmrml development files MRML's aims are to unify access to multimedia retrieval and management software component in order to extend their capabiliti...


Sockstat
iew detailed information about open connections Sockstat is a tool to let you view information about open connections. It is similar to the tool of th...


Octavede
evelopment environment for the Octave mathematical software OctaveDE is a development environment for the Octave mathematical software package. Octave...


Libavformat52
fmpeg file format library This is the demuxer library from the ffmpeg project. It supports most existing file formats (AVI, MPEG, OGG, Matroska, ASF.....


Mozilla-stumbleupon
ozilla addon for sharing interesting websites StumbleUpon is a toolbar for Firefox which acts as an intelligent web-browsing tool. . It facilitates di...


Krfb
esktop Sharing for KDE 4 KDE Desktop Sharing is a manager for easily sharing a desktop session with another system. The desktop session can be viewed...


Simple-ccsm
imple Compizconfig settings manager The OpenCompositing Project brings 3D desktop visual effects that improve usability of the X Window System and pro...


Magic-haskell-doc
ile type determination library for Haskell This package provides a Haskell interface to the C libmagic library. With it, you can determine the type of...


Funnelweb-doc
ocumentation for funnelweb This package includes the HTML manuals for the funnelweb litterate-programming system. These are the Tutorial Manual, the ...


Libsnacc-dev
SN.1 to C or C++ or IDL compiler, development files Snacc is short for "Sample Neufeld ASN.1 to C Compiler" and ASN.1 stands for Abstract Syntax Notat...


Urlview
xtracts URLs from text This utility is used to extract URL from text files, especially from mail messages in order to launch some browser to view them...


Telepathy-gnome
elepathy GNOME components The Telepathy project aims to provide a unified framework for all forms of real time conversations, including instant messag...


Libdumbnet-dev
evelopment libraries, header files and docs for libdumbnet Contains the header files, documentation, examples and static libraries for use in developi...


Liblog4c-dev
library for flexible logging (development) Log4c is a library of C for flexible logging to files, syslog and other destinations. . It is modeled afte...


Libogg0
gg bitstream library Libogg is a library for manipulating ogg bitstreams. It handles both making ogg bitstreams and getting packets from ogg bitstrea...


Libgeronimo-javamail
eronimo API implementation of the JavaMail 1.4 spec Geronimo API implementation of the JavaMail 1.4 spec (javax.mail classes)...


Nexuiz-dbg
ebug information for the game Nexuiz Nexuiz is a fast-paced 3D deathmatch game with high-end and complex graphics effects. It is intended to be played...



No Comments

No comments yet.

RSS feed for comments on this post.

Sorry, the comment form is closed at this time.

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 »