Sep 13
A Better Binary File Generator DSL in Ruby
In Creating a Binary File Using a Ruby DSL I did a very small example of using a ruby DSL to generate complex binary files without having to use C or a hexeditor. I’ve beefed it up significantly since then so here is the updated version of h2b.irb.
Read more
Sep 6
Verifying Code Examples in your Documentation
One of the more annoying aspects of writing developer documentation is that it is very easy for your code examples to get out of date, develop typos, etc(As those reading previous articles may have noticed). In this article I use docbook, xslt, and automake to generate code examples that are guaranteed to compile.
Read more
Jul 20
What is a C++ Functor?
I did a presentation on the spirit library in the flesh recently and was surprised to find the big sticking point was C++ functors. So I thought I’d cover the concept here.
No commentsJul 20
Boost Spirit Part II (Attaching Actions to Your Grammar)
In the last article we covered how to define a grammar in the boost spirit library. This article will show you how to use the data parsed by the grammar with actions. The code for this example is here.
Read more
Jul 1
Boost Spirit Part I (Validating Against a Grammar)
I haven’t done a post in a while, but I thought the boost spirit library was worth an entry. Spirit provides a way of specifying and parsing a custom language grammar right inline in C++ without the need for a code generator like lex/yacc. Spirit makes it so easy to specify and use a grammar that you should never hand write even the most trivial parser again.
The full code for this example can be found here.
3 commentsApr 1
Why You Shouldn’t Build Warnings Into Your Interface
Below the link, why I think you should never under any circumstances design a feature that needs a warning message by design.
Read more
Mar 25
Creating a Binary File Using a Ruby DSL
So I used ruby to convert a simple hex string into a binary file in Converting hex to Binary in 4 Languages. Today I was trying to create a mixed ascii/binary file at work and created a little Domain Specific Language that has good possibilities.
NOTE: There is an expanded version of this script here: A Better Binary File Generator DSL in Ruby
Read more
Mar 15
Why C Switch Statements Should go the way of the GOTO
The venerable C switch statement keeps showing up in other languages presumably because the people who write new languages are familiar with C and don’t really think about it.
Read more
Mar 14
PI Day!
This isn’t strictly computer engineering, but at least it is math. Today, 3/14, is PI Day!. Enjoy.
No comments