User Constantin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T23:35:51Zhttp://stackoverflow.com/feeds/user/20310http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/124269/simplest-soap-example-using-javascript/124663#1246631Answer by Constantin for Simplest SOAP example using JavascriptConstantin2008-09-24T00:09:18Z2009-11-08T07:33:52Z<p>Simplest example would consist of:</p>
<ol>
<li>Getting user input.</li>
<li><p>Composing XML SOAP message similar to this</p>
<pre><code><soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetInfoByZIP xmlns="http://www.webserviceX.NET">
<USZip>string</USZip>
</GetInfoByZIP>
</soap:Body>
</soap:Envelope>
</code></pre></li>
<li><p>POSTing message to webservice url using XHR</p></li>
<li><p>Parsing webservice's XML SOAP response similar to this</p>
<pre><code><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetInfoByZIPResponse xmlns="http://www.webserviceX.NET">
<GetInfoByZIPResult>
<NewDataSet xmlns="">
<Table>
<CITY>...</CITY>
<STATE>...</STATE>
<ZIP>...</ZIP>
<AREA_CODE>...</AREA_CODE>
<TIME_ZONE>...</TIME_ZONE>
</Table>
</NewDataSet>
</GetInfoByZIPResult>
</GetInfoByZIPResponse>
</soap:Body>
</soap:Envelope>
</code></pre></li>
<li><p>Presenting results to user.</p></li>
</ol>
<p>But it's a lot of hassle without external JavaScript libraries.</p>
http://stackoverflow.com/questions/208074/fast-recursive-grepping-of-svn-working-copy1Fast recursive grepping of svn working copyConstantin2008-10-16T10:47:59Z2009-09-02T19:50:53Z
<p>I need to search all cpp/h files in svn working copy for "foo", excluding svn's special folders completely. What is the <strong>exact</strong> command for GNU grep?</p>
http://stackoverflow.com/questions/122826/reducing-memory-footprint-of-large-unfamiliar-codebase3Reducing memory footprint of large unfamiliar codebase.Constantin2008-09-23T18:28:18Z2009-09-01T14:14:11Z
<p>Suppose you have a fairly large (~2.2 MLOC), fairly old (started more than 10 years ago) Windows desktop application in C/C++. About 10% of modules are external and don't have sources, only debug symbols.</p>
<p>How would you go about reducing application's memory footprint in half? At least, what would you do to find out where memory is consumed?</p>
http://stackoverflow.com/questions/180172/why-is-it-an-error-to-use-an-empty-set-of-brackets-to-call-a-constructor-with-no/181463#18146311Answer by Constantin for Why is it an error to use an empty set of brackets to call a constructor with no arguments?Constantin2008-10-08T05:30:31Z2009-08-12T17:54:09Z<p><strong>Most vexing parse</strong></p>
<p>This is known as "C++'s most vexing parse". Basically, anything that can be interpreted by compiler as function declaration will be interpreted as function declaration, even if resulting AST doesn't compile.</p>
<p>Another instance of the same problem:</p>
<pre><code>std::ifstream ifs("file.txt");
std::vector v(std::istream_iterator(ifs), std::istream_iterator());
</code></pre>
<p><code>v</code> is interpreted as a declaration of function with 2 parameters and fails to compile.</p>
<p>The workaround is to add another pair of parentheses:</p>
<pre><code>std::vector v((std::istream_iterator(ifs)), std::istream_iterator());
</code></pre>
http://stackoverflow.com/questions/239587/how-to-access-xml-version-of-cruisecontol-net-web-dashboard-reports-over-http0How to access XML version of CruiseContol.NET Web Dashboard reports (over HTTP)?Constantin2008-10-27T11:14:48Z2009-07-07T11:00:01Z
<p>I need to determine state of last build (success/failure) and I do it like this:</p>
<pre><code>report_url = 'http://.../ViewLatestBuildReport.aspx'
success_marker = '<td class="header-title" colspan="2">BUILD SUCCESSFUL</td>'
page = urllib.urlopen(report_url)
if all(success_marker not in line for line in page):
# build is not good, do something
...
</code></pre>
<p>But this is wasteful (loads entire HTML page), error-prone (I already ran into a bytes/unicode bug) and fragile.</p>
http://stackoverflow.com/questions/154504/is-timsort-general-purpose-or-python-specific9Is timsort general-purpose or Python-specific?Constantin2008-09-30T19:12:46Z2009-07-02T16:48:13Z
<blockquote>
<p>Timsort is an adaptive, stable,
natural mergesort. It has supernatural
performance on many kinds of partially
ordered arrays (less than lg(N!)
comparisons needed, and as few as
N-1), yet as fast as Python's previous
highly tuned samplesort hybrid on
random arrays.</p>
</blockquote>
<p>Have you seen <a href="http://svn.python.org/projects/python/trunk/Objects/listsort.txt" rel="nofollow">timsort</a> used outside of CPython? Does it make sense?</p>
http://stackoverflow.com/questions/993310/could-my-embedded-key-value-datastore-eventually-exceed-an-app-engine-limit/993336#9933362Answer by Constantin for Could my embedded key/value datastore eventually exceed an App Engine limit?Constantin2009-06-14T17:55:42Z2009-06-14T17:55:42Z<p>App Engine DataStore entity is limited to 1MB. You won't be able to save a larger entity. </p>
<p>Free quota for DataStore is 1 GB. If you exceed it with billing disabled, you won't be able to save new entities or enlarge existing entities. If you have billing enabled, you will be charged for additional storage.</p>
<p>App Engine static file limit is 10 MB. Static file can't be changed by your application, only re-uploaded or deleted by appcfg.py tool. You won't be able to upload a file larger than 10 MB.</p>
http://stackoverflow.com/questions/993059/is-there-a-way-to-do-aggregate-functions-on-google-app-engine/993138#9931380Answer by Constantin for Is there a way to do aggregate functions on Google App Engine?Constantin2009-06-14T16:22:04Z2009-06-14T16:22:04Z<p>For frequently used aggregates the best is to update them on every update/insert/delete.</p>
<p>If you haven't designed such aggregates into your application from the start, you can run a script via <a href="http://code.google.com/appengine/articles/remote%5Fapi.html" rel="nofollow">Remote DataStore API</a> or set up a server-side
<a href="http://code.google.com/appengine/docs/python/config/cron.html" rel="nofollow">cron job</a> that will process all entities and calculate the aggregates. It is fairly easy, just keep in mind per-request CPU quota.</p>
http://stackoverflow.com/questions/330664/learning-cs-theory-behind-scheduling-and-time-planning0Learning CS theory behind scheduling and time-planning.Constantin2008-12-01T12:22:34Z2009-05-14T18:02:18Z
<p>I am looking for introductory and intermediate materials on scheduling algorithms (books, papers, you name it). I am also interested in reference implementations and libraries, any language will do.</p>
<p>The goal is to evenly distribute set of recurring activities over time span. Also a number of constraints must be satisfied: resource availability at given point in time, activity precedence, maximum deviation from desired activity frequency, etc.).</p>
<p>What can you recommend from your experience?</p>
http://stackoverflow.com/questions/160030/how-to-put-breakpoint-in-every-function-of-cpp-file4How to put breakpoint in every function of .cpp file?Constantin2008-10-01T22:20:37Z2009-05-12T23:05:32Z
<p>Is there a macro that does it? Which DTE objects to use?</p>
http://stackoverflow.com/questions/132411/translate-algorithmic-c-to-python2Translate algorithmic C to PythonConstantin2008-09-25T09:56:43Z2009-04-23T17:51:26Z
<p>I would like to translate some C code to Python code or bytecode. The C code in question is what i'd call purely algorithmic: platform independent, no I/O, just algorithms and in-memory data structures.</p>
<p>An example would be a regular expression library. Translation tool would process library source code and produce a functionally equivalent Python module that can be run in a <strong>sandboxed</strong> environment.</p>
<p>What specific approaches, tools and techniques can you recommend?</p>
<p><hr /></p>
<p><em>Note: Python C extension or ctypes is <strong>not an option</strong> because the environment is sandboxed.</em></p>
<p><em>Another note</em>: looks like there is a <a href="http://www.axiomsol.com/" rel="nofollow">C-to-Java-bytecode compiler</a>, they even compiled libjpeg to Java. Is Java bytecode+VM too different from CPython bytecode+VM?</p>
http://stackoverflow.com/questions/755164/com-api-could-not-pass-null-for-a-pointer-argument/763591#7635910Answer by Constantin for COM API - could not pass "NULL" for a pointer argumentConstantin2009-04-18T15:15:16Z2009-04-18T15:15:16Z<p><code>foo</code> is probably implemented like this:</p>
<pre><code>HRESULT foo(unsigned long ulSize, unsigned char* pData) {
if (!pData) {
return E_POINTER;
}
...
}
</code></pre>
<p>In this case the only workaround is to pass non-NULL pData.</p>
http://stackoverflow.com/questions/743712/how-do-i-know-if-my-stored-procedure-is-removed-in-ms-sql-server/743728#7437285Answer by Constantin for How do I know if my stored procedure is removed in MS SQL Server?Constantin2009-04-13T12:16:49Z2009-04-13T12:32:07Z<p>The standard way to check if procedure exists is</p>
<pre><code>if exists(
SELECT * FROM INFORMATION_SCHEMA.ROUTINES
WHERE routine_type = N'PROCEDURE' and routine_name = @procname)
print 'exists'
</code></pre>
<p>Starting with MSSQL 2005 you can use <a href="http://msdn.microsoft.com/en-us/library/ms190989%28SQL.90%29.aspx" rel="nofollow">DDL trigger</a> to send email notification when procedure is dropped or created:</p>
<pre><code>USE msdb
GO
CREATE TABLE ddl_log
(ID int idenity(1,1) PRIMARY KEY CLUSTERED,
PostTime datetime,
DB_User nvarchar(100),
Event nvarchar(100),
TSQL nvarchar(2000));
CREATE TRIGGER DDL_Notify
ON DATABASE
FOR DROP_PROCEDURE, CREATE_PROCEDURE
AS
DECLARE @data XML,
@tableHTML NVARCHAR(MAX) ;
SET @data = EVENTDATA()
INSERT msdb.dbo.ddl_log (PostTime, DB_User, Event, TSQL)
VALUES (GETDATE(), CONVERT(nvarchar(100), USER_NAME()),
@data.value('(/EVENT_INSTANCE/EventType)[1]', 'nvarchar(100)'),
@data.value('(/EVENT_INSTANCE/TSQLCommand)[1]', 'nvarchar(2000)') ) ;
SET @tableHTML =
N'<H1>DDL Table Event</H1>' +
N'<table border="1">' +
N'<tr><th>Post Time</th><th>User</th>' +
N'<th>TSQL</th><th></tr>' +
CAST ( ( SELECT td = PostTime, '',
td = DB_User, '',
td = TSQL, ''
FROM msdb.dbo.ddl_log
WHERE id = (select max(id) from msdb.dbo.ddl_log)
FOR XML PATH('tr'), TYPE
) AS NVARCHAR(MAX) ) +
N'</table>';
EXEC msdb.dbo.sp_send_dbmail
@profile_name = 'Default',
@recipients = 'dba@youraddress.com',
@subject = 'DDL Table Event',
@body = @tableHTML,
@body_format = 'HTML'
</code></pre>
http://stackoverflow.com/questions/725782/python-list-concatenation-what-is-difference-in-append-and/725882#72588226Answer by Constantin for Python: List concatenation. What is difference in "append" and "+= []"? Constantin2009-04-07T14:00:24Z2009-04-07T15:39:57Z<p>For your case the only difference is performance: append is twice as fast.</p>
<pre><code>Python 3.0 (r30:67507, Dec 3 2008, 20:14:27) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import timeit
>>> timeit.Timer('s.append("something")', 's = []').timeit()
0.20177424499999999
>>> timeit.Timer('s += ["something"]', 's = []').timeit()
0.41192320500000079
Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import timeit
>>> timeit.Timer('s.append("something")', 's = []').timeit()
0.23079359499999999
>>> timeit.Timer('s += ["something"]', 's = []').timeit()
0.44208112500000141
</code></pre>
<p>In general case <code>append</code> will add one item to the list, while <code>+=</code> will copy <em>all</em> elements of right-hand-side list into the left-hand-side list.</p>
<p><strong>Update: perf analysis</strong></p>
<p>Comparing bytecodes we can assume that <code>append</code> version wastes cycles in <code>LOAD_ATTR</code> + <code>CALL_FUNCTION</code>, and += version -- in <code>BUILD_LIST</code>. Apparently <code>BUILD_LIST</code> outweighs <code>LOAD_ATTR</code> + <code>CALL_FUNCTION</code>. </p>
<pre><code>>>> import dis
>>> dis.dis(compile("s = []; s.append('spam')", '', 'exec'))
1 0 BUILD_LIST 0
3 STORE_NAME 0 (s)
6 LOAD_NAME 0 (s)
9 LOAD_ATTR 1 (append)
12 LOAD_CONST 0 ('spam')
15 CALL_FUNCTION 1
18 POP_TOP
19 LOAD_CONST 1 (None)
22 RETURN_VALUE
>>> dis.dis(compile("s = []; s += ['spam']", '', 'exec'))
1 0 BUILD_LIST 0
3 STORE_NAME 0 (s)
6 LOAD_NAME 0 (s)
9 LOAD_CONST 0 ('spam')
12 BUILD_LIST 1
15 INPLACE_ADD
16 STORE_NAME 0 (s)
19 LOAD_CONST 1 (None)
22 RETURN_VALUE
</code></pre>
<p>We can improve performance even more by removing <code>LOAD_ATTR</code> overhead:</p>
<pre><code>>>> timeit.Timer('a("something")', 's = []; a = s.append').timeit()
0.15924410999923566
</code></pre>
http://stackoverflow.com/questions/135777/a-stringtoken-parser-which-gives-google-search-style-did-you-mean-suggestions/707502#70750211Answer by Constantin for A StringToken Parser which gives Google Search style "Did you mean:" SuggestionsConstantin2009-04-01T21:57:12Z2009-04-01T22:06:33Z<p>In his article <a href="http://norvig.com/spell-correct.html" rel="nofollow">How to Write a Spelling Corrector</a>, Peter Norvig discusses how a Google-like spellchecker could be implemented. The article contains a 20-line implementation in Python, as well as links to several reimplementations in C, C++, C# and Java. Here is an excerpt:</p>
<blockquote>
<p>The full details of an
industrial-strength spell corrector
like Google's would be more confusing
than enlightening, but I figured that
on the plane flight home, in less than
a page of code, I could write a toy
spelling corrector that achieves 80 or
90% accuracy at a processing speed of
at least 10 words per second.</p>
</blockquote>
<p>Using Norvig's code and <a href="http://www.phon.ucl.ac.uk/home/johnm/ptlc2005/pdf/ptlcp56.pdf" rel="nofollow">this text</a> as training set, i get the following results:</p>
<pre><code>>>> import spellch
>>> [spellch.correct(w) for w in 'fonetic wrd nterpreterr'.split()]
['phonetic', 'word', 'interpreters']
</code></pre>
http://stackoverflow.com/questions/698366/how-to-avoid-a-database-race-condition-when-manually-incrementing-pk-of-new-row/698490#6984903Answer by Constantin for How to avoid a database race condition when manually incrementing PK of new row.Constantin2009-03-30T18:36:52Z2009-03-30T19:12:54Z<p>Not being able to change database schema is harsh.</p>
<p>If you insert existing PK into table you will get SqlException with a message indicating PK constraint violation. Catch this exception and <strong>retry insert a few times</strong> until you succeed. If you find that collision rate is too high, you may try <code>max(id) + <small-random-int></code> instead of <code>max(id) + 1</code>. Note that with this approach your ids will have gaps and the id space will be exhausted sooner.</p>
<p>Another possible approach is to <strong>emulate autoincrementing id</strong> outside of database. For instance, create a static integer, <code>Interlocked.Increment</code> it every time you need next id and use returned value. The tricky part is to initialize this static counter to good value. I would do it with <code>Interlocked.CompareExchange</code>:</p>
<pre><code>class Autoincrement {
static int id = -1;
public static int NextId() {
if (id == -1) {
// not initialized - initialize
int lastId = <select max(id) from db>
Interlocked.CompareExchange(id, -1, lastId);
}
// get next id atomically
return Interlocked.Increment(id);
}
}
</code></pre>
<p>Obviously the latter works only if all inserted ids are obtained via <code>Autoincrement.NextId</code> of single process.</p>
http://stackoverflow.com/questions/693630/alter-all-values-in-a-python-list-of-lists/693876#6938763Answer by Constantin for Alter all values in a Python list of lists?Constantin2009-03-29T00:37:37Z2009-03-29T00:37:37Z<p>Many answers are about creating altered <em>copy</em> of list, but literal meaning of question is about in-place modification of list.</p>
<p>Here is my version of best-of-breed in-place list altering solution:</p>
<pre><code>def alter_elements(lst, func):
for i, item in enumerate(lst):
if isinstance(item, list):
alter_elements(item, func)
else:
lst[i] = func(item)
</code></pre>
<p>Test run:</p>
<pre><code>>>> sample = [[1,2,3],[4,5,6],[7,8,9]]
>>> alter_elements(sample, lambda x: -x)
>>> print sample
>>> [[-1, -2, -3], [-4, -5, -6], [-7, -8, -9]]
</code></pre>
<p>No list copies. No hardcoded bounds. No list comprehensions with side-effects.</p>
http://stackoverflow.com/questions/167206/php-module-for-reading-torrent-files/601710#6017104Answer by Constantin for PHP Module for reading torrent filesConstantin2009-03-02T09:11:18Z2009-03-02T09:11:18Z<p>Torrent files are basically nested dictionaries encoded with <a href="http://en.wikipedia.org/wiki/Bencode" rel="nofollow">BEncode</a>. BEncode is a simple encoding and there are a few BDecode PHP classes, like <a href="http://www.phpclasses.org/browse/package/3473.html" rel="nofollow">this one</a>.</p>
<p>Structure of torrent file is described in <a href="http://bittorrent.org/beps/bep%5F0003.html#metainfo-files-are-bencoded-dictionaries-with-the-following-keys" rel="nofollow">BEP0003</a>.</p>
<p>Note that torrent files don't contain "Seeders" field that you mention. The list of seeders is dynamic and is managed by tracker server. Having torrent's <code>hash_info</code> and <code>tracker_url</code> (both available from torrent file) you can send scrape-request to the tracker and it will return number of seeders in 'complete' field, see <a href="http://wiki.theory.org/BitTorrentSpecification#Tracker%5F.27scrape.27%5FConvention" rel="nofollow">Tracker Scrape Convention</a>.</p>
http://stackoverflow.com/questions/592746/how-can-you-print-a-variable-name-in-python/592849#5928496Answer by Constantin for How can you print a variable name in python?Constantin2009-02-26T23:05:16Z2009-02-26T23:05:16Z<p>If you insist, here is some horrible inspect-based solution.</p>
<pre><code>import inspect, re
def varname(p):
for line in inspect.getframeinfo(inspect.currentframe().f_back)[3]:
m = re.search(r'\bvarname\s*\(\s*([A-Za-z_][A-Za-z0-9_]*)\s*\)', line)
if m:
return m.group(1)
if __name__ == '__main__':
spam = 42
print varname(spam)
</code></pre>
<p>I hope it will inspire you to reevaluate the problem you have and look for another approach.</p>
http://stackoverflow.com/questions/586522/sql-group-by/586630#5866301Answer by Constantin for SQL Group ByConstantin2009-02-25T16:01:09Z2009-02-25T16:01:09Z<p>For MySQL:</p>
<pre><code>select
group_concat(distinct name separator '/'),
sum(amount),
code
from
T
group by
code
</code></pre>
<p>For MSSQL 2005+ group_concat() can be implemented as .NET custom aggregate.</p>
http://stackoverflow.com/questions/578450/are-all-these-sql-joins-logically-equivalent/578492#5784922Answer by Constantin for Are all these SQL joins logically equivalent?Constantin2009-02-23T17:19:29Z2009-02-25T08:16:06Z<p>For INNER JOIN it makes no logical difference and optimizer should produce same plans. But for OUTER joins it becomes important whether you put condition in WHERE or FROM ... JOIN clause. This is because FROM and ON clauses are processed before WHERE clause:
<img src="http://www.sqlmag.com/Files/09/94378/Figure%5F01.jpg" alt="ANSI SQL logical query processing" /></p>
http://stackoverflow.com/questions/560904/automatically-deleting-unused-local-variables-from-c-source-code/580888#5808880Answer by Constantin for Automatically deleting unused local variables from C source codeConstantin2009-02-24T08:10:13Z2009-02-24T08:27:41Z<p>You will need a good parser that preserves original character position of tokens (even in presence of preprocessor!). There are some tools for automated refactoring of C/C++, but they are far from mainstream.</p>
<p>I recommend you to check out <a href="http://blog.mozilla.com/tglek/" rel="nofollow">Taras' Blog</a>. The guy is doing some large automated refactorings of Mozilla codebase, like replacing out-params with return values. His main tool for code rewriting is <a href="https://developer.mozilla.org/En/Pork" rel="nofollow">Pork</a>:</p>
<blockquote>
<p>Pork is a C++ parsing and rewriting
tool chain. The core of Pork is a C++
parser that provides exact character
positions for the start and end of
every AST node, as well as the set of
macro expansions that contain any
location. This information allows C++
to be automatically rewritten in a
precise way.</p>
</blockquote>
<p>From the blog:</p>
<blockquote>
<p>So far pork has been used for “minor”
things like renaming
classes&functions, rotating
outparameters and correcting prbool
bugs. Additionally, Pork proved itself
in an experiment which involved
rewriting almost every function (ie
generating a 3+MB patch) in Mozilla to
use garbage collection instead of
reference-counting.</p>
</blockquote>
<p>It is for C++, but it may suit your needs.</p>
http://stackoverflow.com/questions/578379/python-program-to-find-fibonacci-series-more-pythonic-way/578424#5784247Answer by Constantin for Python program to find fibonacci series. More Pythonic way.Constantin2009-02-23T17:02:01Z2009-02-23T17:02:01Z<p>Using generators is a Pythonic way to generate long sequences while preserving memory:</p>
<pre><code>def fibonacci():
a, b = 0, 1
while True:
yield a
a, b = b, a + b
import itertools
upto_4000000 = itertools.takewhile(lambda x: x <= 4000000, fibonacci())
print(sum(x for x in upto_4000000 if x % 2 == 0))
</code></pre>
http://stackoverflow.com/questions/577761/how-do-i-prevent-pythons-os-walk-from-walking-across-mount-points/577830#5778308Answer by Constantin for How do I prevent Python's os.walk from walking across mount points?Constantin2009-02-23T14:39:56Z2009-02-23T14:53:45Z<p>From <code>os.walk</code> docs:</p>
<blockquote>
<p>When topdown is true, the caller can
modify the dirnames list in-place
(perhaps using del or slice
assignment), and walk() will only
recurse into the subdirectories whose
names remain in dirnames; this can be
used to prune the search</p>
</blockquote>
<p>So something like this should work:</p>
<pre><code>for root, dirnames, filenames in os.walk(...):
dirnames[:] = [
dir for dir in dirnames
if not os.path.ismount(os.path.join(root, dir))]
...
</code></pre>
http://stackoverflow.com/questions/576988/python-specific-antipatterns-and-bad-practices/577706#57770617Answer by Constantin for Python-specific antipatterns and bad practicesConstantin2009-02-23T13:53:32Z2009-02-23T13:53:32Z<p>I would say that programming in Python as if it were some other language is an "anti-pattern" i see quite often.</p>
<p>For example, for Java/C# refugees it is using classes for everything:</p>
<pre><code>class Util():
@staticmethod
def foo():
...
# this should be just a function;
# it can be placed in 'util' module
def foo():
...
</code></pre>
<p>Another case:</p>
<pre><code>class Pair():
def __init__(self, first, second):
...
pairs = [Pair(1, 2), Pair(3, 4)]
# usually built-in tuple is enough
pairs = [(1, 2), (3, 4)]
</code></pre>
http://stackoverflow.com/questions/577119/how-to-exit-a-module-before-it-has-finished-parsing/577204#5772042Answer by Constantin for How to exit a module before it has finished parsing?Constantin2009-02-23T10:48:59Z2009-02-23T10:48:59Z<p>This should do the trick:</p>
<pre><code>try:
from skynet import SkyNet
except ImportError:
class SelfAwareSkyNet():
pass
else:
class SelfAwareSkyNet(SkyNet):
pass
</code></pre>
http://stackoverflow.com/questions/134188/what-to-write-in-the-header-comments-of-a-code-file/134355#1343552Answer by Constantin for What to write in the header comments of a code file?Constantin2008-09-25T16:25:52Z2009-02-20T01:03:59Z<p>What do <strong>you</strong> want to see in other people's headers? Do you want to wade through pages of copyright cruft? Or do you want to see a concise but informative module overview with links to more detailed documentation?</p>
<p>I think you can rely on your own experience to decide what is useful and what is not.</p>
http://stackoverflow.com/questions/565425/how-can-i-get-a-username-and-password-from-my-database-in-c/565473#565473-2Answer by Constantin for How can I get a username and password from my database in C#?Constantin2009-02-19T14:13:13Z2009-02-19T14:13:13Z<p>You can usually find basic usage examples on MSDN, like <a href="http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldatareader.aspx" rel="nofollow">this one for SqlDataReader</a>.</p>
http://stackoverflow.com/questions/552960/disable-ie-script-debugging-via-ie-control/553586#5535860Answer by Constantin for Disable IE script debugging via IE controlConstantin2009-02-16T15:08:02Z2009-02-16T15:08:02Z<p>Link your app with <a href="http://research.microsoft.com/en-us/projects/detours/" rel="nofollow">detours</a> or other API hooking library, hook <code>RegQueryValue</code> function from advapi32 and return "yes" when IE queries value for registry key <code>"HKCU\Software\Microsoft\Internet Explorer\Main\Disable Script Debugger"</code>.</p>
http://stackoverflow.com/questions/552857/what-for-should-i-mark-private-variables-as-private-if-they-already-are/553085#5530852Answer by Constantin for What for should I mark private variables as private if they already are?Constantin2009-02-16T11:57:36Z2009-02-16T13:27:50Z<p>Explicitly using private can improve readability in certain edge cases.</p>
<p>Example:</p>
<pre><code> /*
Tomorrow when we wake up from bed,
first me and Daddy and Mommy, you, eat
breakfast eat breakfast like we usually do,
and then we're going to play and
then soon as Daddy comes, Carl's going
to come over, and then we're going to
play a little while. And then Carl and
Emily are both going down to the car
with somebody, and we're going to ride
to nursery school [whispered], and then
when we get there, we're all going
to get out of the car...
*/
int spam;
/*
Does this style look at all familiar?
It should!
*/
</code></pre>
<p>Looking at this fragment you may be unsure whether you're in method or class scope.</p>
<p>Using either <code>private</code> or underscore in field name (<code>private int spam;</code>, <code>int spam_;</code> or <code>int _spam;</code>) will eliminate the confusion.</p>
http://stackoverflow.com/questions/1426672/when-return-epointer-and-when-einvalidarg/1426883#1426883Comment by Constantin on When return E_POINTER and when E_INVALIDARG?Constantin2009-11-13T12:49:36Z2009-11-13T12:49:36ZDo you have any doc references?http://stackoverflow.com/questions/1612918/parsing-variable-length-descriptors-from-a-byte-stream-and-acting-on-their-type/1613046#1613046Comment by Constantin on Parsing variable length descriptors from a byte stream and acting on their typeConstantin2009-11-02T21:26:37Z2009-11-02T21:26:37ZIsn't "serial access" basically the same thing as "sequential access"?http://stackoverflow.com/questions/1445286/code-review-conducted-by-an-engineer-who-codes-in-a-different-language-is-it-conComment by Constantin on Code review conducted by an engineer who codes in a different language. Is it constructive?Constantin2009-09-18T15:47:25Z2009-09-18T15:47:25ZIt 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.http://stackoverflow.com/questions/180172/why-is-it-an-error-to-use-an-empty-set-of-brackets-to-call-a-constructor-with-no/181463#181463Comment by Constantin on Why is it an error to use an empty set of brackets to call a constructor with no arguments?Constantin2009-08-12T17:56:33Z2009-08-12T17:56:33ZThanks, mmutz, don't know what i was thinking when i wrote it, probably confused declaration with definition. Edited the answer accordingly.http://stackoverflow.com/questions/1025589/setting-variable-to-null-after-free/1025608#1025608Comment by Constantin on Setting variable to NULL after free ...Constantin2009-07-11T11:12:19Z2009-07-11T11:12:19Zjeffamaphone, deleted memory block might have get reallocated and assigned to <i>another</i> object by the time you use the pointer again.http://stackoverflow.com/questions/1113095/from-c-tools-to-trying-to-be-exposed-to-modern-tools/1113212#1113212Comment by Constantin on From C++ Tools to.... ? Trying to be exposed to modern toolsConstantin2009-07-11T10:58:09Z2009-07-11T10:58:09ZWhere 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.http://stackoverflow.com/questions/154504/is-timsort-general-purpose-or-python-specific/1060238#1060238Comment by Constantin on Is timsort general-purpose or Python-specific?Constantin2009-06-30T15:30:37Z2009-06-30T15:30:37ZInteresting !http://stackoverflow.com/questions/359494/javascript-vs-does-it-matter-which-equal-operator-i-use/371472#371472Comment by Constantin on Javascript === vs == : Does it matter which "equal" operator I use?Constantin2009-06-23T08:26:38Z2009-06-23T08:26:38ZDaniel, 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.http://stackoverflow.com/questions/1026202/is-there-a-way-for-registration-free-activation-of-com-componets/1026227#1026227Comment by Constantin on Is there a way for registration free activation of COM componets.Constantin2009-06-22T09:50:40Z2009-06-22T09:50:40ZI don't have documentation links, but from what i know there is no regfreecom support for out-of-proc servers.http://stackoverflow.com/questions/994710/how-to-strip-the-8th-bit-in-a-koi8-r-encoded-character/994730#994730Comment by Constantin on How to strip the 8th bit in a KOI8-R encoded character?Constantin2009-06-15T07:06:22Z2009-06-15T07:06:22Z"x &= y" is also supported.http://stackoverflow.com/questions/994729/why-does-this-code-break-out-of-loop/994755#994755Comment by Constantin on why does this code break out of loop ?Constantin2009-06-15T06:55:35Z2009-06-15T06:55:35ZMinor correction: while does not have an "empty condition", there is no such thing in Python. "while ():" tests empty tuple "()" and, yes, empty tuple evaluates to false. Python has the same behavior for "while []:", "while '':", "while 0:", etc.http://stackoverflow.com/questions/992957/in-what-circumstances-are-destructors-not-automatically-called-within-cComment by Constantin on In what circumstances are destructors not automatically called within C++?Constantin2009-06-14T16:49:29Z2009-06-14T16:49:29ZNo, Matthew, it's not exactly a tutorial question. See <a href="http://stackoverflow.com/questions/222175/why-destructor-is-not-called-on-exception" rel="nofollow" title="why destructor is not called on exception">stackoverflow.com/questions/222175/…</a>http://stackoverflow.com/questions/939605/overwriting-vs-allocation-deallocation-efficiency/939627#939627Comment by Constantin on Overwriting vs allocation/deallocation - efficiencyConstantin2009-06-03T10:11:54Z2009-06-03T10:11:54ZI think Chris hit the nail on the head. To guarantee a throughput level you have to carefully consider code's algorithmic complexity. Static and local allocations have predictable performance. This is not true of dynamic allocations.http://stackoverflow.com/questions/330664/learning-cs-theory-behind-scheduling-and-time-planning/864824#864824Comment by Constantin on Learning CS theory behind scheduling and time-planning.Constantin2009-05-15T12:26:34Z2009-05-15T12:26:34ZThanks .http://stackoverflow.com/questions/160030/how-to-put-breakpoint-in-every-function-of-cpp-file/855320#855320Comment by Constantin on How to put breakpoint in every function of .cpp file?Constantin2009-05-13T22:14:32Z2009-05-13T22:14:32ZNice stuff!----