Abstract Heresies
Unorthodox opinions on computer science and programming.
Thursday, March 15, 2012
Another quick(?) question
›
I was asked: In your opinion, from a Google perspective, what qualities make up a great CTO? I'm not sure what a “Google perspective” i...
2 comments:
Wednesday, March 14, 2012
Recursion with no base case?
›
Here's my solution: (define (all-descendants node-children root) (cons root (append-map (lambda (child) ...
1 comment:
Monday, March 12, 2012
1 minute puzzle
›
Given a procedure that returns a list of the children of a given node of a tree, write a procedure that returns a list of all the descendant...
6 comments:
Wednesday, February 15, 2012
jrm bloviates
›
I recently received an email asking me, “ Do you know of any good books about developing software or thinking in abstraction? I have books, ...
6 comments:
Tuesday, February 14, 2012
ILC 2012 Call for Papers
›
+----------------------------------------------------------------------+ | ...
Thursday, January 19, 2012
A bit more challenging
›
In my previous post , I gave the puzzle of taking a pattern and generating code that matches it. The tricky part was making sure that the p...
Sunday, January 15, 2012
Slightly trickier
›
In my previous post , I gave a small pattern matching problem. It is easily solved by recursively descending the pattern and the object to ...
1 comment:
‹
›
Home
View web version