Links: Cheap wardrobe, App Stores, Javascript & Parsing.
My shared links for February 23rd:
-
Strategic Frugality If you're just starting to build a... - where you can skimp!
-
Dealing with Crap apps in the catalog… - chuq on the tough problem of policing app stores.
-
JSLint,The JavaScript Code Quality Tool - From Douglas Crockford
-
Jison - javascript bison with a yacc-alike too
-
Simple Top-Down Parsing in Python - Pratt Parsing in Python. (After Douglas Crockford's Javascript version)
def expression(rbp=0): global token t = token token = next() left = t.nud() while rbp < token.lbp: t = token token = next() left = t.led(left) return left
Comments
Comments powered by Disqus