Skip to content

{ Tag Archives } programming

My first Scheme program

I’ve just started experimenting with Scheme, specifically to follow Structure and Interpretation of Computer Programs. Here is a Scheme procedure that returns the sum of squares of two larger numbers out of the given three. 1 2 3 4 5 (define (sumLargeSquare a b c) (cond ((and (< a b) (< a c)) (+ (* [...]

Also tagged ,

Minifying Javascript/css without changing file references in your source

Rule 10 of Steve Souders High Performance Web Sites: Minify Javascript The most common problem faced while implemnting this is how you handle the full and minified version and how to change there reference in referencing documents. One of the easier ways to do this is to make it part of the deployment process. Here [...]

Also tagged , , , , , , ,