"If you have a dream, then you have an aim and it's the uniqueness of your aims that make you special."
Faustas
www.makeaims.com

The website makeaims.com makes it possible to define concrete aims from your personal dreams and wishes. You can share your aims with other users and get motivation by your followers. more ...

www.wegtam.org

The Wegtam search agent reduces the time it takes to search the really relevant content in the net. Use the meta search, the post filtering options and many more features. more ...

Work climate in a research institute

The book analyses the work climate in a research institute and was produced from a master thesis. more ...

www.nebelklar.de

Different articles about psychology, philosophie, motivation and the interesting aspects of life can be found on nebelklar.de. Be prepared to see through the misty clouds. more ...


Latest stories

Eclipse does not recognize added Android library projects

I realized that sometimes Eclipse forgets added libraries of a project. The problem is as follows. You can add a library to your Android project via:

Properties → Android → Library

Install OpenCRX with PostgreSQL and Ubuntu 10.04

If you want to install OpenCRX 2.8.5 with a Postgres database, you have to do some additional steps during the installation. The general installation steps are described at OpenCRX 2.8.5 Install. Here comes the short description with the additional changes for the Postgres database.

Convert timestamp to integer and integer to timestamp in Postgres

If you want to convert an integer value into a timestamp in Postgres, you can use the following function:

SELECT to_timestamp(1321398000);

The vice versa conversion can be done with the following line:

select extract(epoch from '2011-11-15 00:00:00+01'::timestamp with time zone)::integer

Android Dalvik format failed error during packaging process

I recently discovered a Dalvik error while performing the building of the project. The error message was something like:

UNEXPECTED TOP-LEVEL EXCEPTION:
java.lang.IllegalArgumentException: already added: Lcom/ ...

and:

Price Navigator shopping app for Android in the market

I finished my third app and uploaded it to the Android market as Price Navigator. It is a shopping app that makes it possible to get the best price for a product, get additional information and ratings and see the product specifications within the app.

Additionally, the app has a barcode scanner to scan any barcode and get the product information.

Use Stored Procedures in your Postgres database

If you want to use Stored Procedures within your Postgres system, you have to create a procedural language in the selected database. A simple solution could be to open pgadmin3 and connect to the desired database. Open a new Query window and type the following line:

CREATE LANGUAGE plpgsql;

A basic function template could be as follows:

Connect Drupal 6 with Postgres

I started a new project and wanted to use Postgres as database for my Drupal installation. The following steps explain the connection of a Drupal system with a Postgres database on an Ubuntu working machine.

First, you have to install the required packages on the command line:

Syndicate content