type systems: missing the point

This presentation at strangeloop has been generating a lot of ink this week: http://www.youtube.com/watch?v=SWTWkYbcWU0 The presentation was somewhat interesting, the contentious point made was offering an SLA on a system without a good type system was unethical. This generated a lot of strong reactions…

Read full post

simple regex parser

From http://www.geeksforgeeks.org/forums/topic/implement-a-regular-expression-parser/: implement a simple regex parser. This is a brute force O(n2) solution that may have some rough edges, but works for most cases: …

Read full post