Thoughts on software and people.


26 Jun 2009 » Compiling HAProxy on OS X

If you want to use PCRE when building HAProxy on your mac (recommended by the docs) and you've installed PCRE using MacPorts (sudo port install pcre), you may need to tweak Makefile.osx to help it find the headers, otherwise you'll see a whole slew of errors starting with this:

More

03 Apr 2009 » Thrift: Bidirectional Async RPC

Source on GitHub: http://github.com/JoelPM/BidiThrift

More

05 Feb 2009 » Thrift: Writing Thrift Objects to Disk with Java

If you're using files to pass data around between different components of a system it may make sense to use Thrift. Doing so means you get smaller file sizes (assuming you do binary serialization) but still have files that can be easily read in many programming languages.

More