Blogroll
- 914 electric conversion blog
- ALL ART BURNS
- Arcade Zen
- Brian’s Gallery
- Chili’s World
- Chocomonkey’s Blog
- Google Blog
- Juan’s website
- Julia y Daniel
- Katja’s Blog
- Kulick’s blog
- Paul’s Time Sink
- Peter S. Conrad
- Sad Salvation
- Slacy’s Gallery
- Snake Surley
- Sprang’s Blog
- Super Karate Monkey Fist
- Third Time Dad
- Universe Hacking
- Valspark
- Zac’s Story
- Zeigen, Inc.
Recent Comments
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 c++, direct object, indirect object, object-oriented, programming, python, subject-oriented
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
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
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