Ruby has some great tools surrounding it which make it a pleasure to work withbut getting everything setup can be tricky.Bundler is an awesome tool which manages anapplication's dependencies. It...
I recently wrote a C application which uses poll() towait for interrupts from a GPIO. It worked perfectly until we tried to run theapplication under systemd on Angstrom at which point it used 100%...
Setting up Redmine to send email notifications throughGMail is straightforward once you know how!First you will need a GMail account set up through which the emails will besent. We setup...
Neglecting the invisible face of software maintenance means that your code builds up cruft over time. This makes it increasingly difficult to change and extend. The end result is unhappy developers...
Here's a simple example of mixing signed and unsigned integers in C,does it do what you would expect?By default, compilers such as gcc and clang (llvm) will compile thefollowing code without...