summaryrefslogtreecommitdiff
path: root/content/software
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-02-09 15:33:24 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2017-02-09 15:33:24 +0100
commit7e5ac240a1065f7ed0c426903537e12364e0f52f (patch)
treea13dd7b8dd14e2c38958138a6d21713006d9dfd2 /content/software
parent5ff7d4c3584b1df14e4caf8c01f0e7934042c5bb (diff)
downloadwww-andreasbaumann-cc-7e5ac240a1065f7ed0c426903537e12364e0f52f.tar.gz
www-andreasbaumann-cc-7e5ac240a1065f7ed0c426903537e12364e0f52f.tar.bz2
updated to a Wordpress Magazine layout
Diffstat (limited to 'content/software')
-rw-r--r--content/software/_index.md30
-rw-r--r--content/software/linux_packaging.md2
-rw-r--r--content/software/luceneanalyzer.md2
-rw-r--r--content/software/minilinux.md2
-rw-r--r--content/software/nagios_plugin_curl.md2
-rw-r--r--content/software/sqlitexx.md4
6 files changed, 15 insertions, 27 deletions
diff --git a/content/software/_index.md b/content/software/_index.md
index d6a60ab..040c967 100644
--- a/content/software/_index.md
+++ b/content/software/_index.md
@@ -4,33 +4,31 @@ title = "Software"
# Linux
-[Linux Packaging](/software/linux_packaging): packaging for Linux distributions.
-
-[Minilinux](/software/minilinux): a minimal Linux distribution.
+* [Linux Packaging](/software/linux_packaging): packaging for Linux distributions.
+* [Minilinux](/software/minilinux): a minimal Linux distribution.
# Software
## C
-[pguse](https://github.com/andreasbaumann/pgfuse): a
-[FUSE](http://fuse.sourceforge.net) filsystem for the
-[PostgreSQL](http://www.postgresql.org/) database.
-
-[cssh](https://github.com/andreasbaumann/cssh): a small parallel SSH
-client for copying and executing commands to a cluster of machines.
+* [pguse](https://github.com/andreasbaumann/pgfuse): a
+ [FUSE](http://fuse.sourceforge.net) filsystem for the
+ [PostgreSQL](http://www.postgresql.org/) database.
+* [cssh](https://github.com/andreasbaumann/cssh): a small parallel SSH
+ client for copying and executing commands to a cluster of machines.
## C++
-[Sqlitexx](/software/sqlitexx): a C++ library for
-[sqlite3](http://www.sqlite.org) following ideas of
-[libpqxx](http://pqxx.org/)
+* [Sqlitexx](/software/sqlitexx): a C++ library for
+ [sqlite3](http://www.sqlite.org) following ideas of
+ [libpqxx](http://pqxx.org/)
## Information Retrieval
-[Lucene Index Dumper](/software/luceneanalyzer): a
-mini-contribution to [Lucene](http://lucene.apache.org/)
+* [Lucene Index Dumper](/software/luceneanalyzer): a
+ mini-contribution to [Lucene](http://lucene.apache.org/)
## Administration
-[Nagios libcurl plugin](/software/nagios_plugin_curl): a
-[Nagios](http://www.nagios.org) plugin replacing check_http
+* [Nagios libcurl plugin](/software/nagios_plugin_curl): a
+ [Nagios](http://www.nagios.org) plugin replacing check_http
diff --git a/content/software/linux_packaging.md b/content/software/linux_packaging.md
index e2aa153..64b182a 100644
--- a/content/software/linux_packaging.md
+++ b/content/software/linux_packaging.md
@@ -3,8 +3,6 @@ title = "Linux Packaging"
description = "packaging for Linux distributions"
+++
-# Linux Packaging
-
Like everybody else I started with standard distributions like Slackware,
SuSE, Centos etc. At a certain point I got fed up with the overbloated
nature (configuration wizards for example) in nowadays distributions and
diff --git a/content/software/luceneanalyzer.md b/content/software/luceneanalyzer.md
index 31b2656..0728969 100644
--- a/content/software/luceneanalyzer.md
+++ b/content/software/luceneanalyzer.md
@@ -3,8 +3,6 @@ title = "Lucene Index Dumper"
description = "a mini-contribution to [Lucene](http://lucene.apache.org/)"
+++
-# Lucene Index Dumper
-
LuceneAnalyzer is a quick hack for dumping and inspecting a Lucene index. Something for the 'sort-uniq-cut-awk' guys out there. :-)
* release 0.0.4 (for Lucene 3.1)
diff --git a/content/software/minilinux.md b/content/software/minilinux.md
index f7a4f8f..b89c644 100644
--- a/content/software/minilinux.md
+++ b/content/software/minilinux.md
@@ -3,8 +3,6 @@ title = "Minimal Linux"
description = "a minimal Linux distribution"
+++
-# Minimal Linux
-
Sometimes I want to send somebody a demo appliance with a minimalistic
Linux system, so he can test a software or so. With nowadays Linux
distributions this is impossible as they are unbelievably big.
diff --git a/content/software/nagios_plugin_curl.md b/content/software/nagios_plugin_curl.md
index 75b4e1d..92cbe42 100644
--- a/content/software/nagios_plugin_curl.md
+++ b/content/software/nagios_plugin_curl.md
@@ -3,8 +3,6 @@ title = "Nagios Curl Plugin"
description = "a [Nagios](http://www.nagios.org) plugin replacing check_http"
+++
-# Nagios Curl Plugin
-
In my job I'm sometimes the deputy of the system administrator.
Using nagios/zabbix/SNMP for monitoring I needed a decent plugin
for Nagios to do HTTP alive checks. The standard one had some problems
diff --git a/content/software/sqlitexx.md b/content/software/sqlitexx.md
index 8329519..5801ffd 100644
--- a/content/software/sqlitexx.md
+++ b/content/software/sqlitexx.md
@@ -1,10 +1,8 @@
+++
-title = "Sqlitexx"
+title = "C++ Sqlite interface"
description = "a C++ library for [sqlite3](http://www.sqlite.org) following ideas of [libpqxx](http://pqxx.org/)"
+++
-# C++ Sqlite interface
-
I saw libpqxx some time ago, the defacto standard C++ API for Postgresql
and was really impressed. Not finding one for Sqlite I decided to write
one. My efforts are accessible at