Here you can find the list of performance tips for Firebird database in different areas – from hardware/OS and Firebird configuration tuning to SQL optimization recommendations.
Author: arvifox
Coding-savvy Russia students best China & US to win ‘programming world championship’
A Russian team from St. Petersburg State University has triumphed in the IBM-sponsored ACM International Collegiate Programming Contest (ICPC), beating 128 teams to win the “programming world championship” to Russia for a fifth straight year.
Multiplayers game; states syncing
Android – Timer, update UI
http://qaru.site/questions/342385/how-to-change-a-textview-every-second-in-android
[code language=”java”]
Timer timer = new Timer();
timer.scheduleAtFixedRate(new TimerTask()
{
public void run()
{
//your code
}
}, delay, period);
[/code]
How to Update the UI in an Android Activity Using Data from a Background Service
https://android-developers.googleblog.com/2007/11/stitch-in-time.html