Rob Colburn

Results 10 issues of Rob Colburn

Just curious what becomes of Stores in this paradigm? Flow introduced the ideas of Stores as a way to keep consistent data across your different views (if notifications change for...

question

I'd like to figure out a nice way to sequentially compose data-loaders for a given data fetcher. Blog/Post/Comment is the canonical example, so let's use that. * Let's say that...

I ❤️ `chai-spies` especially `with`, but I found the output left me wanting a bit more. For a long while, I would just [write in some hacky stuff manually](https://github.com/robcolburn/chai-spies/commit/26827fdbb0228d9630c8fc972f10a05d1a37065b). But,...

So, I'm attempting to implement f51, and I'm running into a usability issue. While the user is filling out a field, the validation message is shown, so they can act...

Some hosting vendors provide DB backups in a `.sql.gz` format. It would be nice to know a copy-paste-able script to replace a DB. Ideally, ``` sh ./awesome.sh ~/Downloads/backup.2015-05-21.sql.gz ``` Though,...

This this goes hand-in-hand with #18 and #20. As an implementer of a site crawler, I'd like to tell tarantula which engine or kind of leg to use, based on...

Ideally, this means separate visit functions. Somehow we should name those logically. ### Rules Unless we can know for certain what kind of response we're dealing with, we should give...

It's a somewhat common common edge case to directly link to files (like jpg's, pdf's, csv's, ...). We can't really crawl those at this time, and they're probably not all...

Let's add another client using actual jQuery (probably, with a dom-parser). It'll be more performance expensive, but will be more featureful. If nothing else, it'll be interest to profile the...

There may be a mild memory performance win by preserving and re-using request objects since request appears to have some pooling logic of it's own.