Todd Wolfson
Todd Wolfson
I am using `dbus-native` for implementing an MPRIS library. http://specifications.freedesktop.org/mpris-spec/latest/ During development, I have ran into a snag on a property that uses `as` (i.e. an array of strings) when...
I just typed `gt iadd -p` instead of `git add -p`. I have autocorrect enabled so the `iadd` would properly go to `add` but `gt` didn't register. Since GT is...
grunt has the [init task](https://github.com/gruntjs/grunt/blob/0.3-stable/docs/task_init.md) which create projects from a template. Additionally, users can [install custom templates](https://github.com/gruntjs/grunt/blob/0.3-stable/docs/task_init.md#creating-custom-templates). Unfortunately, this is a bit of a pain so I made [grunt-install-init](https://github.com/twolfson/grunt-install-init) to...
Currently, there is no info about how many bookmarks exist. It would be a nice touch to do so.
To install a basic level of asset management, download CSS and JS files via `grunt-curl` (preferably compiled Bootstrap files).
It is not the best experience when a browser gets below 500px in width. We should move to a responsive Bootstrap to fix that.
Currently, we are using a homebrew fuzzy match. Sifter.js seems quite mature and well-tested, it would be nice to experiment with it. https://github.com/brianreavis/sifter.js
**DEPENDS on #6** Add the ability to click on a link (on the left), which highlights the row and updates the URL to make it linkable. (Think GitHub code browser)...
It sucks that we cannot link other people to our searches. Add history to the page.
Currently, `commander` does not provide a slick venue for providing completion options on option values (supported by `completion`). We should consider how to achieve this ``` js program .command('hello') //...