Tag Archives: programming

Subject Oriented Programming (SOP) vs. Object Oriented Programming (OOP)

When I’m programming, I usually anthroporporphize the code and the actors involved, and that means when I’m thinking about program flow, I think of it as if they’re real actors doing the tasks needed, and then I convert that back … Continue reading

Posted in General | Tagged , , , , , , | 3 Comments

If you program, you should watch this.

The video linked below sort of blew my mind. The integration and instant feedback between test & code The notion of “spec” (not “unittest”) The spliraling nature of the way he writes the code. Here’s the blog post with the … Continue reading

Posted in General | Tagged , , | Leave a comment

Can we all agree that “Programming Language” := “Turing Complete”

I’m tired of articles like this one that say things like XML essentially is a programming language that allows users to customize the underlying format of their word-processing documents It peeves me a lot when people refer to things like … Continue reading

Posted in General | Tagged , , , | 2 Comments

Perl in place replacement syntax

I always forget how to do this, so I’m writing it down: perl -pi -e “s/foo/bar/g” Is there a way to do this in Python and be as concise? That would be really nice, and would eliminate one more place … Continue reading

Posted in General | Tagged , , | 1 Comment