Base64 is a command line utility which encodes/decodes arbitrary
binary information in the base64 format used by MIME-encoded
documents, such as electronic mail messages with embedded files
(RFC 1341 and successors).
ical2html takes an iCalendar file and outputs an HTML file showing
one or more months in the form of tables.
What Unidecode provides is a function, 'unidecode(...)' that
takes Unicode data and tries to represent it in ASCII characters
(i.e., the universally displayable characters between 0x00 and 0x7F).
The representation is almost always an attempt at *transliteration*
-- i.e., conveying, in Roman letters, the pronunciation expressed by
the text in some other writing system. (See the example above)
CppDB is a SQL connectivity library that is designed to provide platform and
database independent connectivity API similarly to what JDBC, ODBC and other
connectivity libraries do. It supports Sqlite3, PostgreSQL, MySQL and as many
RDBMSs as possible via cppdb-odbc bridge.
It was written with performance, simplicity in use and locale safety as the
primary goals in mind. It also provides both explicit verbose API and brief
and nice syntactic sugar.
Mongo (from "humongous") is a high-performance, open source,
schema-free, document-oriented database. A common name in the
"NOSQL" community.
JDB is a package of commands for manipulating flat-ASCII databases
from shell scripts. JDB is useful to process medium amounts of data
(with very little data you'd do it by hand, with megabytes you might
want a real database). JDB is very good at doing things like:
* extracting measurements from experimental output
* re-examining data to address different hypotheses
* joining data from different experiments
* eliminating/detecting outliers
* computing statistics on data (mean, confidence intervals,
histograms, correlations)
* reformatting data for graphing programs
Rather than hand-code scripts to do each special case, JDB provides
higher-level functions.
JDB is built on flat-ASCII databases. By storing data in simple text
files and processing it with pipelines it is easy to experiment (in
the shell) and look at the output.
Since MongoDB 3.2, the tools bsondump, mongoimport, mongoexport, mongodump,
mongorestore, mongostat, mongofiles, mongooplog and mongotop have been placed
in a separate package and rewritten in Go. These are useful utilities for
managing a MongoDB instance.
mysqlsniffer is a tcpdump clone specifically for dumping/sniffing/watching MySQL
network protocol traffic over TCP/IP networks.
mysqlsniffer is coded in C using the pcap library and works with MySQL version
4.0 and newer. mysqlsniffer is the only MySQL-specific network sniffer.
OpenDBX is an extremely lightweight but extensible C library for
accessing databases with a single API. It provides a clean and simple
interface across all supported databases that leads to an elegant
code design automatically. Currently MySQL, PostgreSQL, SQLite
(v2 & 3), MSSQL and Sybase are supported and backends for more native
database APIs can be written easily. If you want your application to
support different databases with little effort, this is definitively
the right thing for you!
License: LGPL
This is the Cache::Memcached compatible interface to libmemcached, a C library
to interface with memcached.