summaryrefslogtreecommitdiff
path: root/content/software
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2018-06-04 21:11:59 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2018-06-04 21:11:59 +0200
commit357ceb1af4d189e25252fab2aa72e5fe8cc068f2 (patch)
treef2e497a2956bc323255659854b37f44b239c5fd9 /content/software
parent801daa85bba71633b704ec3b77696c7334b8b699 (diff)
downloadwww-andreasbaumann-cc-357ceb1af4d189e25252fab2aa72e5fe8cc068f2.tar.gz
www-andreasbaumann-cc-357ceb1af4d189e25252fab2aa72e5fe8cc068f2.tar.bz2
moved to private git repo from github
Diffstat (limited to 'content/software')
-rw-r--r--content/software/_index.md2
-rw-r--r--content/software/linux_packaging.md3
-rw-r--r--content/software/luceneanalyzer.md5
-rw-r--r--content/software/minilinux.md6
-rw-r--r--content/software/nagios_plugin_curl.md10
-rw-r--r--content/software/sqlitexx.md19
6 files changed, 35 insertions, 10 deletions
diff --git a/content/software/_index.md b/content/software/_index.md
index 040c967..2777d88 100644
--- a/content/software/_index.md
+++ b/content/software/_index.md
@@ -14,7 +14,7 @@ title = "Software"
* [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
+* [cssh](http://git.andreasbaumann.cc/cgit/cssh/): a small parallel SSH
client for copying and executing commands to a cluster of machines.
## C++
diff --git a/content/software/linux_packaging.md b/content/software/linux_packaging.md
index 64b182a..e6bd7cc 100644
--- a/content/software/linux_packaging.md
+++ b/content/software/linux_packaging.md
@@ -22,5 +22,8 @@ I'm still maintaing some ARCH Linux packages, mainly things I need for
personal hacking.
See my [ARCH packages](http://aur.archlinux.org/packages.php?SeB=m&K=andreas_baumann).
+I'm also taking part in the [Archlinux32](https://www.archlinux32.org) project,
+an effort to keep 32-bit Intel alive for Archlinux.
+
I'm also trying to play with a [minimalistic Linux](/software/minilinux).
A little bit extreme maybe, but given the current CoreOS maybe also not. :-)
diff --git a/content/software/luceneanalyzer.md b/content/software/luceneanalyzer.md
index 0728969..f59aa28 100644
--- a/content/software/luceneanalyzer.md
+++ b/content/software/luceneanalyzer.md
@@ -69,6 +69,7 @@ text va902b 9[1]
text valueselect 7[1]
```
-A Git repository is accessible at **git://github.com/andreasbaumann/LuceneAnalyzer.git** (or at [https://github.com/andreasbaumann/LuceneAnalyzer/](https://github.com/andreasbaumann/LuceneAnalyzer/))
+A Git repository is accessible at **git://git.andreasbaumann.cc/LuceneAnalyzer.git** (or at
+http://git.andreasbaumann.cc/cgit/LuceneAnalyzer/ )
-In case of questions, contact me at <mail at andreasbaumann dot cc>.
+In case of questions, contact me via email.
diff --git a/content/software/minilinux.md b/content/software/minilinux.md
index b89c644..fa8239d 100644
--- a/content/software/minilinux.md
+++ b/content/software/minilinux.md
@@ -32,7 +32,7 @@ qemu -hda minilinux.img
[view demo session](/minilinux/minilinux.avi)
A Git repository is accessible at
-**git://github.com/andreasbaumann/minilinux.git**
-(or at [https://github.com/andreasbaumann/minilinux/](https://github.com/andreasbaumann/minilinux/))
+**git://git.andreasbaumann.cc/minilinux.git**
+(or at http://git.andreasbaumann.cc/cgit/minilinux/)
-In case of questions, contact me at **mail at andreasbaumann dot cc**.
+In case of questions, contact me via email.
diff --git a/content/software/nagios_plugin_curl.md b/content/software/nagios_plugin_curl.md
index 92cbe42..bd83c2c 100644
--- a/content/software/nagios_plugin_curl.md
+++ b/content/software/nagios_plugin_curl.md
@@ -9,5 +9,11 @@ for Nagios to do HTTP alive checks. The standard one had some problems
mainly with chunked transfer encoding, thus I hacked a plugin using the
excellent [libCurl library](http://curl.haxx.se).
-The development area is accessible at:
-[https://github.com/andreasbaumann/nagios-plugin-curl](https://github.com/andreasbaumann/nagios-plugin-curl).
+Further development goes on as 'check_curl' in
+[monitoring-plugins](https://github.com/monitoring-plugins/monitoring-plugins)
+in branch
+feature_check_curl. If you want help out testing or developing it
+should happen there.
+
+An old archived version of the plugin can be found at
+http://git.andreasbaumann.cc/cgit/nagios-plugin-curl/.
diff --git a/content/software/sqlitexx.md b/content/software/sqlitexx.md
index 5801ffd..6272359 100644
--- a/content/software/sqlitexx.md
+++ b/content/software/sqlitexx.md
@@ -3,7 +3,22 @@ title = "C++ Sqlite interface"
description = "a C++ library for [sqlite3](http://www.sqlite.org) following ideas of [libpqxx](http://pqxx.org/)"
+++
+### Description
+
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
-[http://wiki.github.com/andreasbaumann/sqlitexx/](http://wiki.github.com/andreasbaumann/sqlitexx/).
+one. My efforts are accessible at http://git.andreasbaumann.cc/cgit/sqlitexx/.
+
+Current state is work-in-progress. Basic functionality is available as:
+
+- simple connections
+- basic transactions
+- prepared statements
+- result sets
+- support for int, double, text types
+
+My apologies for my C++-style (it’s the first thing I write) and also my apologies to the libpqxx developers if I copied ideas and code from their project..
+Download
+
+Release 0.0.5 is available at http://www.andreasbaumann.cc/sqlitexx/sqlitexx-0.0.5.tar.gz.
+