blackham
blackham
Just my 0.02. Locking the gem to 0.8.5 solved my errors too. But it looks like the error is in Net::LDAP. Not sure yet what changed in net-ldap but downgrading...
Confirmed. Still works. arch linux PlaybackWindow.cpp looks like: ``` #include #include #include #include #include "PlaybackWindow.h" #include "InterfaceWindow.h" #include "AboutWindow.h" .... ```
Doubling relative_url_root on wrong auth and Rails "config.relative_url_root" not taken into account
I'm having a similar issue with config.relative_url_root being ignored.
+1 charset: "latin1" I'm inserting some binary data it was going bad. Before setting the charset: `file_data: "????\x00\x10JFIF\x00\x01\x0....` After setting charset: "latin1" `file_data: "\xFF\xD8\xFF\xE0\x00\x10JFIF\x00\x....` Question now is what happens when...
And for anyone looking to setup Selenium with dynamic guests, you will need to hack hackney's timeout option in wallaby ``` config :wallaby, driver: Wallaby.Selenium, hackney_options: [timeout: 120_000, recv_timeout: 120_000,...
Not sure if this is a Docker HUB v4 issue or Selenium itself (or my bad programming). It looks like it's a wallaby issue since it works with Ruby. Here...
I would love to see an intersection feature too. To answer "The first is how to detect in a free-form search term that the user is searching for an intersection"...
Could this be noted in the Docs. I've used Redirect in other projects and keep forgetting about this little "issue". A hint like this: ``` redirect "/", "/directories", :temporary scope...