736 reputation
511
bio website
location
age 29
visits member for 4 years
seen May 12 at 15:56
stats profile views 51

Apr
3
comment How does one import in python if the filename or filepath contains a non-alpha, non-underscore character?
@ncoghlan I got "ImportError: Import by filename is not supported." for importlib.import_module('youtube-dl/youtube_dl') but it worked with importlib.import_module('youtube_dl', 'youtube-dl')
Apr
3
awarded  Editor
Apr
3
awarded  Excavator
Apr
3
revised SVN external in GIT
updated information on equivalence with svn:externals
Apr
3
suggested suggested edit on SVN external in GIT
Feb
14
awarded  Popular Question
Jan
16
awarded  Yearling
Dec
27
comment OpenGL GLX extension not supported
How to probe which of the 3 is the bad one?
Nov
22
comment PHP Static class initializer
@PeterBailey Oh, I love the Singleton Pattern. It's a great pattern for compiled languages. My problem is that PHP isn't one.
Nov
19
comment PHP Static class initializer
@PeterBailey Lines of code that don't accomplish anything but glue are a distraction and makes code less maintainable.
Nov
15
comment PHP Static class initializer
This solution adds 20ish lines of glue code. It is appropriate to compiled technologies such as Java and C#. But PHP is an interpreted language, and it's much simpler to simply call the initialization function in the same file but outside the class definition.
Nov
2
awarded  Popular Question
Oct
16
comment Locale aware number conversion in JavaScript
@CHOCY The way I see it parsing and subsequent formatting equals conversion.
Sep
26
suggested suggested edit on Get parent directory in Python
Jun
25
awarded  Yearling
Jun
9
awarded  Good Answer
Mar
22
awarded  Commentator
Mar
22
comment Twisted - Simple file completed event for FTP server
So apparently that example does not write to disk. :( I'm considering just waiting for the FTP api+docs to mature and just take a pooling approach.
Mar
20
comment Twisted - Simple file completed event for FTP server
I based on the example I linked on my question. I'm noticing all write attempts are failing. I'll investigate this a bit further…
Mar
20
comment Twisted - Simple file completed event for FTP server
It didn't; the callback was invoked before the file transfer started (and the transfer is looping, using Filezilla). Also, my file isn't being stored. :\