David's blog
Exceptionless Programming
November 28, 2012 00:00
I am a big fan of writing code that generates no runtime errors. This is an implementation of a function that takes the first element of an array.
template<typename T>
T first(std::vector<T> array)
{
if (array.size() == 0) { throw EmptyArrayException(); }
return array[0];
}
This is ...
Read postNice Visualization of a Cross Product
November 18, 2012 00:00
[This] is a very nice Java applet that allows you to see what a cross product is. The applet shows A x B = C (i.e. C is the cross product of A and B) in 3 dimensions. You can drag A and B around to see the effects on C.
This UI ...
Read postBlurred Text Effect
August 13, 2012 00:00
I came across a strange site that blurred the text of answers and asked the reader to sign up to see it. It was strange because the text was already there, just blurred via css. I thought it was an interesting little snippet so I decided to record it.
<span style="color:transparent; text-shadow:0 ...
Read postRegex Escapees
November 22, 2011 00:00
Sometimes when one writes regexes, Its hard to know what needs to be escaped and what doesn't. But I've solved that problem while I was writing a program that generated my regexes for me. Now I have a snippet that both humans and programs can use to write regexes!
This is for the .NET flavor of Reg...
Read postMaking Color From Alpha, Hue, Saturation and Brightness
November 22, 2011 00:00
I find myself wanting to do this sometimes, so here's a bit of code (I'm sure I stole this code from somewhere else);
public static Color ColorFromAhsb(int a, float h, float s, float b) {
if (0 > a || 255 < a) {
throw new ArgumentOutOfRangeException("a");
}
if (0f > h || ...
Read post