what is a bin log in #mysql: dev.mysql.com/doc/refman/5.0…
Recent Updates Toggle Comment Threads | Keyboard Shortcuts
-
DerFichtl
-
DerFichtl
Traurig: Ihr lest unsere Artikel (wahrscheinlich) nicht bis zum Ende flip.it/Z1eqM
DerFichtl
Movie Hipster Kit flip.it/hL80n
DerFichtl
Jetzt auf n-tv: “Into the Wild” … Die wahre Geschichte zum Film.
DerFichtl
Example UILocalNotification Objective-C
- (IBAction) buttonClick:(id) sender {
[self scheduleAlarm];
}
- (void) scheduleAlarm {
UILocalNotification *localNotif = [[UILocalNotification alloc] init];
if (localNotif == nil)
return;
localNotif.fireDate = [NSDate dateWithTimeIntervalSinceNow:10]; // in 10s
localNotif.timeZone = [NSTimeZone defaultTimeZone];
localNotif.alertBody = @"WTF is going on?"; // Notification details
localNotif.alertAction = @"View"; // Set the action button
localNotif.soundName = UILocalNotificationDefaultSoundName;
localNotif.applicationIconBadgeNumber = 1;
// Schedule the notification
[[UIApplication sharedApplication] scheduleLocalNotification:localNotif];
}
DerFichtl
Cocoaheads Austria | Die freundlichste Entwickler Gemeinschaft für Mac OS X und iOS. – bit.ly/17QLXCI
DerFichtl
Manage Complexity with the Facade Pattern flip.it/ocS2I
DerFichtl
Where do people put good PHP job ads now? flip.it/6Xliy
DerFichtl
New on GitHub: Game Engine for Text Games
My Waiting Game Engine (WGE) is an simple php-engine for online browser games where the main task is to wait.
For each second you wait you get some money (depends on your level) and with money you can do/buy things. You can then combine the things and do more and more actions. For each action you earn experience (or lost some if you do the wrong action). And so on, and so on. More infos on GitHub.
Test a waiting game:
http://bohuco.net/waiting-game-engine/
Source code on GitHub:
https://github.com/DerFichtl/waiting-game-engine
DerFichtl
Twitter: “Scott added you to list: Elite App Developers” … huh?! I think I missed something
#noelite
DerFichtl
It really sucks when flipboard can’t load an article, and it sucks even more when Android change “sucks” to “Stücks”. #crapware
DerFichtl
DerFichtl
very very interesting javascript blog: creativejs.com … follow @creativeJS too
DerFichtl
JDK 8 almost feature complete: infoq.com/news/2013/06/j… … launch date march 2014
DerFichtl
Umbrella Fail 2 http://t.co/1lGwaWPfE7

DerFichtl
Umbrella Fail http://t.co/MohDTcUOZI

DerFichtl
Linz – Urfahranermarktgelände – Sonntag http://t.co/zYr1nG2jN7

DerFichtl
How to learn C … and Why
DerFichtl
rsync dry run (demo, simulation) returns only filenames:
rsync -vnprae ‘/usr/bin/ssh -i id_rsa’ –exclude=.svn /var/www/. user@server.at:/var/www/ | sed ’2,$!d’ | head -n-3
DerFichtl
Join codementor – instant 1-on-1 mentor for any code issues. codementor.io/?rid=419 via @CodementorIO
DerFichtl
∞ – a personal API – bit.ly/17bsOLq
DerFichtl
PHP Selenium Test Hints
… also for sauce labs.
use local selenium server (chrome driver):
public static $browsers = array(
array(
'browserName' => 'chrome',
'local' => true,
'sessionStrategy' => 'shared'
)
);
explicit wait in test … just use php sleep:
sleep(1);
$this->url($this->pageUrl);
sleep(1);
move the mouse (for onmousemove triggers in javascript)
$element = $this->byCss('#jobfieldsSelect button');
$this->moveto($element);
DerFichtl
Install a local selenium standalone server on mac osx … just two steps, just one jar file:
http://damien.co/resources/how-to-get-started-selenium-2-mac-os-x-java-7403
… by damien saunders.
After that you need a browser driver like chrome driver … download the standalone mac osx binary and put it at the same location like the jar:
DerFichtl
Time travel tattoo failed
– bit.ly/10flDu8
DerFichtl
Stumbling Into the Cold Expanse of Real Programming – Fast Games on 8-bit Systems – bit.ly/1172B8c