Steven Harman

Results 96 comments of Steven Harman

I wonder if allowing arbitrary patterns is a great idea from a UX perspective? I can image even things like folks shell expansion and escaping causing all kinds of confusion....

@axelson I've not used Asana, but it sure is surprising they don't give a shorter, human-friendly, identifier that could be used. 😖 I'm not opposed to adding something like this....

Hello @RobotCaleb, Sorry for the trouble, but thanks for the report. Are you saying that you had a repo (`/home/users/alice/parent-repo/`) which also had a submodule it in (`/home/users/alice/parent-repo/foo/submodule-repo/`)? And you...

OK, I see now that the error happens when trying to `git tracker init` from within a submodule. In Git > 1.7.8, Git does not leave repo directories (e.g., `.git/`)...

No problem. I'll try to get a fix in at some point. For myself, or anyone wanting to fix this, something to consider would be using `git rev-parse --git-dir` and...

I think we can leverage the `to_prepare` initialization hook to set the `session_class` after the Rails autoloader has kicked in. For example ```ruby # config/initializers/session_store.rb Rails.application.config.session_store :active_record_store, key: "_my_app_session" Rails.application.config.to_prepare...

I think I have a fix ready for this over at http://github.com/stevenharman/less/tree/issue-155

Please don't feel compelled to accept this if it rubs you wrong - I just thought I'd put it out there, just in case. :wink:

From what I can tell, the `eval` allows arbitrarily long chains of "dot notation". If we had list comprehensions, or by brute-forcing a `for` loop, the same thing could be...

I've got a local branch that uses an `onSelect` binding that will be called with the selected `result` object as an argument. It looks something like this: ``` html ```...