Wednesday, December 10, 2014
Hopper+lldb for iOS Developers: A Gentle Introduction
Monday, December 8, 2014
HeapInspector
HeapInspector is an iOS debug tool that monitors the memory heap in your app. You can discover memory leaks, no longer needed living objects and more issues directly on your device without ever starting Instruments.
Monday, December 1, 2014
Wednesday, November 5, 2014
Monday, November 3, 2014
Immutable Data Collections
Immutable data cannot be changed once created, leading to much simpler application development, no defensive copying, and enabling advanced memoization techniques.
Immutable provides List, Stack, Map, OrderedMap, and Set by using persistent hash maps tries and vector tries as popularized by Clojure and Scala. They achieve efficiency on modern JavaScript VMs by using structural sharing and minimizing the need to copy or cache data.
Immutable also provides a lazy Seq, allowing efficient chaining of collection methods like map and filter without creating intermediate representations. Create some Seq with Range and Repeat.
Tuesday, June 24, 2014
Monday, June 2, 2014
scribe/BROWSERINCONSISTENCIES.md
contentEditable
browser inconsistencies that The Guardian ran into while developing their Scribe library.
Thursday, May 1, 2014
Wednesday, April 16, 2014
Lesser-Known JavaScript Debugging Techniques
debug()
, monitor()
, monitorEvents()
and a Chrome extension to extend these to native methods and custom events.
Saturday, March 29, 2014
ImageFiller
Quickly fills your iPhones Photo Album with thousands of random images from lorempixel.com.
Tuesday, March 18, 2014
LICEcap
LICEcap can capture an area of your desktop and save it directly to .GIF (for viewing in web browsers, etc) or .LCF (see below).
Sort of related is Sublime Text's hack to animate screenshots.