Virtual (robot) Flobi - Motion Capture Playback Demo
This is the outcome of a project I am currently involved in, nevertheless Simon Schulz - one of my colleagues - realized this demo using his 'MoCap' helmet.
OpenNI Java Wrapper Test | Ubuntu 11.10
This is short demo of the OpenNI Java Wrapper. I've slightly customized the demo to - amongst other things - derive some joint angles of the skeleton. I'm planning to add generic middleware support which will enable this demo to deliver data specified by an IDL. In the final step this demo will be integrated into Blender.

LimeSurvey | Default Password Change | Redirect to login page [SOLVED]

Just a quick note on LimeSurvey 1.91, which I am currently utilizing in my studies to create some questionnaires. When I installed LimeSurvey following these instructions and logged-in for the first time, I was suddenly redirected to the login page. Seems weird to me because everything else worked fine according to the installation routine. I then found this page which is related to install problems. A quick look in the log file of my web-server revealed the problem.
Lighttpd | Can't have more connections than fds/2: 1024
Problem:(server.c.889) can't have more connections than fds/2: 1024 1024
This is an update to my earlier post Lighttpd doesn't start here's a less complicated solution:
setsebool -P httpd_setrlimit on
Cheers!
[Solved] Lighttpd Drupal 7 ImageCache | Images are broken | error.handler.404
First of all:
Clean URLs need to be enabled, see snippet below.
ImageCache dynamically generates (resizes) images that don't exist. If you upload an image while creating content, e.g:
http://foo.com/files/styles/thumbnail/1337.jpg
The web-server tries to locate the image:
http://foo.com/index.php?q=files/styles/thumbnail/1337.jpg
If it doesn't exist Apache2 (httpd) passes the request to Drupal (index.php) — benefitting from it's 'drupal friendly' rewrite rules — and the image is generated. The standard 'drupal-ish' rewrite rules for lighttpd just return a 404 error page which breaks the ImageCache workflow.
Lighttpd's rewrite rules do support the file exists flag you just need to enable it!
Here's the solution, 'if-not-file' goes before std. rules:
## ImageCache statement goes before standard rules
url.rewrite-if-not-file = (
"^/(.*)$" => "/index.php?q=$1"
)
## Drupal URL-Rewrite rules without LUA
url.rewrite-final = (
"^/system/test/(.*)$" => "/index.php?q=system/test/$1",
"^/search/node/(.*)$" => "/index.php?q=search/node/$1",
"^/([^.?]*)\?(.*)$" => "/index.php?q=$1&$2",
"^/([^.?]*)$" => "/index.php?q=$1"
)
Hope this helps



