Michael Hill

Results 52 comments of Michael Hill

You can look [here](http://www.dev411.com/blog/2006/10/02/encoding-hashed-uids-base64-vs-hex-vs-base32/) for reference. Base64 > Base64 has the advantage of generating shorter representations because it uses a 64 character set instead of hexadecimal's 16. While Base 64...

Looking at the way this project handles the `scrapy.cfg` files made it clear why my projects aren't being picked up. Currently, this project does not account for projects that share...

Glad you got it figured out. I was just about to point you to [the changes](https://github.com/caffeinatedMike/scrapydweb/blob/master/scrapydweb/views/operations/deploy.py) I madex.

@jgthms Any input or example on how to accomplish this? I've run into this issue with my current setup and would like to allow a navbar-dropdown element (which is only...

@tanmay-das While we wait for @jgthms input I've worked out a hack-y workaround if you haven't already figured out another way. Here's the [JsFiddle](https://jsfiddle.net/ubqsdhp8/) with a single dropdown menu that...

@agronholm You are correct, it is an RPyC issue. However, I think either: a) the server/client example should be updated to show this behavior (perhaps by adding some arbitrary `kwargs`)...

@selwin I fully agree and support @thomasmatecki's point with aligning `enqueue_job` to be consistent with `enqueue` and `enqueue_call`. This is also preventing the use of `enqueue_many` due to its reliance...

Wouldn't moving the following snippet from `enqueue_call` into a standalone function and applying it to all the above methods provide consistency across all the aforementioned methods of the API and...

@jtfidje Would you consider contributing the "fix" via a PR? I'm sure it would be greatly appreciated by all those affected by this issue, myself included.

@jtfidje I'm attempting a fix for this as well (here's [a link](https://github.com/caffeinatedMike/rq/commits/enqueue_job-depends_on-fix) to my branch). I used the two tests [mentioned earlier](#issuecomment-787350631) in this thread with my changes, but the...