82
Today at work we had a workshop about the processes some of the new projects are using. They’re definitely interesting, and we all played around with the workflow on the...
Post Vaycay
Took two weeks off to go to Europe. I think I forgot how to program…
My .cshrc
Aside from a bunch of environment variable settings and shortcuts to oft-used directories, I’m collecting in my .cshrc file some little aliases. Here are a handful of my favorites: #...
Running in Real-Time
In C/C++, you can make a process run on a specified CPU and set its priority. #include <sched.h></code> // set CPU affinity so we can only run on CPU 7...
Faking Better-Than-Millisecond-Resolution with a QTimer
If you’ve ever used a QTimer you may know that they have a maximum time resolution of ~1 millisecond, and that they’re fairly inaccurate (even on a Linux box). Here’s how...