User sth - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T08:06:30Zhttp://stackoverflow.com/feeds/user/56338http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1830311/wtf-is-happening-here/1830333#18303332Answer by sth for WTF is happening here?!?!sth2009-12-02T02:38:06Z2009-12-02T02:38:06Z<p>You have a <code>armagetron</code> folder inside the <code>armargetron</code> folder in <code>/tmp</code>.</p>
http://stackoverflow.com/questions/1830153/finding-elements-that-are-present-in-one-set-not-the-other/1830207#18302070Answer by sth for Finding elements that are present in one set not the othersth2009-12-02T01:59:56Z2009-12-02T01:59:56Z<p>If both sets are sorted one can start at the beginning of both sets and walk through them, comparing the first elements to see which ones are missing in the other set. This works in linear time.</p>
<p>For unsorted sets, first sorting them in O(n*log(n)) time and then comparing them in linear time gives a total time complexity of O(n*log(n)). Depending on the details of your application it might also be possible to just keep the sets sorted all the time, so making it easy to compare them when needed.</p>
http://stackoverflow.com/questions/1829499/how-does-phps-main-c-start-execution/1829595#18295953Answer by sth for How Does PHP's main.c Start Execution sth2009-12-01T23:08:02Z2009-12-01T23:08:02Z<p>The <code>main()</code> function doesn't have to be in a file called main.c. For the php command line interface <code>main()</code> is in <a href="http://gcov.php.net/PHP%5F5%5F3/lcov%5Fhtml/var/php%5Fgcov/PHP%5F5%5F3/sapi/cli/php%5Fcli.c.gcov.php" rel="nofollow">php_cli.c</a> (line 642).</p>
http://stackoverflow.com/questions/1826400/suppress-linebreak-on-file-write/1826435#18264350Answer by sth for Suppress linebreak on file.writesth2009-12-01T14:13:10Z2009-12-01T14:13:10Z<p>You write a line breaks after every word:</p>
<pre><code>for word in wordlist:
...
out.write("\n")
</code></pre>
<p>Are these the line breaks you are seeing, or are there more additional ones?</p>
http://stackoverflow.com/questions/1826205/algorithm-complexity/1826342#18263420Answer by sth for Algorithm complexitysth2009-12-01T13:57:10Z2009-12-01T13:57:10Z<p>It all depends on how the strings <code>IndexOf()</code> method is implemented. Basically you just search through the whole string with <code>IndexOf()</code> - how efficient that is depends on the efficiency of that method.</p>
<p>There are several <a href="http://en.wikipedia.org/wiki/String%5Fsearching%5Falgorithm" rel="nofollow">string search algorithms</a> of different complexities ranging from <code>O(m+n)</code> to <code>O(m*n)</code> (<code>m</code> and <code>n</code> being the length of the two strings).</p>
http://stackoverflow.com/questions/1815705/i-am-new-to-threads-what-does-this-compile-error-mean/1815784#18157847Answer by sth for I am new to threads, What does this compile error mean?sth2009-11-29T15:16:31Z2009-11-29T20:30:23Z<p>A pointer to a member function is different from a global function with the same signature since the member function needs an additional object on which it operates. Therefore pointers to these two types of functions are not compatible.</p>
<p>In this case this means that you cannot pass a member function pointer to <code>pthread_create</code> but only a pointer to a non-member (or static) function. A work around for this problem is to use the forth parameter of <code>pthread_create</code> to pass a pointer to a object to a global function which then calls the method of the passed object:</p>
<pre><code>class ClientHandler {
public:
void updateMessages();
void run();
};
// Global function that will be the threads main function.
// It expects a pointer to a ClientHandler object.
extern "C"
void *CH_updateMessages(void *ch) {
// Call "real" main function
reinterpret_cast<ClientHandler*>(ch)->updateMessages();
return 0;
}
void ClientHandler::run() {
// Start thread and pass pointer to the current object
int status = pthread_create(&threads[0], NULL, CH_updateMessages, (void*)this);
...
}
</code></pre>
http://stackoverflow.com/questions/1815172/is-it-possible-to-see-definition-of-qsignals-qslot-slot-signal-macros/1815214#18152144Answer by sth for Is it possible to see definition of Q_SIGNALS, Q_SLOT, SLOT(), SIGNAL() macros? (Qt)sth2009-11-29T10:42:07Z2009-11-29T10:42:07Z<p>Form <code>qobjectdefs.h</code>, for a non-debug compilation:</p>
<pre><code>#define Q_SLOTS
#define Q_SIGNALS protected
#define SLOT(a) "1"#a
#define SIGNAL(a) "2"#a
</code></pre>
<p>The <code>Q_SLOTS</code> and <code>Q_SIGNALS</code> declarations are only treated specially by the <code>moc</code> run, in the final compilation they reduce to simple method declarations. <code>SIGNAL()</code> and <code>SLOT()</code> create names from the provided signatures.</p>
http://stackoverflow.com/questions/1814241/trying-to-get-signals-to-work-in-my-qt-i-need-some-advice-and-help/1814251#18142511Answer by sth for Trying to get signals to work in my QT. I need some advice and helpsth2009-11-29T00:26:25Z2009-11-29T00:26:25Z<p>Since you declared a variable <code>output</code>, the name <code>output</code> refers to that variable in the local scope. The compiler doesn't know that in <code>output(output)</code> you want one <code>output</code> to refer to the variable and the other <code>output</code> to refer to the slot/method.</p>
<p>Use a different name for the local variable to avoid this collision.</p>
http://stackoverflow.com/questions/1814189/how-to-change-string-into-qstring/1814214#18142145Answer by sth for How to change string into QString?sth2009-11-29T00:07:33Z2009-11-29T00:07:33Z<p>If compiled with STL compatibility, <code>QString</code> has a <a href="http://doc.trolltech.com/4.5/qstring.html#fromStdString" rel="nofollow">static method</a> to convert a <code>std::string</code> to a <code>QString</code>:</p>
<pre><code>std::string str = "abc";
QString qstr = QString::fromStdString(str);
</code></pre>
http://stackoverflow.com/questions/483781/how-should-i-log-from-a-non-root-debian-linux-daemon/483837#4838372Answer by sth for How should I log from a non-root Debian Linux daemon?sth2009-01-27T15:25:11Z2009-11-28T15:18:25Z<p>As root, create a logfile there and change the files owner to the webserver user:</p>
<pre><code># touch /var/log/myserver.log
# chown wwwuser /var/log/myserver.log
</code></pre>
<p>Then the server can write to the files if run as user <code>wwwuser</code>. It will not gain automatic log rotation, though. You have to add the logfile to <code>/etc/logrotate.conf</code> or <code>/etc/logrotate.d/...</code> and make your server reopen the logfile when <a href="http://man.cx/logrotate" rel="nofollow">logrotate</a> signals it should.</p>
<p>You might also use <a href="http://man.cx/syslog%283c%29" rel="nofollow"><code>syslog</code></a> for logging, if that fit's your scenario better.</p>
http://stackoverflow.com/questions/1808612/i-just-want-to-download-this-url-but-it-is-giving-me-an-error-unicode-py/1808644#18086441Answer by sth for I just want to download this URL...but it is giving me an error! ...unicode.. (Python)sth2009-11-27T12:59:51Z2009-11-27T12:59:51Z<p>Probably you want to <em>decode</em> Utf8, not <em>encode</em> it:</p>
<pre><code>htmlSource = htmlSource.decode('utf8')
</code></pre>
http://stackoverflow.com/questions/1808540/string-has-not-been-declared-qt/1808565#18085658Answer by sth for string has not been declared, QTsth2009-11-27T12:44:25Z2009-11-27T12:44:25Z<p><code>string</code> is in the <code>std</code> namespace, so you either need to refer to it as <code>std::string</code>, or you need to make the name available in the current scope with <code>using namespace std;</code> or <code>using std::string;</code>.</p>
<p>Also the header is called <code>string</code>, not <code>string.h</code>, so include it this way:</p>
<pre><code>#include <string>
</code></pre>
<p>Generally you also might want to use QT's <code>QString</code> instead of <code>std::string</code> if you are using it in connection with QT components that usually take <code>QString</code> parameters.</p>
http://stackoverflow.com/questions/1806483/memory-leak-in-c/1806503#18065035Answer by sth for Memory Leak in Csth2009-11-27T02:31:02Z2009-11-27T12:41:11Z<pre><code>if (symp->next = 0) {
</code></pre>
<p>This if-"condition" is an assignment, setting <code>symp->next</code> to <code>0</code>. If a pointer to another object was stored in <code>symp->next</code>, that object is lost and the objects memory will not be freed.</p>
<p>For a comparision you need to use <code>==</code> instead:</p>
<pre><code>if (symp->next == 0) {
</code></pre>
<p>or do it without an explicit comparision:</p>
<pre><code>if (!symp->next) {
</code></pre>
<p>In the <code>else</code> case you remove <code>symp</code> from the list (assuming <code>previous</code> actually contains the element before <code>symp</code>), but you don't free it's memory. This might be a memory leak, but it depends on the code calling the function: That code might still free <code>symp</code> or do something else with the removed element, or it might just forget about it and leak it's memory.</p>
http://stackoverflow.com/questions/1806541/struct-sorting-a-c-string-with-qsort/1806556#18065565Answer by sth for struct - sorting a c-string with qsortsth2009-11-27T02:56:07Z2009-11-27T03:03:24Z<p>You have an array of pointers to <code>mystruct</code>s, but <code>qsort</code> with this comparision function would expect a simple array of <code>mystruct</code>s. To sort an array of <code>mystruct*</code> you need to add another level of indirection to the comparison function:</p>
<pre><code>int struct_cmp(const void *a, const void *b) {
mystruct *ia = *(mystruct **)a;
mystruct *ib = *(mystruct **)b;
return strcmp(ia->ip, ib->ip);
}
</code></pre>
http://stackoverflow.com/questions/1795397/static-used-only-for-limiting-scope/1795416#17954162Answer by sth for static - used only for limiting scope?sth2009-11-25T08:18:46Z2009-11-25T09:13:41Z<p>You are correct, this is called "static linkage": The symbol declared as <code>static</code> is only available in the compilation unit where it is defined.</p>
<p>The other use of <code>static</code> would be inside a function:</p>
<pre><code>void f() {
static int counter = 0;
counter++;
// ...
}
</code></pre>
<p>In this case the variable is only initialized once and keeps it's value through different calls of that function, like it would be a global variable. In this example the <code>counter</code> variable counts the number of times the function was called.</p>
http://stackoverflow.com/questions/1795186/how-to-simulate-the-concept-of-object-identity-in-haskell/1795342#17953423Answer by sth for how to simulate the concept of object identity in Haskell sth2009-11-25T07:58:00Z2009-11-25T07:58:00Z<p>The answer to this question depends on how you are going to implement these objects you want to get id's from. How is it going to look if two variables contain the same object? You basically need to store references to "mutable" objects in the variables, the question is how exactly you do this. If you would just associate simple values to variable names changes in one variable would never be reflected in another variable, and there would be no such thing as object identity.</p>
<p>So the variables need to hold references to the actual current values of the objects. This could look like this:</p>
<pre><code>data VariableContent = Int | String | ObjRef Int | ...
data ObjStore = ObjStore [(Int, Object)]
data ProgramState = ProgramState ObjStore VariableStore ...
</code></pre>
<p>Here each <code>ObjRef</code> refers to a value in <code>ObjStore</code> that can be accessed by the <code>Int</code> id stored in <code>ObjRef</code>. And this <code>Int</code> would be the right thing to be returned by the <code>id(object)</code> function.</p>
<p>In general the <code>id</code> function strongly depends on how you actually implement object references.</p>
http://stackoverflow.com/questions/1795060/accessing-encrypted-archives/1795112#17951122Answer by sth for Accessing Encrypted Archivessth2009-11-25T06:57:06Z2009-11-25T06:57:06Z<p>The crucial information missing is what kind of archive this is. Once you know that look for a library supporting this kind of archive. If it is no popular archive format and there is no library you need to find out what kind of encryption algorithm is used and how exactly it is applied, then use that information to decrypt the contents of the archive "by hand".</p>
http://stackoverflow.com/questions/1788710/how-do-i-remove-something-form-a-list-plus-string-matching/1788734#17887343Answer by sth for How do I remove something form a list, plus string matching? sth2009-11-24T08:44:46Z2009-11-24T08:44:46Z<p>Easiest should be a list comprehension with a regular expression:</p>
<pre><code>import re
lst = [...]
lst = [t for t in lst if re.search(r'\w', t[0])]
</code></pre>
http://stackoverflow.com/questions/1788259/crash-when-utilising-a-stdmap/1788295#17882952Answer by sth for Crash when utilising a std:mapsth2009-11-24T06:47:35Z2009-11-24T06:47:35Z<p>Maybe you are calling the function from an uninitialized pointer, like this:</p>
<pre><code>MyClass *obj;
obj->MyFunction();
</code></pre>
http://stackoverflow.com/questions/1788161/lazy-sockets-scalability/1788169#17881692Answer by sth for Lazy sockets - scalability?sth2009-11-24T06:18:30Z2009-11-24T06:18:30Z<p>You could open several sockets and use <a href="http://www.manpagez.com/man/2/select/" rel="nofollow"><code>select()</code></a> or <a href="http://www.manpagez.com/man/2/poll/" rel="nofollow"><code>poll()</code></a> to let the operating system find out which of them need work done. This way you only need one thread to handle an arbitrary number of sockets. Reads/writes are done non-blocking only when the operating system signals that there is data/buffer space available.</p>
http://stackoverflow.com/questions/1786177/kdevelop-in-windows-xp/1786417#17864171Answer by sth for Kdevelop in Windows XPsth2009-11-23T22:11:24Z2009-11-23T22:11:24Z<p>KDevelop 4 will also be available on Windows (together with a lot of other KDE4 software). It is currently in beta, but you can <a href="http://www.kdevelop.org/mediawiki/index.php/KDevelop%5F4#Microsoft%5FWindows" rel="nofollow">download a Windows installer</a>. The installer also lets you install other KDE4 software and should come with the QT development files you will need to develop QT applications.</p>
http://stackoverflow.com/questions/1784594/why-is-this-haskell-incorrect/1784630#17846302Answer by sth for Why is this Haskell incorrect?sth2009-11-23T17:20:01Z2009-11-23T17:20:01Z<p>You cannot call a function at file scope like you would do in python or other scripting languages. Therefore the "call" to <code>llfs</code> in the last line is an error. Try printing the result in <code>main</code>:</p>
<pre><code>main = print (llfs [1, 2, 3, 3, 4, 5, 1, 1, 1])
</code></pre>
<p>At the moment the "function call" looks like an incomplete function definition, where the right side is missing, which leads to the surprising error message:</p>
<pre><code>llfs (...) = abc
</code></pre>
http://stackoverflow.com/questions/1781571/how-to-concatenate-two-dictionaries-to-create-a-new-one-in-python/1781602#17816022Answer by sth for how to concatenate two dictionaries to create a new one in Python?sth2009-11-23T07:30:25Z2009-11-23T07:30:25Z<p>You can use the <a href="http://docs.python.org/library/stdtypes.html#dict.update" rel="nofollow"><code>update()</code></a> method to build a new dictionary containing all the items:</p>
<pre><code>dall = {}
dall.update(d1)
dall.update(d2)
dall.update(d3)
</code></pre>
<p>Or, in a loop:</p>
<pre><code>dall = {}
for d in [d1, d2, d3]:
dall.update(d)
</code></pre>
http://stackoverflow.com/questions/1778741/read-function-in-socket-programming-in-c/1778746#17787465Answer by sth for read() function in socket programming in csth2009-11-22T13:50:13Z2009-11-22T13:58:49Z<p>Just read several times from the socket, until you got all the data you want to receive.</p>
<p>For example to receive 1000 bytes, it could look like this (on success <code>read</code> returns the number of bytes read):</p>
<pre><code>int received = 0;
while (received < 1000) {
n = read(newsockfd, buffer, 255);
// error checking...
// do something with the partial data in "buffer"...
received += n;
}
</code></pre>
http://stackoverflow.com/questions/1778501/find-and-replace-whole-words-in-vim/1778504#177850416Answer by sth for Find and replace whole words in vimsth2009-11-22T11:53:26Z2009-11-22T11:53:26Z<p>You can use <code>\<</code> to match the beginning of a word and <code>\></code> to match the end:</p>
<pre><code>%s/\<word\>/newword/g
</code></pre>
http://stackoverflow.com/questions/1777679/comparing-wildcards-for-equality-in-haskell/1777693#17776933Answer by sth for Comparing wildcards for equality in Haskell..?sth2009-11-22T03:03:17Z2009-11-22T03:03:17Z<p>You have to do the equality check explicitly, by using named variables instead of wildcards:</p>
<pre><code>matches (1 a) (2 b) (3 c) | a == b && b == c = something
</code></pre>
<p>(And as a side note: <code>(1 a)</code> is not a valid pattern, you need <code>(1,a)</code> or some other type of constructor)</p>
http://stackoverflow.com/questions/1775637/automatically-pick-tags-from-context-using-python/1775718#17757182Answer by sth for Automatically pick tags from context using Pythonsth2009-11-21T15:06:25Z2009-11-21T15:06:25Z<p>I'd suggest you <a href="http://blog.stackoverflow.com/2009/11/creative-commons-data-dump-nov-09/" rel="nofollow">download the Stack Overflow data dump</a>. There you get a lot of real world posts, with appropriate tags, to test different algorithms of tag selection.</p>
<p>But generally I doubt it will work too well. For your own question "words" is the clear winner in word count, followed by a list of words with two appearances each, like "common", "list", "method", "pick" and "tags". Which of those would you automatically choose as tags? Also the tags you chose manually contain "python" and "context", none of which shows up with high word frequency.</p>
http://stackoverflow.com/questions/1774882/c-instantiate-templates-in-loop/1774957#17749571Answer by sth for C++ instantiate templates in loopsth2009-11-21T08:42:04Z2009-11-21T08:42:04Z<p>It probably could be done using the <a href="http://www.boost.org/doc/libs/1%5F41%5F0/libs/mpl/doc/index.html" rel="nofollow">Boost metaprogramming library</a>. But if you haven't used it before or are used to do excessive template programming it probably won't be worth the amount of work it would need to learn how to do it.</p>
http://stackoverflow.com/questions/1774792/does-a-exception-with-just-a-raise-have-any-use/1774834#177483415Answer by sth for Does a exception with just a raise have any use?sth2009-11-21T07:31:45Z2009-11-21T07:31:45Z<p>In the code you linked to is another additional exception handler:</p>
<pre><code>try:
yield safe_join(template_dir, template_name)
except UnicodeDecodeError:
# The template dir name was a bytestring that wasn't valid UTF-8.
raise
except ValueError:
# The joined path was located outside of template_dir.
pass
</code></pre>
<p>Since <a href="http://docs.python.org/library/exceptions.html?highlight=unicodedecodeerror#exceptions.UnicodeDecodeError" rel="nofollow"><code>UnicodeDecodeError</code></a> is a subclass of <code>ValueError</code>, the second exception handler would cause any <code>UnicodeDecodeError</code> to be ignored. It looks like this would not be the intended effect and to avoid it the <code>UnicodeDecodeError</code> is processed explicitly by the first handler. So with both handlers together a <code>ValueError</code> is only ignored if it's not a <code>UnicodeDecodeError</code>.</p>
http://stackoverflow.com/questions/1771374/compare-string-and-floats-in-python/1771420#17714204Answer by sth for Compare string and floats in pythonsth2009-11-20T15:56:26Z2009-11-20T15:56:26Z<p>The easiest way should be to just try to convert them to floats, and if that fails, fall back to a compare on strings:</p>
<pre><code>def floatstrcmp(left, right):
try:
return cmp(float(left), float(right))
except ValueError:
return cmp(left, right)
</code></pre>
http://stackoverflow.com/questions/1829922/concatenating-variable-names-in-c/1829927#1829927Comment by sth on Concatenating Variable Names in C?sth2009-12-02T00:57:47Z2009-12-02T00:57:47Z@Glex: In C, <code>class</code> is not a special word in any way.http://stackoverflow.com/questions/1829830/else-directly-after-end-of-if-block/1829849#1829849Comment by sth on 'else' directly after end of if blocksth2009-12-02T00:51:28Z2009-12-02T00:51:28Z@zebrabox: My point was just that "I like it differently" doesn't answer the question "Why does Google use this convention?".http://stackoverflow.com/questions/1829830/else-directly-after-end-of-if-block/1829849#1829849Comment by sth on 'else' directly after end of if blocksth2009-12-02T00:26:14Z2009-12-02T00:26:14ZI don't think that's an answer to the question at all... Or are you saying Google does this <b>because</b> you don't like it? What have you done to them that you have to assume they just do it to annoy you?http://stackoverflow.com/questions/1829499/how-does-phps-main-c-start-execution/1829595#1829595Comment by sth on How Does PHP's main.c Start Execution sth2009-12-02T00:10:46Z2009-12-02T00:10:46ZSure, mod_php will be loaded by the webserver as a shared object/DLL/... and then the webserver will call whatever functions it wants to call in that module. But then php doesn't run as a program on it's own, it runs as part of the webserver.http://stackoverflow.com/questions/1812845/segmentation-fault-in-fprintf-function-under-vc2008Comment by sth on Segmentation fault in fprintf function under VC2008sth2009-11-28T15:57:56Z2009-11-28T15:57:56ZHow does the fprintf call look like?http://stackoverflow.com/questions/1802204/i-can-not-get-access-to-pointer-to-member-whyComment by sth on I can not get access to pointer to member. Why?sth2009-11-26T08:14:39Z2009-11-26T08:14:39ZWhat compiler are you using? There are no errors with g++ 4.3.3.http://stackoverflow.com/questions/1802094/using-a-hash-function-to-give-a-memorable-personality-to-objectsComment by sth on Using a hash function to give a memorable personality to objectssth2009-11-26T07:36:31Z2009-11-26T07:36:31ZNot an answer, but maybe useful: In Python there is an <code>id(...)</code> function that gives you an unique identifier for an object.http://stackoverflow.com/questions/1241026/hibernate-one-to-many-using-something-other-than-a-primary-key/1793385#1793385Comment by sth on Hibernate one to many using something other than a primary keysth2009-11-25T14:03:26Z2009-11-25T14:03:26ZSince it's not an answer to this question, better ask it as a new question instead. More people would see it and try to answer...http://stackoverflow.com/questions/842970/convert-string-to-cllocationcoordinate2d/1794764#1794764Comment by sth on Convert string to CLLocationCoordinate2Dsth2009-11-25T13:45:08Z2009-11-25T13:45:08ZSince it's not an <i>answer</i> to the question at the top, this would be better posted as a separate question...http://stackoverflow.com/questions/536775/c-form-app-system-account/1795220#1795220Comment by sth on C# form app system account sth2009-11-25T13:38:51Z2009-11-25T13:38:51ZThat's not an answer to this question. You should better ask this as a new question, but don't expect people to send you anything (besides spam) per email.http://stackoverflow.com/questions/621461/how-to-set-the-output-path-of-several-visual-c-projects/1795327#1795327Comment by sth on How to set the output path of several visual C# projectssth2009-11-25T13:33:25Z2009-11-25T13:33:25ZBetter ask a follow-up question like this as a new question, not post it here as an answer. More people would see it and try to solve the problem, and it isn't really an answer to this question :).
http://stackoverflow.com/questions/51435/windows-version-of-the-unix-touch-command/1796135#1796135Comment by sth on Windows version of the Unix touch commandsth2009-11-25T13:22:39Z2009-11-25T13:22:39ZNow that's just messed up syntax. Seriously, <i>what were they thinking?</i> Also note the same documentation says "Destination: Required."... I'm amazed.http://stackoverflow.com/questions/409846/open-a-new-window-with-asp-net/1796167#1796167Comment by sth on Open a new window with asp.netsth2009-11-25T13:15:11Z2009-11-25T13:15:11ZThis has too many closing parenthesis and it seems like part of the code is missing...http://stackoverflow.com/questions/1795397/static-used-only-for-limiting-scope/1795416#1795416Comment by sth on static - used only for limiting scope?sth2009-11-25T09:14:18Z2009-11-25T09:14:18ZOoops... Added the type to counter :-)http://stackoverflow.com/questions/1791979/c-while-loopComment by sth on C ++ while loopsth2009-11-24T18:31:23Z2009-11-24T18:31:23ZSo did you already start somehow? Any code yet? Any specific questions?