Archive for life-code

I moved

Stop reading here, it is no longer my hangout. All future posts are being made on TrotterCashion.com. It’s ruby, nginx, and more fun. Enjoy.

Comments

(define trotter? taking-gre?)

‘nough said. I’ve got the GRE today, so don’t expect to see any witty computer posts.

Still, I’ll leave you with one snippet of life-code to tide you over:

Read the rest of this entry »

Comments

life-code: To-Do List

To give you an idea as to what life-coding is all about, have a look at the code for how to complete to-do list:

define do-task-list
  for item in task-list
    perform item
  loop
end

Though it says nothing about how to make task-lists or how to perform the action, it does provide a concrete definition of how to execute a to-do list. Over time, you’ll see these bits of code start to get integrated into a definitive system.

Comments