Tag ‘programming’

Tag ‘programming’

/ 2014-12-30 19:21

Signals and functions in QML

Today when I was working on a small QML program, I ran into a very stupid bug. I used a Timer to make something happen after five seconds.

/ 2019-09-05 14:24

A warning about conversion warnings in C++

C++ is really fun to work with, but it does make it really easy sometimes to shoot yourself in the foot.

/ 2015-02-06 12:24

Java tip: Immutable collections

If a method returns a collection, you often don’t want the caller to be able to mess around with the resulting collection.