Jordan Running

Results 7 issues of Jordan Running

It appears as though the History class [always gets its options from `Pry.config.history`](https://github.com/pry/pry/blob/87f8c37375d74bf150f7d7b3e5240c42f5dfad52/lib/pry/history.rb#L145) even if other options have been given to the instance. In other words, this works as expected:...

The section ["`begin...rescue` vs `respond_to?` for Control Flow"](https://github.com/JuanitoFatas/fast-ruby#beginrescue-vs-respond_to-for-control-flow-code) is correct when the receiver does not respond to the method (because rescuing an exception is expensive), but when the receiver _does_...

The [iOS Human Interface Guidelines](https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/IconMatrix.html#//apple_ref/doc/uid/TP40006556-CH27-SW2) now include sizes for the iPhone 6(S) and iPad Pro. Here's the lot of them: ``` iPhone 6(S) Plus (@ 3x): 180x180 iPhone 4S, 5,...

Very often in a Shugaku puzzle when placing a futon it will appear shaded red, and when placing another futon the red futon either partially or fully disappears. This problem...

bug

I know it's impractical to handle all shell expansions, but it would be nice if numberwang recognized `~`. This came up recently when a file I piped to numberwang included...

It would be nice if numberwang had an `--expand`/`-x` option to expand paths upon copying. For example, here is numberwang's current behavior: ``` text $ pwd /Users/jrunning/foo $ touch bar/baz.txt...

I wanted to load the contents of a JSON file so I put some code like this in my `/api/routes/_.context.ts` file, as I'm accustomed to in ES modules: ```js import...

enhancement