Constantin

3,988
reputation
412 views

Registered User

name Constantin
member for 1 year
seen 31 mins ago
website
location
age
Constantin Veretennicov
22m
comment Python string pattern recognition/compression
@iCy, it works significantly faster if there is a character that is never encountered in input data, like '\0'. In that case replace both ''.join with '\0'.join. It also gives a prettier result.
3h
comment Python string pattern recognition/compression
We need more test cases! :)
3h
answered Python string pattern recognition/compression
Dec
13
awarded  Nice Question
Dec
8
comment What languages other than Python have an explicit self?
A correction wrt Python: it doesn't "ask you to explicitly pass self" when calling method, it is passed automatically as first param. But you must declare this first param in method definition.
Dec
8
comment Why hasn’t a faster, “better” language than C come out?
Very good comment. It is important to realize that some aspects of C language spec (like pointer aliasing rules) make it impossible to generate truly optimal machine code. Being a high-level assembler, C is not "the fastest", but merely "pretty fast".
Dec
6
awarded  Mortarboard
Dec
2
comment Comparison of Python and Perl solutions to Wide Finder challenge
Python version is mmap-based too. But can you elaborate on "mmap provides async I/O for Perl version"?
Nov
24
revised Intermittent issues with Win32 named events
+[synchronization]
Nov
18
awarded  Popular Question
Nov
13
comment When return E_POINTER and when E_INVALIDARG?
Do you have any doc references?
Nov
2
comment Parsing variable length descriptors from a byte stream and acting on their type
Isn't "serial access" basically the same thing as "sequential access"?
Oct
19
awarded  Good Answer
Oct
9
awarded  Popular Question
Oct
5
awarded  Nice Answer
Sep
27
awarded  Popular Question
Sep
23
revised Common Regular Expressions
-typo
Sep
23
awarded  Yearling
Sep
18
comment Code review conducted by an engineer who codes in a different language. Is it constructive?
It is not clear whether your boss hates being a reviewer or hates having his code reviewed. If it is the former, then chances are high you will not get a proper review from him, no matter how proficient he is in the language.
Sep
11
revised SQL Server ‘Resume Next’ Equivalent
I believe you meant it this way
Aug
29
awarded  Nice Answer
Aug
20
awarded  Nice Answer
Aug
16
awarded  Nice Answer
Aug
12
comment Why is it an error to use an empty set of brackets to call a constructor with no arguments?
Thanks, mmutz, don't know what i was thinking when i wrote it, probably confused declaration with definition. Edited the answer accordingly.
Aug
12
revised Why is it an error to use an empty set of brackets to call a constructor with no arguments?
deleted 49 characters in body
Jul
11
comment Setting variable to NULL after free …
jeffamaphone, deleted memory block might have get reallocated and assigned to another object by the time you use the pointer again.
Jul
11
comment From C++ Tools to… ? Trying to be exposed to modern tools
Where did you get the info that TortoiseSVN is "developed with Qt"? I've checked the trunk and only one tiny secondary module libsvn_auth_kwallet #includes a QtCore/QString.h. The rest of application is built on standard Microsoft GUI libs.
Jul
11
revised From C++ Tools to… ? Trying to be exposed to modern tools
-typos
Jul
2
revised Is timsort general-purpose or Python-specific?
edited tags
Jun
30
comment Is timsort general-purpose or Python-specific?
Interesting !
Jun
23
comment Javascript === vs == : Does it matter which “equal” operator I use?
Daniel, i could argue that it's still more code to parse, but, well, i don't mean it as a real argument. I actually believe the difference is negligible even without compression.
Jun
22
comment Is there a way for registration free activation of COM componets.
I don't have documentation links, but from what i know there is no regfreecom support for out-of-proc servers.
Jun
22
revised Django model query with custom select fields
-typo