iOS

iOS 7.0.2 is here!

Posted on:

Just few minutes ago all my devices showed available update to 7.0.2. The biggest change is fix for lockscreen bypass bug. You can find details here: http://support.apple.com/kb/HT5957

iOS

Rotating and moving UIImageView

Posted on:

Just simple conclusion – NEVER EVER try to move UIImageView which you are rotating using CATransform3DMakeRotation or CGAffineTransformMakeRotation. Even combining CGAffineTransformRotate with CGAffineTransformMakeTranslation together in CGAffineTransformConcat function gives […]

MySQL

Quick tip – how to generate MySQL random date/time in given range?

Posted on:

Just use: SELECT DATE_FORMAT( FROM_UNIXTIME( RAND() * (UNIX_TIMESTAMP(‘2012-11-13 16:00:00’) – UNIX_TIMESTAMP(‘2012-11-13 23:00:00’)) + UNIX_TIMESTAMP(‘2012-11-13 23:00:00’) ), ‘%Y-%m-%d %H:%i:%s’) where first param UNIX_TIMESTAMP(‘2012-11-13 16:00:00’) is start value, second UNIX_TIMESTAMP(‘2012-11-13 23:00:00’) is […]