direct democracy
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 540
Direct Democracy Portal 20070426
Direct Democracy Portal is a portal for online organizations governed through direct democracy. more>>
Direct Democracy Portal is a portal for online organizations governed through direct democracy.
It uses Maven 2, MySQL, hibernate3, Spring, Struts Tiles, and JSTL on JBoss.
<<lessIt uses Maven 2, MySQL, hibernate3, Spring, Struts Tiles, and JSTL on JBoss.
Download (1.8MB)
Added: 2007-04-26 License: GPL (GNU General Public License) Price:
920 downloads
torrentocracy 0.0.11
torrentocracy is an RSS aggregator and bittorrent downloader for MythTV. more>>
Torrentocracy (pronounced like the word democracy) is the combination of RSS, bit torrent, your television and your remote control. In effect, it is what gives any properly motivated person or entity the ability to have their own TV station.
By running torrentocracy on a computer connected to your television, you not only become a viewer of any available content from the internet, but you also become a part of a vast grass roots media distribution network.
This is not about the illegal distribution of media, but rather its about enabling an entirely new way to receive the video which you watch on your TV.
If you ever wondered how and when your computer, the internet and your television would merge into one seemless device with access to anything and everything, then at this very moment the theme song from 2001: A Space Odyssey ("Also Sprach Zarathustra") should be resounding through your head.
<<lessBy running torrentocracy on a computer connected to your television, you not only become a viewer of any available content from the internet, but you also become a part of a vast grass roots media distribution network.
This is not about the illegal distribution of media, but rather its about enabling an entirely new way to receive the video which you watch on your TV.
If you ever wondered how and when your computer, the internet and your television would merge into one seemless device with access to anything and everything, then at this very moment the theme song from 2001: A Space Odyssey ("Also Sprach Zarathustra") should be resounding through your head.
Download (0.060MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1643 downloads
DConnect Daemon 1.1.0
DConnect Daemon is a daemon that acts as a Direct Connect hub. more>>
DConnect Daemon is a Direct Connects hub working as daemon. It works currently under linux and FreeBSD, but we want to make them work on all Unixes (and under Windows).
DConnect Daemon works as a daemon in background and does not require any Xwindow system. Everything should work without any maintenance, but with possible runtime manipulations.
Main features:
- written in pure C
- utilizes threads - allow to work faster on SMP mashines
- good and strict protocol implementation - as far as we know it...
- access limitation through libwrap
- telnet administration console and traditional with DC client
- flexible configuration
Enhancements:
- Because full support for syslog is included, the old way of logging to files was removed.
- Switch to syslog-ng is recommended as it will make your logs cleaner.
- Silent mode is now switched on so it is impossible to redirect users who should not have access to the service you provide.
<<lessDConnect Daemon works as a daemon in background and does not require any Xwindow system. Everything should work without any maintenance, but with possible runtime manipulations.
Main features:
- written in pure C
- utilizes threads - allow to work faster on SMP mashines
- good and strict protocol implementation - as far as we know it...
- access limitation through libwrap
- telnet administration console and traditional with DC client
- flexible configuration
Enhancements:
- Because full support for syslog is included, the old way of logging to files was removed.
- Switch to syslog-ng is recommended as it will make your logs cleaner.
- Silent mode is now switched on so it is impossible to redirect users who should not have access to the service you provide.
Download (0.34MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
937 downloads
Direct Access Provider Library 3.03
Direct Access Provider Library is a transport-independent, platform-independent, high-performance API. more>>
Direct Access Provider Library in short DAPL is a transport-independent, platform-independent, high-performance API for using the remote direct memory access (RDMA) capabilities of modern interconnect technologies such as InfiniBand, the Virtual Interface Architecture, and iWARP.
This is the reference implementation of that specification by the DAT Collaborative who maintain the DAPL API.
Enhancements:
- Support was added for new IB verbs client register event.
- Some problems supporting create qp without recv cq handle or recv qp resources were fixed.
- Some timeout and long disconnect delay issues exposed during scalability tests were fixed.
- Minor build problems were fixed.
- Support for multiple IB devices was added to dat.conf to support IPoIB HA failover.
- Support for returning local and remote port information was added.
- The RPM spec file was cleaned up.
- Enviroment variables to configure connection management timers were added.
<<lessThis is the reference implementation of that specification by the DAT Collaborative who maintain the DAPL API.
Enhancements:
- Support was added for new IB verbs client register event.
- Some problems supporting create qp without recv cq handle or recv qp resources were fixed.
- Some timeout and long disconnect delay issues exposed during scalability tests were fixed.
- Minor build problems were fixed.
- Support for multiple IB devices was added to dat.conf to support IPoIB HA failover.
- Support for returning local and remote port information was added.
- The RPM spec file was cleaned up.
- Enviroment variables to configure connection management timers were added.
Download (5.8MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
831 downloads
EText Reader 1.2.2
EText Reader project is a simple cross-platform GUI EText reader. more>>
EText Reader project is a simple cross-platform GUI EText reader.. It uses the wxWindows GUI library.
It allows selection of font, and foreground and background colors, as well as persistant reading position and bookmarking. It supports browsing, searching, and direct downloading of Project Gutenberg ETexts.
It features a built-in online dictionary for instant word definitions while reading.
Compiling the source
./configure
make
make install
Enhancements:
- As of this release, configure (and automake) scripts have been created.
<<lessIt allows selection of font, and foreground and background colors, as well as persistant reading position and bookmarking. It supports browsing, searching, and direct downloading of Project Gutenberg ETexts.
It features a built-in online dictionary for instant word definitions while reading.
Compiling the source
./configure
make
make install
Enhancements:
- As of this release, configure (and automake) scripts have been created.
Download (0.13MB)
Added: 2006-10-10 License: GPL (GNU General Public License) Price:
1114 downloads
php_qrencode 0.1
php_qrencode is a PHP extension to generate qrcode. more>>
php_qrencode is a PHP extension to generate qrcode. The project is based on libqrencode.
only 2 function to generate qr code.
< code >
$qr = qr_encode (test for qrcode);
qr_save ($qr, 1.png);
< /code >
or you can output direct to stdout.
< code >
$qr = qr_encode (test for qrcode);
header ("Content-type: image/PNG");
qr_save ($qr);
< /code >
resource = qr_encode (string $text, [ int $version, int $mode, int $casesensitive]);
bool = qr_save (resource $qr, [ string $filename] );
<<lessonly 2 function to generate qr code.
< code >
$qr = qr_encode (test for qrcode);
qr_save ($qr, 1.png);
< /code >
or you can output direct to stdout.
< code >
$qr = qr_encode (test for qrcode);
header ("Content-type: image/PNG");
qr_save ($qr);
< /code >
resource = qr_encode (string $text, [ int $version, int $mode, int $casesensitive]);
bool = qr_save (resource $qr, [ string $filename] );
Download (0.006MB)
Added: 2007-04-26 License: BSD License Price:
916 downloads
Java DIME Library 1.0.3
Java DIME Library implements Direct Internet Message Encapsulation. more>>
Java DIME Library project implements Direct Internet Message Encapsulation (DIME), which is a lightweight binary encapsulation format that can be used to encapsulate multiple payloads of arbitrary types and sizes into a single message.
DIME is ideal for incorporating binary attachments into any XML-based protocol. The library fully supports the latest DIME specifications.
Enhancements:
- Corrected DimeRecord.isFirst() thanks to John Russell
<<lessDIME is ideal for incorporating binary attachments into any XML-based protocol. The library fully supports the latest DIME specifications.
Enhancements:
- Corrected DimeRecord.isFirst() thanks to John Russell
Download (0.16MB)
Added: 2006-09-15 License: LGPL (GNU Lesser General Public License) Price:
1144 downloads
dc-qt 0.2.0 Alpha
Dc-qt is a C++/Qt/STL front-end for the linux DirectConnect client DCTC. more>>
dc-qt is a graphical user interface for a direct connect client called DCTC which is available for Linux and other flavours of UNIX. As the name suggests, it is written using Qt. dc-qt is currently under development and should be considered beta software. dc-qt project is already quite usable, though.
The important features of DCTC are supported (except for virtual share -- we will never support that). Some included features are completely unrelated to DCTC, but are useful and convenient in your day-to-day file sharing activities. Exactly what is implemented and not is for us to know and you to find out (and wish for); the feature list changes quickly.
<<lessThe important features of DCTC are supported (except for virtual share -- we will never support that). Some included features are completely unrelated to DCTC, but are useful and convenient in your day-to-day file sharing activities. Exactly what is implemented and not is for us to know and you to find out (and wish for); the feature list changes quickly.
Download (3.0MB)
Added: 2006-05-20 License: GPL (GNU General Public License) Price:
1255 downloads
XCB 1.0 RC2
XCB (X protocol C-language Binding) is a replacement for Xlib. more>>
XCB (X protocol C-language Binding) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility.
It has several advantages over Xlib, including size (small library and lower memory footprint), latency hiding (batch several requests and wait for the replies later), direct protocol access (one-to-one mapping between interface and protocol), thread support (access XCB from multiple threads, with no explicit locking), and easy creation of new extensions (automatically generates its interface from machine-parsable XML protocol descriptions).
Xlib can also use XCB as a transport layer, allowing software to make requests and receive responses with both, which eases porting to XCB. However, client programs, libraries, and toolkits will gain the most benefit from a native XCB port.
<<lessIt has several advantages over Xlib, including size (small library and lower memory footprint), latency hiding (batch several requests and wait for the replies later), direct protocol access (one-to-one mapping between interface and protocol), thread support (access XCB from multiple threads, with no explicit locking), and easy creation of new extensions (automatically generates its interface from machine-parsable XML protocol descriptions).
Xlib can also use XCB as a transport layer, allowing software to make requests and receive responses with both, which eases porting to XCB. However, client programs, libraries, and toolkits will gain the most benefit from a native XCB port.
Download (0.41MB)
Added: 2006-10-08 License: MIT/X Consortium License Price:
1113 downloads
REMITT 0.3.3
REMITT is Electronic Medical Information Translation and Transmission. more>>
REMITT is Electronic Medical Information Translation and Transmission.
REMITT is a revolutionary medical information translation and transmission system, which is primarily used for preparing and submitting medical billing data.
REMITT works independent of any specific electronic medical record (EMR) or practice management (PM) system, and can interface with any EMR or PM system which implements its application programming interface (API). The first system to do so has been FreeMED.
Currently Supported Formats
- HCFA-1500/CRM-1500
- ANSI NSF X12 837 Professional
Currently Supported Output Types
- PDF Document (with optional overlaying)
- PRN File
- X12 Message
- FreeClaims.com Direct Submission
- GatewayEDI.com Direct Submission
The name REMITT is a recursive acronym.
<<lessREMITT is a revolutionary medical information translation and transmission system, which is primarily used for preparing and submitting medical billing data.
REMITT works independent of any specific electronic medical record (EMR) or practice management (PM) system, and can interface with any EMR or PM system which implements its application programming interface (API). The first system to do so has been FreeMED.
Currently Supported Formats
- HCFA-1500/CRM-1500
- ANSI NSF X12 837 Professional
Currently Supported Output Types
- PDF Document (with optional overlaying)
- PRN File
- X12 Message
- FreeClaims.com Direct Submission
- GatewayEDI.com Direct Submission
The name REMITT is a recursive acronym.
Download (0.52MB)
Added: 2007-05-19 License: MPL (Mozilla Public License) Price:
889 downloads

BitWise IM for Linux 1.7.3
It is for Linux, direct connect, sending messages, etc. more>> BitWise IM is an instant messenger with many advanced features, encrypted using proven, industry-standard methods, available for Windows, Mac OS X and Linux, direct connect, sending messages, etc. without a server, its own network that does not rely on another system, committed to privacy with no ads or spyware. Explore BitWises features Select a feature on the left
"I am more than pleased with BitWise and have been trying to get others to con-
sider switching over from other IM programs." - Submitted on a user survey
What are BitWise Personal, Plus and Professional?
BitWise Personal is for personal/home use and is free. Personal may not be used for any business or organization.
BitWise Plus is also for personal/home use, but offers additional encryption and security features for a small, one-time fee.
BitWise Professional is business-class instant messaging, providing administration, user rights, technical support, and more.<<less
Download (3.20MB)
Added: 2009-04-21 License: Freeware Price: Free
188 downloads
dctcd 0.85.9
dctcd is a background-running wrapper for DCTC (Direct Connect Text Client). more>>
dctcd is a background-running wrapper for DCTC (Direct Connect Text Client) that automates the running of servers, gathers upload statistics, and works as a chat bot.
There are a few GUIs, some of them are graphical (dc_gui, dc_gui2, dc_qt, ...), other are text based client (danae, ldcc,...) and other are console frontend (rccp).
Enhancements:
- done log file contains upload log.
- fix the incorrect information sent to the UI when uploading a file bigger than 2GB (only the display is buggy, the transfer works).
- update .spec file to support fedora (based on Sammy Atmadja modification).
<<lessThere are a few GUIs, some of them are graphical (dc_gui, dc_gui2, dc_qt, ...), other are text based client (danae, ldcc,...) and other are console frontend (rccp).
Enhancements:
- done log file contains upload log.
- fix the incorrect information sent to the UI when uploading a file bigger than 2GB (only the display is buggy, the transfer works).
- update .spec file to support fedora (based on Sammy Atmadja modification).
Download (0.22MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1224 downloads
Pybliographic 1.2.9
Pybliographer is a tool for managing bibliographic databases. more>>
Pybliographer is a tool for managing bibliographic databases. Pybliographic can be used for searching, editing, reformatting, etc.
In fact, its a simple framework that provides easy to use python classes and functions, and therefore can be extended to many uses (generating HTML pages according to bibliographic searches, etc).
In addition to the scripting environment, a graphical Gnome interface is available. It provides powerful editing capabilities, a nice hierarchical search mechanism, direct insertion of references into LyX and Kile, direct queries on Medline, and more.
It currently supports the following file formats: BibTeX, ISI, Medline, Ovid, Refer.
Pybliographer is licenced under the GNU GPL, and available with its source code for free.
<<lessIn fact, its a simple framework that provides easy to use python classes and functions, and therefore can be extended to many uses (generating HTML pages according to bibliographic searches, etc).
In addition to the scripting environment, a graphical Gnome interface is available. It provides powerful editing capabilities, a nice hierarchical search mechanism, direct insertion of references into LyX and Kile, direct queries on Medline, and more.
It currently supports the following file formats: BibTeX, ISI, Medline, Ovid, Refer.
Pybliographer is licenced under the GNU GPL, and available with its source code for free.
Download (0.85MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1201 downloads
libnetshclient 2.2.0
libnetshclient is a POSIX/ANSI C library for use in the development of applications that require direct communication... more>>
libnetshclient is a POSIX/ANSI C library for use in the development of applications that require direct communication (using the netsh protocol) with a Foxmoxie Networks STRATA-family router (or any server-type-application that supports the protocol).
libnetshclient library employs both IPv4 and IPv6, as well as GnuTLS encryption.
Enhancements:
- TLS support, managed connections, bugfixes and improvements
<<lesslibnetshclient library employs both IPv4 and IPv6, as well as GnuTLS encryption.
Enhancements:
- TLS support, managed connections, bugfixes and improvements
Download (0.012MB)
Added: 2007-05-11 License: GPL (GNU General Public License) Price:
897 downloads
microdc 0.11.0
microdc is a command-line based Direct Connect client that uses GNU readline for user interaction. more>>
microdc is a command-line based Direct Connect client that uses the GNU Readline library for user interaction. microdc was developed from ground up and does not depend on any other program. Despite the command-line user interface, microdc was designed to be user friendly and simple to use.
microdc is currently in beta state - there may be many bugs not yet discovered. It also lacks some features that other clients support, such as file hashing, multiple hub connections, and hub list support.
microdc is free software - it is licensed under the terms of the GNU General Public License (GPL). It is written in C by Oskar Liljeblad, and is designed to compile and run on modern POSIX compatible systems such as Linux.
Main features:
- Nearly full support of the original Direct Connect protocol.
- GNU Readline support.
- Sensible tab-completion of commands, user names, local files, remote files, speed names, and connection names.
- One process per connection for optimal transfer rates.
- Small memory footprint (I think).
<<lessmicrodc is currently in beta state - there may be many bugs not yet discovered. It also lacks some features that other clients support, such as file hashing, multiple hub connections, and hub list support.
microdc is free software - it is licensed under the terms of the GNU General Public License (GPL). It is written in C by Oskar Liljeblad, and is designed to compile and run on modern POSIX compatible systems such as Linux.
Main features:
- Nearly full support of the original Direct Connect protocol.
- GNU Readline support.
- Sensible tab-completion of commands, user names, local files, remote files, speed names, and connection names.
- One process per connection for optimal transfer rates.
- Small memory footprint (I think).
Download (0.45MB)
Added: 2006-10-27 License: GPL (GNU General Public License) Price:
1093 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above direct democracy search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed