Ubuntu: Open Windows in Foreground
If your windows do not open in Foreground like we are all used to it, it might be caused by a wrong compiz-setting.
In this article i will describe how to fix that problem.
|Den ganzen Beitrag lesen...
If your windows do not open in Foreground like we are all used to it, it might be caused by a wrong compiz-setting.
In this article i will describe how to fix that problem.
|Den ganzen Beitrag lesen...
Adding Thunderbird to the "indicator-applet" is possible and not that hard.
I wrote down the few commands and hints.
|Den ganzen Beitrag lesen...
Everybody talks about security but most of the people still save md5(password) in their databases. This is not funny. Reversing a simple and even a average password is not that hard.
I once wrote this tiny class that generates secure enough password hashes.
|Den ganzen Beitrag lesen...
A few days ago i needed a simple queue class that would also be persistent after the pagerequest. I first thought about putting this queue in SQL but did not want the whole SQL overhead and such and remembered a blog artice about memcache queues a once read. But i had no memcache for that project and used APC instead.
|Den ganzen Beitrag lesen...
I like solving strange problems with my computer. But what i also like is finding cool tricks and hacks in real life.
This page will contain a collection of life hacks i know.
|Den ganzen Beitrag lesen...
Today i found a error in a tiny script i was working on.
The error Message looked like this:
First i found a few hints about repairing or optimizing MySQL tables, but this did not work out.
After a few debugging outputs a realized that the query was not properly written.
|Den ganzen Beitrag lesen...
I had a wierd problem with my notebook and a fresh Windows 7 installation.
For saving battery power a changes the minimum CPU speed to 1%, but somehow this settings was "forgotten" and resettet with the default value 100%.
But i managed to find out what happened really.
|Den ganzen Beitrag lesen...
For all of you who liked phpMyAdmin2 where all relevant information was visible at any time, sould be annoyed be the new slider effects in phpMyAdmin3.
I did a short search for the config value to change this and found this solution.
Add this to your config.inc.php:
And your sliders will start in visible state.
phpMyAdmin download:
http://www.phpmyadmin.net/home_page/downloads.php
A workmate mentioned, that floor($i) could be replaced with (int)$i.
I found this very interresting and did some researched about that.
floor($i); will return a float that will have the lower value of $i.
A cast will just convert $i to an integer which will cut of all decimals.
So by symptoms, these two methods are equivalent. Even if floor returns a float, PHP does dynamic casting of its variables.