Main > Free Download Search >

Free casid21 0.1 software for linux

casid21 0.1

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2352
Casid21 0.1

Casid21 0.1


Casid21 is a web based Blackjack game developed using PHP and AJAX. more>>
Casid21 is a web based Blackjack game developed using PHP and AJAX.

Casid Networks is proud to announce the first release of Casid21. Please note this is still an early release and there is still a lot to do going forward.

What

Casid Networks develops open source software, operates a number of websites

Where

Casid Networks is located in a suburb of Toronto, Ontario, Canada

Why

Casid Networks was created to provide a single brand for Shawn to share his software and websites under.
<<less
Download (0.088MB)
Added: 2006-04-10 License: BSD License Price:
1293 downloads
KMatrix3d 0.1

KMatrix3d 0.1


KMatrix3d is a nice 3D matrix OpenGL screen saver for KDE. more>>
KMatrix3d is a nice 3D matrix OpenGL screen saver for KDE.

This version is based on the code by Thomas John.

IMPORTANT: Packagers wanted - please contact developer.

Future:

Currently Im working on the V2 version of KMatrix3D which will contain following effects:

1) endless corridor section
2) matrix world transitions
3) matrix reloaded intro effects
4) extensive use of shaders
5) performace improvements
<<less
Download (MB)
Added: 2007-02-05 License: GPL (GNU General Public License) Price:
996 downloads
IBMDoK 0.1

IBMDoK 0.1


IBMDoK is a small KDE kicker applet for the IBM themal sensors. more>>
IBMDoK is a small KDE kicker applet for the IBM themal sensors. Its just my small hack for the T60 sensors.

IBMDoK can work for other ThinkPads, mut maybe you have to adapt it.

<<less
Download (0.80MB)
Added: 2006-04-07 License: GPL (GNU General Public License) Price:
1295 downloads
wmcapshare 0.1

wmcapshare 0.1


wmcapshare is a dockapp to control and manage the HP Capshare Information Appliance. more>>
wmcapshare is a dockapp to control and manage the HP Capshare Information Appliance.

The goal is to provide a linux replacement for the CapShares own application which HP has seen fit to discontinue.

Why

I got sick of having to deal with the openobex sample application as my only interface to my HP Capshare. So I finally sat down and dealt with it. Also HP recently discontinued the product and no longer support it. I had been using it with windows when I needed to, but the drivers no longer work with Win2K.

What

The HP CapShare is a handheld document scanner. wmcapshare is a dockapp to manage the files you upload
<<less
Download (0.018MB)
Added: 2006-10-18 License: GPL (GNU General Public License) Price:
1101 downloads
HampusDB 1.0.1

HampusDB 1.0.1


HampusDB is a small, flexible and efficient hierarchical database. more>>
HampusDB is a small, flexible and efficient hierarchical database. It comes with a wide support of command line utilities for manipulating and extracting data.

Its designed for both embedded and bigger systems. HampusDB currently runs on Linux and has interfaces to C, C++, Java and Perl.

HDB aims to fill the gap when storing data in a relational database is too rigid and storing data in textfiles is too cumbersome.

A typical example would be when you have heirarchical data such as XML or configuration data that you want to store and retrieve in a flexible manner.
<<less
Download (0.34MB)
Added: 2006-05-26 License: LGPL (GNU Lesser General Public License) Price:
1247 downloads
ZDB 0.1

ZDB 0.1


ZDB (Zazzybob.com DataBase) can be used to maintain simple lists and databases (such as telephone directories, address lists). more>>
ZDB (Zazzybob.com DataBase) can be used to maintain simple lists and databases (such as telephone directories, address lists, etc). The project implements mechanisms for basic queries and reporting, and also allows us to join two tables by a primary key, and display query results based thereon.

ZDB is not a relational database. If you want a relational DB then use a proper DBMS!

ZDB is, however, highly useful for small, non-critical database needs, especially where "flat-files" are all thats really required, but where maintaining a long list of data manually would be too labour intensive.

ZDB requires the "usual-suspects" with regards to tool dependencies. All of the required tools will be present in any modern UNIX/Linux system. The scripts are implemented as bash scripts, but if you change the shebang line to match the path to your shell, and as long as your shell supports the ((...)) arithmetic construct, youll be okay! There arent any bash-specifics in the scripts.

Some of the scripts (especially query scripts) may run fairly slowly depending on your system. There is a lot of data processing going on in the background (involving many invocations of awk!). On a P4 2.66GHz the results will be instantaneous, whereas on a PII 233MHz you might not be so lucky.

Package Contents

The ZDB package consists of the following scripts:
zdb_constants

Contains constants needed by all scripts

zdb_create_table
Creates a new table
zdb_insert_values
Insert values into a table
zdb_join_tables
Query two tables using a join
zdb_remove_table
Drop a table
zdb_remove_values
Remove values from a table
zdb_select_all
Display an entire table
zdb_select_rows
Query a table by row
zdb_select_values
Query a table by column name
zdb_get_by_key
Get a single row by its key value

Also included in the download is zdb_test which is an example showing how each of the commands is used, creating tables, inserting values, querying the tables, and finally deleting the tables.

As you can see, I havent implemented a "change row" script. I dont see the point, as it would just duplicate the functionality of a call to zdb_remove_values followed by a call to zdb_insert_values. I have shown an example of this in the zdb_test script, included with the download.

Overview of Data Structure

Each table is made of two parts. A .def (Definition) file, and a .dat (Data) file. The .def file is created when the table is first created, and contains a list of all the column names in that table, and thus, provides that tables definition. The .dat file is created when the first row of values is inserted (and is deleted when the last row of data is removed). This is a flat file using ":" as a column delimeter. Therefore, do NOT use ":" in any of your data!

The idea of the .def file is to provide column name to field position translation, so that we can query in the form column_name=value (kind of like a WHERE clause in SQL). They are saved as table_name.{dat,def} in the directory specified by the ZDB_DIR constant (see below).

The first (left-most) column in each table is considered to be its key and must be unique for each row in the table.

Syntax

The syntax of each command is discussed below.

zdb_constants

Syntax

N/A

In the current implementation, this script contains only one constant, ZDB_DIR, which is the full path to the directory containing your database (.dat/.def) files. It is important that the directory exists, and that this constant is set correctly to reference the directories path, otherwise nothing will work!

Example

ZDB_DIR=/home/kevin/databases/db_one
zdb_create_table
Syntax
zdb_create_table table_name col_1 [ col_2 ... col_n ]

Create a table within ZDB_DIR named table_name as specified by the first argument to the command. The column names are specified by subsequent arguments to the command. At least one column must be specified. This command creates a file in ZDB_DIR named table_name.def.

Example

zdb_create_table my_table id f_name s_name t_name
zdb_insert_values
Syntax
zdb_insert_values table_name val_1 [ val_2 ... val_n ]

Insert values specified by val_1, etc, into table_name. This has various error checking mechanisms implemented, and will check for the correct number of values (i.e. the same number of values as there are columns in the table). val_1 in the left-most column is considered to be a primary key for that row of data, and must be unique within that table. Values are added sequentially, and are thus "appended" to the table in the order that they are added. No sorting takes place. If any single value contains spaces, it must be quoted, e.g. "example value with spaces".

Example

zdb_insert_values my_table 1 Kevin Waldron 0208-111-1111
zdb_join_tables
Syntax
zdb_join_tables table_one table_two [ searchterm | col=searchterm ]

Join two tables by their key field, and print fields from both tables where the row key matches. Other rows are not printed. An optional searchterm can be specified. This searchterm MUST be a single word, and can be of the form "searchterm" where all fields are searched, or "col=searchterm" whereby only the specified column name "col" is searched.

Example

Suppose we have two tables populated with data, the following session depicts command usage and possible output
$ zdb_join_tables my_info my_table name=Kevin

id name number data_1 data_2
1 Kevin Smith 02081111234 zdb_data more_data
2 Kevin Jones 02078392111 data_value more_data
68 Mr Kevin 9230192912 0291 19192

zdb_remove_table
Syntax
zdb_remove_table table_name

If table_name exists, both its .def and .dat files will be deleted.

Example

zdb_remove_table my_table
zdb_remove_values
Syntax
zdb_remove_values table_name key

Removes the row from table_name specified by key, where key is the unique identifier for that row (the entry in the first column of the table for that row).

Example

To remove the row with key "4" from my_table

zdb_remove_values my_table 4
zdb_select_all
Syntax
zdb_select_all table_name

Displays all data from table_name preceeded by a header row detailing the column names

Example

zdb_select_all my_table
zdb_select_rows
Syntax
zdb_select_rows table_name searchterm|col=searchterm

Shows all rows from table_name where searchterm can be found. Accepts both forms of searchterm specification, as discussed in the zdb_join_tables section above.

Example

zdb_select_rows my_table Kevin
zdb_select_values
Syntax
zdb_select_values table_name col_1 [ col_2 ... col_n ]

Selects and displays all data from the specified columns in table_name
Example
Yes, multiple instances of the same column can be specified, to repeat their output

zdb_select_values my_table f_name f_name s_name
zdb_get_by_key
Syntax
zdb_get_by_key table_name key

Select only the single row from table_name that has the unique key key.

Example

zdb_get_by_key my_table 1
<<less
Download (0.006MB)
Added: 2007-03-13 License: GPL (GNU General Public License) Price:
960 downloads
DAMP 0.1

DAMP 0.1


DAMP is a port of the popular LAMP deployment from the Linux world into DragonFly BSD. more>>
DAMP (DragonFly BSD + Apache + MySQL + PostgreSQL + PHP) is a port of the popular LAMP deployment from the Linux world into DragonFly BSD.

It also includes phpMyAdmin and phpPgAdmin for easy Web management of the database engines.

DAMP is available as a VMware appliance.

Dfly BSD began as a fork of the FreeBSD 4.x series operating system and its goal is to fix certain design mistakes that FreeBSD was apparently making (especially in its SMP functionality) while also providing other advanced functionality such as distributed dynamic secure clustering.

It is considered that Dfly BSD rivals both FreeBSD 6.x and Linux 2.6.x in performance, while providing excellent stability and security out of the box. This appliance is an opportunity for everybody interested in experimenting with Dfly BSD and the two most popular open-source database engines.
<<less
Download (MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1067 downloads
Milk 0.1

Milk 0.1


Milk is yet another milk theme (style) for the KDE desktop. more>>
Milk is yet another milk theme (style) for the KDE desktop.
I made the kbfx theme seperately for another theme but decided to include with this one.Ill upload a blue version soon
Requirements
- Crystal Window Decoration
- Domino >=0.3 style
- Kbfx Silk 4.9.3(Optional,for alternate menu in the first screenshot)
Please read the readme file to configure
Enhancements:
- Note: If you use gtk-qt engine to theme gtk applications,scrollbars in firefox shows artifacts.Try using a native firefox theme. iPox looks good.
<<less
Download (0.31MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
923 downloads
NAMP 0.1

NAMP 0.1


NAMP is the NetBSD equivalent of the popular LAMP deployment in the Linux world. more>>
NAMP (NetBSD + Apache + MySQL + PostgreSQL + PHP) is the NetBSD equivalent of the popular LAMP deployment in the Linux world.

It also includes phpMyAdmin and phpPgAdmin for easy administration of the database engines.

NAMP is available as a VMware appliance.
<<less
Download (MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1069 downloads
Affinity 0.1

Affinity 0.1


Affinity project is a desktop search tool which provides a front-end to various desktop information. more>>
Affinity project is a desktop search tool which provides a front-end to various desktop information.
Affinty is a desktop search tool, which hopes to provide a quick way to get at all the different information on your desktop. It achieves this by having various back-ends, but implemented through one standard interface.
Main features:
- Front-end to both the Beagle & Tracker desktop search engines.
- Has actions (configurable through Desktop files), whihc speed up common tasks.
- Has in-built, user-configurable, filters which work in the the entry box, so typing pics:london will only bring up pictures.
- Super-fast application searching through an in-built list of applications.
- Colours can be customised to your taste.
- Lives in the system-tray, but can be called by a global key stroke. Default is Ctrl+Alt+a, but you can change it to anything you like!
- Written in C for minimal impact on your system, but maximum speed!
Hints:
- Pressing Ctrl-L in the main search window will focus the entry widget.
- Pressing Esc will hide the Affinity window.
- The default global keystroke is Alt>A, this will hide or un-hide Affinity.
- You can configure the global keystroke by navigating to /apps/affinity in gconf-editor, and changing the global_key_binding value. You must restart Affinity for the changes to take effect.
- Use affinity-preferences to changes colours, filters & system applications.
- When you change a colour in affinity-preferences, you may need to hide/show the window for the changes to take effect.
- Clicking on the notification area icon will show/hide the window, right-clicking will bring up a pop-up menu that will allow you to exit Affinity.
Bugs:
- Scrolling up & down fast on the tree view will leave artifacts, which disappear if you run your mouse over it or press a button.
- If it segfaults, please try svn.
<<less
Download (0.19MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
1005 downloads
Sessinfo 0.1

Sessinfo 0.1


Sessinfo is a Gnome Session Information Display. more>>
Sessinfo is a Gnome Session Information Display.

This is a Gnome application thats intended to be a semi-graphical equivalent of the messages that you normally get with a command-line login session.

So far, its not very graphical. Future versions might include such things as a graphical banner and graphical panes.

<<less
Download (0.52MB)
Added: 2006-02-20 License: BSD License Price:
1341 downloads
Camaelon 0.1

Camaelon 0.1


Camaelon is a GNUstep theme engine. more>>
Camaelon is a theme engine for GNUstep.

While very good when you works with it, it looks a bit old with the current playskool interfaces avalaible everywhere. So I wrote this theme bundle, Camaelon, with the idea of providing a fresher look, while remaining good on term of useability.

Actually its not very configurable (you need to change values in the source code for gradients/colors).

Installation

You need to patch some files in the GNUstep -gui sources. Go in the gui/Source directory of your local GNUsteps sources, and apply the provided patch file, themes.patch :
patch -p0<<less
Download (0.05MB)
Added: 2005-04-25 License: GPL (GNU General Public License) Price:
1642 downloads
Sedation 0.1

Sedation 0.1


Sedation provides an adaptation of the Sedation theme for Enlightenment. more>>
Sedation provides an adaptation of the Sedation theme for Enlightenment.

<<less
Download (0.043MB)
Added: 2007-01-26 License: BSD License Price:
1003 downloads
Minidock 0.1

Minidock 0.1


Minidock is a 4 buttons application launcher for the Window Maker dock. more>>
Minidock is a 4 buttons application launcher for the Window Maker dock. The config file allow to put custom commands and icons.

The default package provides two versions of the config file (common apps and Openoffice).
<<less
Download (0.17MB)
Added: 2006-10-25 License: GPL (GNU General Public License) Price:
1095 downloads
kuickPod 0.1

kuickPod 0.1


kuickPod is a konqueror service menu for gnuPod. more>>
kuickPod is a konqueror service menu for gnuPod.

kuickpod adds a service menu entry to konqueor, whenever you right-click on an mp3 file. Chosse "Add to iPod" for simply adding the file(s), or "Add to iPod and umount" for adding the file(s) and afterwards unmount the iPod.

Deleting files from iPod is not supported, yet.

As kuickPod is based on gnuPod, make sure youve this installed, and your iPod is initialized by gnuPod.
<<less
Download (0.008MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1178 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5