Posted on

Analyzing Firebird 3.0

A new version of Firebird DBMS was released not so long ago. This release was one of the most significant in the project’s history, as it marked substantial revision of the architecture, addition of multithreading support, and performance improvements. Such a significant update was a good occasion for us to scan Firebird one more time with PVS-Studio static code analyzer.

pdf

Posted on

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

Updating the UI from a Timer _ Android Developers