Adam Griffiths

Results 108 comments of Adam Griffiths

If you push what you've got to another branch (so we don't break what there is of 3.7 currently) I might be able to find some time to pitch in.

SCP fails if the shell echos anything out during login (ie inside `.bashrc`) https://stackoverflow.com/a/12442753/1591957 Solution is to remove or suppress output to stdout with a check if it's a real...

Using Gnome 3.36.5, Dash to Dock 69. I can adjust the Dock to both left, and bottom. Haven't had any issues (auto-hide works, avoiding windows works, etc). Perhaps this one...

I think this is interesting, as it lets you dynamically add new patterns dynamically - something I find myself wanting. ``` convert = Matcher() convert[int] = lambda x: 'integer' convert[str]...

Sounds like the better option here is to make a new version of `match` that suits your needs. Take every second parameter and wrap it in a lambda and then...

I've found lxml2's html parser to be unable to handle any real-world HTML. However, I found html5lib has a habit of closing parent tags off early, causing the children become...

What error are you seeing? I'm building with Grunt and Browserify and can see the logs of failed ajax calls being retried.

This really needs a proper solution as it is impeding use of this for HTPC. As it stands without this, the best option currently is to use Firefox in [kiosk...

Don't think this is resolved. It's not so much the output, as the input. There are many functions that don't check incoming objects for validity Eg: ``` def GetMonitorPos(Monitor monitor):...

Null/Invalid pointer dereference is an insidious, and often subtle, programming error. It doesn't always lead to a crash, and when the C runtime detects a memory out of bounds error...