Tag Archives: functional programming

MongoDB Replication is Easy

Database replication with MongoDB is easy to setup. Replication duplicates all of the data from a master to one or more slave instances and allows for safety and quick recovery in case of a problem with your master database. Here … Continue reading

Posted in Code | Tagged , , | Leave a comment

Scala and Adding New Syntax

One interesting thing about some languages is their support for adding new syntax. While all languages have the ability to add new functions or types some have specific properties that make it easy to add what looks like new built-in … Continue reading

Posted in Code, Scala | Tagged , , , | 14 Comments

Scheme/HtDP Unit Testing Functions

How to Design Programs (HtDP) provides a series of unit testing functions that allow you to test the output of any kind of function. The current version talks about testing your code, but doesn’t offer a lot of guidance into … Continue reading

Posted in Scheme | Tagged , , | Leave a comment

Studying HtDP

I haven’t posted in a while, but I’ve recently been studying How to Design Programs (HtDP). It’s really a book about teaching beginners how to program by following a series of recipes that tell you how to identify and solve … Continue reading

Posted in Scheme | Tagged , | Leave a comment

Erlang First Post

Some linguists and philosophers posit the idea that you can not have a thought for which you do not have language. “The limits of my language mean the limits of my world.” – Ludwig Wittgenstein

Posted in Erlang | Tagged | 2 Comments