- Bijou 150 x 10 pixels icons : http://bijou.im/
- http://thenounproject.com/
- 50 amazing free icons sets : http://webdesignledger.com/freebies/50-amazing-free-icon-sets
- Smashing Mag : 35 (Really) Incredible Free Icon Sets : http://www.smashingmagazine.com/2008/03/06/35-really-incredible-free-icon-sets/
- 30 free icons packs from the Dribble community : http://line25.com/articles/30-free-icon-packs-from-the-dribbble-community
- 32 elegant and minimalist icon packs : http://psd.fanextra.com/articles/32-elegant-and-minimalist-icon-packs/
- POI icons : http://mapbox.com/maki/
This is a draft list of what we're thinking about measuring in Etsy's native apps.
Currently we're looking at how to measure these things with Espresso and Kif (or if each metric is even possible to measure in an automated way). We'd like to build internal dashboards and alerts around regressions in these metrics using automated tests. In the future, we'll want to measure most of these things with RUM too.
- App launch time - how long does it take between tapping the icon and being able to interact with the app?
- Time to complete critical flows - using automated testing, how long does it take a user to finish the checkout flow, etc.?
- Battery usage, including radio usage and GPS usage
- Peak memory allocation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Rx = require('rx'); | |
var readline = require('readline'); | |
var fs = require('fs'); | |
var rl = readline.createInterface({ | |
input: fs.createReadStream('lines.txt') | |
}); | |
var lines = Rx.Observable.fromEvent(rl, 'line') | |
.takeUntil(Rx.Observable.fromEvent(rl, 'close')) |