Faustas - Programming, Projects, Psychology and Faust
| "If you have a dream, then you have an aim and it's the uniqueness of your aims that make you special." |
If you want to use the Opera browser for administrative tasks from the command line, you should consider the kiosk mode of the browser. This mode is often used to start the browser without url bar or any security relevant options. You can start the browser in the kiosk mode with the following command:
makeaims.com has a new feature for your daily control in reaching your personal aims. We call it the Daily aims. Daily aims are like normal aims but you get an additional link at these aims to record your daily success with them.
What is so special about Daily aims?
I needed a shell command to replace a part within a few hundred file names that was no longer useful. The following line replaces a part in the name of files that is defined as "prefix1_":
www.makeaims.com. We have changed different parts of the website and improved the clarity of the surface. In addition, other minor updates will follow in the coming weeks, which complete the overall picture.
Recent changes were:
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
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.
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