NicDumZ

2,751
reputation
280 views

Registered User

name NicDumZ
member for 6 months
seen yesterday
website
location Tokyo, Japan
age 22
I'm a young OSS dev.
I usually contribute in Python, to Mercurial and pywikipediabot.



I love collaborative editing: I am quite involved in the Wikimedia Foundation projects, mostly on the French and English Wikipedias.

How to contact me? [my nick] [usual sign] [('f'+1)mail]
Dec
9
comment Mercurial: Get non-versioned copy of an earlier version of a file
Please ask questions as comments to the original question. This is not a real answer. Thanks :)
Dec
9
comment Load multiple .hgrc files - ie, some with machine-specific settings?
downvoted for paraphrasing the manual without adding real information. You can do better :)
Dec
9
answered Mercurial - How do I create a .zip of files changed between two revisions?
Dec
6
awarded  Mortarboard
Nov
19
accepted Is there a way to remove the history for a single file in Mercurial?
Nov
11
comment Mercurial for Beginners: The Definitive Practical Guide
To build mercurial from source, one will need the Python headers. Install python-dev or python-devel for those using package-oriented distributions.
Nov
10
comment Python Critique
this question is not very useful. I figured I might as well drop a nice xkcd strip. Since it's "trendy" here. [sarcam, where?]
Nov
7
revised Python : List of dict, if exists increment a dict value, if not append a new dict
added 585 characters in body
Nov
7
answered Python : List of dict, if exists increment a dict value, if not append a new dict
Nov
5
accepted How to open a file with the standard application?
Nov
5
comment How insecure is / replacement for tmpnam?
docs.python.org/library/… in particular
Nov
5
answered How to open a file with the standard application?
Nov
5
comment How do I make Python pick the correct module without manually modifying sys.path?
I think that wit would be easier with a longer description of your environment. Where is the trunk module installed? How was it installed? And then, for your copy, did you only copy a small submodule, or the whole tree? where was it placed? etc...
Oct
30
comment Tools/Modules to generate advanced reports from unittest.TestResult?
As a workaround, one can add skip decorators ( docs.python.org/dev/library/… ) to the tests that are known to fail. It helps, but does not allow to detect tests that have been failing for a long time/that never passed.
Oct
23
revised Tools/Modules to generate advanced reports from unittest.TestResult?
+ _XMLTestResult
Oct
23
asked Tools/Modules to generate advanced reports from unittest.TestResult?
Oct
11
accepted Any libraries/modules for file management in python?
Oct
6
answered Reasons to use distutils when packaging C/Python project
Oct
5
revised Combine two lists: aggregate values that have similar keys
editing title, explaining that it's about adding values.
Oct
5
comment Combine two lists: aggregate values that have similar keys
it took me a while to understand that he was actually adding values, and not removing duplicates.
Oct
5
comment How to parse Youtube search results?
page-scraping is evil.
Oct
5
comment Using lookahead with generators
scan() can be replaced by the builtin iter()
Oct
5
comment Using lookahead with generators
@Esko: edited title.
Oct
5
revised Using lookahead with generators
-- [Python]
Sep
29
accepted Downloading Images from WikiMedia Commons
Sep
27
accepted regex for character appearing at most once
Sep
27
comment regex for character appearing at most once
it's implied, correct ;)
Sep
27
revised regex for character appearing at most once
added 307 characters in body
Sep
27
answered regex for character appearing at most once
Sep
27
comment decypher with me that obfuscated MultiplierFactory
afaik, there are two clear questions, on private accessors and dynamic signature changes. What else?
Sep
27
asked decypher with me that obfuscated MultiplierFactory
Sep
26
comment pythonic format for indices
I depends what you want to do with that structure... What constraints do you have?
Sep
26
revised Python interpreter as a c++ class
+ python-c-api
Sep
26
answered Python interpreter as a c++ class
Sep
26
comment Case-insensitive comparison of sets in Python
I guess that caching self.lower() could be an interesting first optimization?
Sep
25
comment Downloading Images from WikiMedia Commons
See mediawiki.org/wiki/Manual:Maxlag_parameter/… for throttling. Note that it's a recommendation, so if you have never actually seen a "maxlag" error or blocked/autoblocked/ratelimited error codes, you probably have never been throttled or blocked.
Sep
24
answered Downloading Images from WikiMedia Commons
Sep
14
answered How do I get the operating system name in a friendly manner using Python 2.5?
Sep
14
revised Stopping embedded Python
edited tags
Sep
14
comment How do I get the operating system name in a friendly manner using Python 2.5?
see also stackoverflow.com/questions/1854/…
Sep
14
answered Feeding a string into Popen
Sep
3
answered pywikipedia login.py socket.error: (10060, ‘Operation timed out’)
Aug
28
awarded  Good Answer
Aug
27
answered Should Python unittests be in a separate module?
Aug
27
comment Python: Memory leak debugging
@Paul: No, you can still have cycles. Look at the very last example I gave: here, gc.collect() does return 0, and nothing is printed. If you have cycles of objects that don't have del methods, gc will stay quiet.
Aug
27
revised Python: Memory leak debugging
adding code; added 209 characters in body
Aug
27
answered Python: Memory leak debugging
Aug
26
revised Python: Set with only existance check?
do not compute hashes twice
Aug
26
answered Python Critique
Aug
26
comment Any libraries/modules for file management in python?
@Chris: fixed, thanks :)