AJ ONeal

Results 311 issues of AJ ONeal

See #476 If you use `"*"` for the dependency version, cargo cannot resolve the versions correctly: ```toml [dependencies] html5ever = "*" markup5ever_rcdom = "*" ``` Fix: use exact dependencies ```toml...

@tjfontaine Do you need some help maintaining this? It looks like there are a number of great bug fixes and features just sitting wishing waiting. I'm going to be using...

I argue that `[]` should be used instead of `new Array()`, and especially instead of `new Array(arg0, arg1, ...)` to avoid confusion (i.e. I was confused when I saw it)....

## Preview See the changes in action at: ## Here, here! I changed the links by - making the visual target much larger by making the text of the links...

Would you be willing to release binaries for a CLI for this via Github Releases? I'm not sure what other projects are using, but this looks like it may work:...

``` javascript app.get('/some/path', arrayOfMiddleware); ``` yields ``` TypeError: handle must be function, not object ```

It's looks like it's similar to regex, but with some custom name-group type stuff. It's definitely not the router from connect 1.x (which I maintained for a little while after...

In the olden days I could use a route such as `/files/:id/:filename?` and that would match paths like - `/files/1234` - `/files/1234/big` - `/files/1234/big.png` - `/files/1234/big-bird` - `/files/1234/big-bird.png` I just...

Any idea how much effort that would require and if / when you might have support?

I added a cli to be able to test this with. ``` npm install -g highlight-cli ``` I was trying to add the bin to to your existing package.json, but...