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.

Pdf2djvu
DF to DjVu converter pdf2djvu creates DjVu files from PDF files. It's able to extract: graphics, text layer, hyperlinks, document outline (bookmarks),...


Diatheke
ommand line bible browsing and search tool The SWORD Project is an open source, cross-platform (Linux, Windows, Solaris, MacOSX etc.) API/library for ...


Dsbltesters
pen proxy/relay testing utilities This package contains testing software configured to work with the DSBL (http://dsbl.org/) or DSBL-compliant service...


Strigi-utils
ommand-line tools for Strigi Desktop Search This package is part of Strigi Desktop Search, it contains utilities powered by Strigi: * deepfind, an en...


Libginac1.5
he GiNaC symbolic framework (runtime library) GiNaC (which stands for "GiNaC is Not a CAS (Computer Algebra System)") is a library for doing symbolic ...


Libxml-atom-service-
tom Service Document object XML::Atom::Service is a Service Document implementation. In the Atom Publishing Protocol, a client needs to first discover...


Nautilus-script-coll
autilus subversion management scripts A set of scripts that will execute Subversion commands on selected files. . You can right click on a subversion ...


Qbittorrent
ittorrent client using libtorrent-rasterbar with a nice Qt4 GUI qBittorrent is a feature rich bittorrent client written in C++ and Qt4 which is based ...


Libprojectm-data
dvanced Milkdrop-compatible music visualization library - data libprojectm is an iterative music visualization library which uses OpenGL for hardware ...


Libslepc3.0.0
calable Library for Eigenvalue Problem Computations SLEPc is a software library for the solution of large scale sparse eigenvalue problems on parallel...


Autocutsel
eep the X clipboard and the cutbuffer in sync This tracks changes in the server's cutbuffer and clipboard selection. when the clipboard is changed, it...


Gstreamer0.10-tools
ools for use with GStreamer GStreamer is a streaming media framework, based on graphs of filters which operate on media data. Applications using this...


Gambas2-gb-xml-xslt
ambas XSLT component Gambas is a free development environment based on a Basic interpreter with object extensions, like Visual Basic(tm) (but it is NO...


Libfreecell-solver-d
ibrary for solving Freecell games (Development files) Freecell Solver is a library for automatically solving boards of Freecell and similar variants o...


Fop-doc
ocumentation for fop FOP is a print formatter driven by XSL formatting objects. It is a Java 1.1 application that reads a formatting object tree and t...


Libglobus-rls-client
lobus Toolkit - Replica Location Service Client The Globus Toolkit is an open source software toolkit used for building Grid systems and applications....


Cl-ansi-tests
onformance tests for ANSI Common Lisp This package is a suite of tests that check for ANSI Common Lisp conformance....


Python-redis
ersistent key-value database with network interface (Python client library) Redis is a key-value database in a similar vein to memcache but the datase...


Ll-scope
n oscilloscope DSSI plugin The Oscilloscope is a DSSI plugin with a GUI that displays the audio input in an oscilloscope view. It can be useful when w...


Simutrans-pak64
ransportation simulator (data files) Simutrans is a free transportation simulator: The player operates a transportation company and has to transport g...


Python-lightblue
ross-platform Bluetooth API for Python The package provides a Python API which provides simple access to Bluetooth operations. It is available for Mac...


Libcomplearn-mod-ppm
PMD compression module for CompLearn pattern recognition system C language interface to provide Prediction by Partial Matching compression to CompLear...


Libyada-mysql4
et another database abstraction layer - mysql backend Yada is a C library that abstracts SQL databases aiming at allowing transparent use of multiple ...


Rarian-compat
arian is a documentation meta-data library (compatibility tools) Rarian (formerly Spoon) is a documentation meta-data library, designed as a replaceme...


Fbtv
elevision viewer - Linux framebuffer application FbTV is a Linux framebuffer application which displays television channels. It supports video4linux d...



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 »