Wilfred Hughes
Wilfred Hughes
I'd like to be able to write: ```lisp (setf (-last-item some-list) new-value) ``` Rather than: ```lisp (setf (car (last some-list)) new-value) ``` Would you be open to a patch that...
I would expect this to work: ```emacs-lisp (defun foo () (-let ((x 1) y) x)) ``` consistent with `let`, I'd expect it to set `y` to nil, as if I'd...
```emacs-lisp (match (list 0 1) ((list b b) 'match) ((list a b) 'diff)) ``` This returns `'match`. Ideally shadchen would throw an error on repeated symbols to avoid confusion.
These are Erlang syntax (e.g. GitHub highlights them as Erlang), but I get ERROR nodes when I try to parse them. For example, the following file: ``` {erl_opts, [ {parse_transform,...
It would be really useful to update a single package. I don't like upgrading everything at once, because things break without me noticing. Currently, I'm sorting based on package name,...
I'd like to limit who my Hubot can chat to on Telegram.
``` [Wed Jan 14 2015 21:41:48 GMT+0000 (GMT)] ERROR TypeError: Cannot call method 'match' of undefined at TextMessage.match (/home/wilfred/projects/HandyBot2/node_modules/hubot/src/message.coffee:29:5, :32:24) at TextListener.matcher (/home/wilfred/projects/HandyBot2/node_modules/hubot/src/listener.coffee:43:9, :44:26) at TextListener.Listener.call (/home/wilfred/projects/HandyBot2/node_modules/hubot/src/listener.coffee:23:16, :19:24) at Robot.receive...
### Scenario 1 - A==1.0 and A==2.0 are available. - B==1.0 depends on A==1.0. - C==1.0 depends on A (any version). - We currently have installed B and A==1.0. We...
I bumped into a bug recently that should have been picked up by our integration tests (pyinstall ignores the value of the -i flag). I later realised we're not running...
Install fails if I use setuptools. ``` $ virtualenv ~/.py_envs/pkglib -p python2 Already using interpreter /usr/bin/python2 New python executable in /home/wilfred/.py_envs/pkglib/bin/python2 Also creating executable in /home/wilfred/.py_envs/pkglib/bin/python Installing setuptools............done. Installing pip...............done....