Recent Posts

GDB Pretty Printers – Updated

1 minute read

Ever wondered why gdb doesn’t show vectors or other STLs? Wonder no more, that’s because GDB is unable to follow all the pointers that vector has internally....

Passing objects / classes with Guice

less than 1 minute read

@BindConstant will only let you to bind primitive data types such as int, char or String. If you want to pass a custom object, instance or class you need to ...

Data binding is not updating property

less than 1 minute read

You used DataBinding to bind a property to an object but even though state has been changed, your object is not updated. In my case I have a CheckBox and I b...