dbr
|
Registered User
|
My contact info can be found on http://neverfear.org/profile/ben or alternatively I could be contacted via http://twitter.com/_dbr
|
|
Dec 7 |
awarded | ● Popular Question |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 1 |
awarded | ● Nice Question |
|
Dec 1 |
awarded | ● Nice Question |
|
Nov 25 |
awarded | ● Enlightened |
|
Nov 25 |
awarded | ● Nice Answer |
|
Nov 21 |
revised |
How do you organise multiple git repositories? Code-block in quote/list |
|
Nov 21 |
comment |
How do you organise multiple git repositories? stackoverflow.com/questions/315911/… for one, and a Google search should return thousands of git intro/beginner articles. "Git Magic" and the "Pro Git" book are two of the better ones I can think o f just now |
|
Nov 19 |
revised |
from X import a versus import X; X.a Removed extra comma, few other pedantic changes |
|
Nov 19 |
comment |
WPF ways to find controls +1. Good answer, plus you can now comment! |
|
Nov 16 |
accepted | Frogger for iPhone |
|
Nov 13 |
comment |
How to find where a function was imported from in Python? +1 because this is a valid point, although it may not solve the problem (if the questioner wants to know where the function came from programmatically, having from bar import foo is basically the same) |
|
Nov 12 |
answered | How to split the file content by space and end-of-line character? |
|
Nov 9 |
comment |
How to implement a pythonic equivalent of tail -F? That's a strange/interesting use of generators.. |
|
Nov 9 |
revised |
How to implement a pythonic equivalent of tail -F? Fiddled with code slightly, seems odd to yield the word, not the sentence (so return a tuple with both), remove redundant buffer="" line, and a few other mostly trivial changes |
|
Nov 9 |
comment |
How to implement a pythonic equivalent of tail -F? Those two questions seem identical, but this one is about constantly monitoring a file for new lines, whereas the other question is about reading the last x lines |
|
Nov 9 |
revised |
Get last n lines of a file with Python, similar to tail Modified title, as tail can be read last n lines, or constantly poll a file for new lines (tail -F) as another question asks |
|
Nov 9 |
revised |
How to implement a pythonic equivalent of tail -F? Added -F flag, as it's different from just reading the last few lines, added a few tags |
|
Nov 8 |
accepted | How to get Sinatra to auto-reload the file after each change? |
|
Nov 7 |
comment |
How can I write a linux bash script, that tells me which computer are on in my LAN ? You could run the process in the background the command by doing mycmd &, but that's not really threading, and could become quite complicated if you need the output of several commands.. It would be much simpler to just use Python/Ruby/etc.. |
|
Nov 6 |
awarded | ● Nice Answer |
|
Nov 3 |
comment |
Reusable library to get human readable version of file size? Yep - print sizeof_fmt(999**99) shows None |
|
Nov 2 |
revised |
Is there an open-source, web-based, self-hosted, revision control system? RCS -> version-control, removed self-hosted tag as it's in the title and barely used |
|
Nov 2 |
comment |
Is there an open-source, web-based, self-hosted, revision control system? It sounds like could use any regular VCS (judging by your edit) - why does it have to be web-based? Why do you want to check files in/out via the web? |
|
Nov 2 |
comment |
Can you add new statements to Python’s syntax? @Kilo it might be worth looking at ipython - it has a lot of shell'ish features, for example you can use regular "ls" and "cd" commands, tab-completion, lots of macro-ish features etc |
|
Oct 30 |
accepted | Continuous version control |
|
Oct 28 |
revised |
Why is ‘http://dd ‘ a valid URL? Inline-code-block'd functions |
|
Oct 27 |
answered | newbie question: why are python strings and tuples are made immutable? |
|
Oct 27 |
awarded | ● Nice Answer |
|
Oct 25 |
answered | How do I execute a PHP shell script as an Automator action on Mac OS X |
|
Oct 25 |
answered | Python script to print all function definitions of a C/C++ file |
|
Oct 25 |
answered | C++ string parsing (python style) |
|
Oct 25 |
revised |
Python script to print all function definitions of a C/C++ file Added parsing tag, few pedantic changes to text |
|
Oct 24 |
answered | All but last element of Ruby array |
|
Oct 22 |
accepted | Can “gem install” be configured to install executables outside /usr/bin/ by default? |
|
Oct 22 |
comment |
Python: How do I make a subclass from a superclass? You only need to define that __init__ method if want to add further code to it, otherwise the original init method is used anyway (although it's worth mentioning, and is perfectly valid code) |
|
Oct 22 |
comment |
Python: How do I make a subclass from a superclass? The question is tagged with Python... |
|
Oct 20 |
awarded | ● Notable Question |
|
Oct 19 |
comment |
Race-condition creating folder in Python Thanks for the ideas. Catching OSError, checking if the dir exists and if so ignoring the error seems to work fine, and will still correctly error if the user has insufficient permissions. I've made the change you suggested to the code, I completely forgot raise will re-raise the caught exception. |
|
Oct 19 |
comment |
Race-condition creating folder in Python This seems to work perfectly, thanks! |
|
Oct 19 |
comment |
Race-condition creating folder in Python Also, I agree with your points about SQLite - I wouldn't have to do much in the way of filtering (pretty much just "has this URL been requested in the last x hours"), but SQLite would remove a lot of the complexity (no constructing cached-file paths and checking file modification times), and I think it should deal with all the locking issues (both for specific bits of cached data, and the sqlite file itself).. Hm... If Pythonic Metaphor's solution doesn't work, I may start this (in fact I may regardless, a nice SQLite backed urllib2 cache module would be useful) |
|
Oct 19 |
comment |
Race-condition creating folder in Python For many cases, ignoring the error would be Pythonic, but in this case it could cause other problems, as I addressed in the question - "I don't want to simply discard the error, as the same error Errno 17 error is raised if the folder name exists as a file (a different error)" - discarding the exception would mean the temp directory either doesn't exist (say, a permission denied error), or is a useless file (and would cause errors further down the path) |
|
Oct 19 |
comment |
Race-condition creating folder in Python Possibly! I thought of that just as I was re-reading the question, before submitting it.. I've implemented this ( github.com/dbr/tvdb_api/… ), and will get the person who reported the bug to test it shortly. |
|
Oct 19 |
asked | Race-condition creating folder in Python |
|
Oct 19 |
revised |
python multiprocessing proxy Removed multiprocessing.proxy tag as it's unused, and there's already a multprocessing and proxy tag |
|
Oct 19 |
revised |
Multiprocessor Scheduling Algorithm edited tags |
|
Oct 19 |
answered | How to check for a duplicate email address in PHP, considering Gmail (user.name+label@gmail.com) |
|
Oct 19 |
comment |
How to check for a duplicate email address in PHP, considering Gmail (user.name+label@gmail.com)$input = str_replace('.', '', $input); seems a bit brutal. It will make "bob@ex.ample.com" and "bob@example.com" the same.. |
|
Oct 18 |
comment |
parsing string to a dict As pointed out by Dave, stackoverflow.com/questions/988228/… is an exact duplicate of this |
|
Oct 18 |
revised |
parsing string to a dict Fixed code |
