User Tuminoid - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T05:54:58Zhttp://stackoverflow.com/feeds/user/40657http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1388298#138829832Answer by Tuminoid for What is your best programmer joke?Tuminoid2009-09-07T08:49:30Z2009-09-07T08:49:30Z<p><a href="http://www.google.com/search?hl=en&q=recursion" rel="nofollow">http://www.google.com/search?hl=en&q=recursion</a></p>
<p>Did you mean: "recursion"</p>
http://stackoverflow.com/questions/433276/svn-repository-split-problem4Svn repository split problemTuminoid2009-01-11T17:38:50Z2009-07-23T08:32:51Z
<p>I want to split a directory from a large Subversion repository to a repository of its own, and keep the history of the files in that directory.</p>
<p>I tried the regular way of doing it first</p>
<pre><code>svnadmin dump /path/to/repo > largerepo.dump
cat largerepo.dump | svndumpfilter include my/directory >mydir.dump
</code></pre>
<p>but that does not work, since the directory has been moved and copied over the years and files have been moved into and out of it to other parts of the repository. The result is a lot of these:</p>
<pre><code>svndumpfilter: Invalid copy source path '/some/old/path'
</code></pre>
<p>Next thing I tried is to include those <code>/some/old/path</code> as they appear and after a long, long list of files and directories included, the svndumpfilter completes, BUT importing the resulting dump isn't producing the same files as the current directory has.</p>
<p><strong>So, how do I properly split the directory from that repository while keeping the history?</strong></p>
<p><strong>EDIT:</strong> I specifically want <code>trunk/myproj</code> to be the trunk in a new repository PLUS have the new repository include none of the other old stuff, ie. there should not be possibility for anyone to update to old revision before the split and get/see the files.</p>
<p>The svndumpfilter solution I tried would achieve exactly that, sadly its not doable since the path/files have been moved around. The <a href="http://stackoverflow.com/questions/433276/svn-repository-split-problem#433304">solution by ng</a> isn't accetable since its basically a clone+removal of extras which keeps ALL the history, not just relevant myproj history.</p>
<p><strong>BUMP</strong> C'moon, there must be someone who definitely knows if this is doable or not, and how!</p>
http://stackoverflow.com/questions/1107989/grabbing-the-x-server-with-xgrabserver2Grabbing the X server with XGrabServerTuminoid2009-07-10T06:26:21Z2009-07-12T11:04:16Z
<p>In an embedded Linux system, I'm trying to show a shutdown notification that should override any other windows when shutting down. Now creating the window isn't a problem, but showing the window reliably is. The X server or WM is somehow too busy to draw the notification every time. Considering the limited CPU power we have, its not surprising.</p>
<p>So, I figured I will make it easy to the WM/X by grabbing the X server using gdk_x11_grab_server() (which calls XGrabServer on default display). But when should I call the grab func? If I call it before building my window, prior showing my window or event in expose-event of my window, nothing is drawn to the screen (even in no-load test)!</p>
<p>The <a href="http://www.xfree86.org/current/XGrabServer.3.html" rel="nofollow">documentation</a> says:</p>
<blockquote>
<p>The XGrabServer function disables
processing of requests and close downs
on all other connections than the one
this request arrived on.</p>
</blockquote>
<p>I suppose that would mean that only requests from my app should be processed, but it seems that is not the case, since nothing is drawn if X is grabbed by my app.</p>
<p><strong>So, how and when should grabbing the X server be used to achieve wanted outcome</strong>, or is it totally a wrong tool and I've misunderstood the use (or trying to use it too high level for it to work really).</p>
http://stackoverflow.com/questions/385660/how-do-i-setup-a-callback-mechanism-for-richedit-in-win320How do I setup a callback mechanism for RichEdit in win32Tuminoid2008-12-22T06:19:58Z2009-06-29T20:52:57Z
<p><strong>In win32, how do I setup a callback mechanism for RichEdit I have not created myself?</strong></p>
<p><strong>PART 1</strong></p>
<p><a href="http://stackoverflow.com/questions/352236/reading-from-a-text-field-in-another-applications-window">I'm reading from a textedit field in another application's GUI</a>. This works just fine now, except after the first read I'd like to fetch only new or modified lines. In GTK+ or Qt I'd just install a callback on some signal the field edits when its changed, but how does it work on Win32? </p>
<p>My MSDN searches result with nothing useful, probably because I don't know the exact term to search for. The class of the textedit is <a href="http://msdn.microsoft.com/en-us/netframework/bb787877(VS.85).aspx" rel="nofollow">RichText20W</a>, and it has some <a href="http://msdn.microsoft.com/en-us/netframework/bb774366(VS.85).aspx" rel="nofollow">messages</a> that are probably used somehow, though that article just discusses using them for the parent of the class.</p>
<p><strong>PART 2</strong></p>
<p>Also, <em>if</em> there is no such "text changed, here is the newly inserted text" callback which returns the new content immediately, I need some way to easily detect what is new. From top-of-my-head:</p>
<ol>
<li>Have a marker at the end of the text block we've read, and only read between that and the end.</li>
<li>Store what we've read previously, and after a second read, remove the duplicate part from the latter to have the newly inserted stuff.</li>
</ol>
<p>Option 2 might not be viable, since the textedit can contain any amount of text. The marker part sounds doable, but yet again, my feeble Win32 skills and horrible Win32 function names prevent me from finding the right way to do it.</p>
<p><em>Note that all these must be doable for a textedit I <strong>do not</strong> own and have not created, they belong to a third party process.</em></p>
<p><strong>Code samples in C++ highly appreciated.</strong></p>
<p><em>Disclaimer</em></p>
<p>Obviously, if there is some better way of doing it, let me know. I only assumed callback would be the way to go based on my previous experience with GTK+/Qt. Feel free to show me the path :)</p>
http://stackoverflow.com/questions/391104/post-an-implementation-of-simple-merry-xmas-or-happy-holidays-in-your-favourite-p2Post an implementation of simple Merry Xmas or Happy holidays in your favourite programming language! [closed]Tuminoid2008-12-24T09:39:17Z2009-04-20T18:17:29Z
<p>Happy Christmas/[enter your festivity here] everyone!</p>
<pre><code>perl -e '$a="How does stAckoverflow PeoPle implement \"happY Holiday\" prOgrams in Language of theIr choice toDAY, chriStmas eve?"; $a=~ tr/[A-Z]//cd; print $a;'
</code></pre>
http://stackoverflow.com/questions/404774/why-library-name-gets-an-additional-0-in-its-name0Why library name gets an additional 0 in its name?Tuminoid2009-01-01T09:22:49Z2009-02-22T14:22:04Z
<p>I have this tiny Qt project with a project file like this:</p>
<pre><code>TEMPLATE = lib
TARGET = record32
VERSION = 0.0.1
DEPENDPATH += .
INCLUDEPATH += .
CONFIG += shared
SOURCES += recorder.cpp
HEADERS += recorder.h
</code></pre>
<p>When I compile a library from it by <code>qmake && nmake</code>, it results into files</p>
<pre><code>record32.obj
record320.lib
record320.dll
...
</code></pre>
<p><strong>Why is that additional 0 added to the lib and dll names?</strong></p>
<p>The generated makefiles seem not be appending it but rather just assume it, in <code>Makefile.Release</code> it just says:</p>
<pre><code>####### Files
SOURCES = recorder.cpp release\moc_recorder.cpp
OBJECTS = release\recorder.obj release\moc_recorder.obj
DIST =
QMAKE_TARGET = recorder
DESTDIR = release\ #avoid trailing-slash linebreak
TARGET = record320.dll
DESTDIR_TARGET = release\record320.dll
</code></pre>
<p><strong>How can I prevent it and name my libraries as I wish?</strong></p>
<p>(Note that manually fix the makefile.release isn't a accetable solution)</p>
http://stackoverflow.com/questions/338082/64-bit-qt-and-postgres-plugin-in-windows264-bit Qt and Postgres plugin in WindowsTuminoid2008-12-03T17:53:32Z2009-02-20T02:52:42Z
<p>I have a 32-bit Windows/Qt application using Postgres plugin. Recently, I've been intrigued to turn the app into a 64-bit app. So I checked the Qt docs for instructions, built Qt and its libraries into 64-bit successfully. Now the problem is Postgres does not provide libraries for 64-bit Windows! Obviously, the Qt Postgres plugin won't compile. I googled around a lot and didn't find any solutions, just a whole bunch of non-helpful discussion archive postings. So, is there a way for me to compile my app as true 64-bit while using Postgres in Windows?</p>
<p><strong>ADDENUM</strong>
The problem isn't running Postgres as true 64-bit on Windows (<a href="http://blog.hagander.net/archives/73-PostgreSQL-vs-64-bit-windows.html" rel="nofollow">which cannot be done</a>) (I'm not managing the database, so I don't care even), but to compile my Qt app as 64-bit (which very much gains from being true 64-bit). But since it needs to access Postgres DB, I can't do it, Qt Postgres plugin will not compile and I won't have DB access.</p>
<p>So, should I just separate Postgres related stuff to a 32-bit DLL (can I use 32-bit dlls with 64-bit app even?), or even to a separate executable, or can I use some other framework for accessing it...?</p>
<p><strong>Give me any, even dirty, solution</strong> to this problem and state the pros and cons it may have and what else it might affect or break.</p>
http://stackoverflow.com/questions/356666/identifier-for-win64-configuration-in-qmake0Identifier for win64 configuration in QmakeTuminoid2008-12-10T16:28:54Z2009-02-20T02:52:09Z
<p>Is there a "win64" identifier in Qmake project files? <a href="http://doc.trolltech.com/4.4/qmake-advanced-usage.html" rel="nofollow">Qt Qmake advanced</a> documentation does not mention other than unix / macx / win32.</p>
<p>So far I've tried using:</p>
<pre><code>win32:message("using win32")
win64:message("using win64")
amd64:message("using amd64")
</code></pre>
<p>The result is always "using win32".</p>
<p>Must I use a separate project-file for x32 and x64 projects, so they would compile against correct libraries? Is there any other way to identify between 32-bit and 64-bit environments?</p>
http://stackoverflow.com/questions/346369/building-32-bit-qt-mysql-plugin-fails-with-mingw0Building 32-bit Qt Mysql plugin fails with MinGwTuminoid2008-12-06T15:15:44Z2009-02-19T10:59:57Z
<p>I'm building a MySQL plugin for Qt 4.4.3 Open Source Edition (<a href="http://doc.trolltech.com/4.4/sql-driver.html#building-the-plugins-manually" rel="nofollow">Qt documentation</a>), and using command:</p>
<pre><code>cd %QTDIR%\src\plugins\sqldrivers\mysql
qmake "INCLUDEPATH+=C:\MySQL\include" "LIBS+=C:\MYSQL\MySQL Server <version>\lib\opt\libmysql.lib" mysql.pro
make
</code></pre>
<p>I manage to build it to my 64-bit Qt just fine using 64-bit MySQL dev files (using nmake). However, 32-bit build (with mingw-make) fails with linking problems:</p>
<pre><code>Creating library file: c:\Coding\Qt\4.4.3\plugins\sqldrivers\libqsqlmysqld4.a
tmp/obj/debug_shared/qsql_mysql.o(.text+0x10d): In function `Z5codecP8st_mysql':
...lots of same stuff...
</code></pre>
<p>The dev files installed by MySQL 5.1 32-bit and 64-bit library are also different: the 64-bit includes libmysql.dll and six .lib files, while 32-bit includes those <strong>plus</strong> six .pdb files. Relevant to this issue?</p>
<p>Is anyone able to build the 32-bit plugin with Qt 4.4.3/MinGW using MySQL 5.1? Suggestions?</p>
http://stackoverflow.com/questions/500580/in-c-clr-what-does-a-hat-character-do3In C++/CLR, what does a hat character ^ do?Tuminoid2009-02-01T10:50:59Z2009-02-01T11:26:06Z
<p>I was reading Ivor Horton's Beginning Visual C++ 2008 and many of its CLR examples have</p>
<pre><code>int main(array<System::String ^> ^args)
</code></pre>
<p>definition for main. I went back, page by page, to the beginning of the book to find first such instance with an explanation what it really means, but couldn't find one.</p>
<p>Obviously it means the same as the standard <code>int main(int argc, char *argv[])</code>, but I'd like to know when and why that ^ is really used, and why it even exists (does it do something that pointers * and references & cannot represent)?</p>
http://stackoverflow.com/questions/450027/uninstalling-an-msi-file-from-the-command-line-without-using-msiexec/450037#4500372Answer by Tuminoid for Uninstalling an MSI file from the command line without using msiexecTuminoid2009-01-16T10:44:03Z2009-01-16T10:44:03Z<p>The msi file extension is mapped to msiexec (same way typing a .txt filename on a command prompt launches notepad/default txt file handler to display the file). </p>
<p>Thus typing in a filename with msi extension really runs msiexec with the msi file as argument and takes the default action, install. For that reason, uninstalling requires you to invoke msiexec with uninstall switch to unstall it.</p>
http://stackoverflow.com/questions/449912/book-about-linux-shell-programming/449929#4499292Answer by Tuminoid for Book about Linux shell programmingTuminoid2009-01-16T09:41:55Z2009-01-16T09:41:55Z<p>How about <a href="http://rads.stackoverflow.com/amzn/click/0131478230" rel="nofollow">A Practical Guide to Linux(R) Commands, Editors, and Shell Programming</a> or <a href="http://rads.stackoverflow.com/amzn/click/0596005954" rel="nofollow">Classic Shell Scripting</a>.</p>
http://stackoverflow.com/questions/437043/best-way-to-handle-a-large-download-site/437126#4371260Answer by Tuminoid for Best way to handle a large download site?Tuminoid2009-01-12T21:43:20Z2009-01-12T21:43:20Z<p>Whats wrong with using a robust web server (like Apache) and let it deal with files. Just as you now separate larger files to a webserver, why not serve smaller files the same way too?</p>
<p>Is there some hidden requirements to prevent this?</p>
http://stackoverflow.com/questions/436458/form-submission-asks-to-save-exe-would-like-it-to-run-instead/436518#4365180Answer by Tuminoid for Form submission asks to save exe, would like it to run insteadTuminoid2009-01-12T18:41:52Z2009-01-12T18:41:52Z<p>I assume the lib.exe does its template updating on the server, meaning you need to configure your web server to run exe files instead of serving them to the user. You do not specify the server you run (somehow I assume you run IIS...), but in Apache you would use <code><FilesMatch></code> in <code>httpd.conf</code> to add a handler for exe, something like this:</p>
<pre><code><FilesMatch \.cgi$>
SetHandler cgi-script
</FilesMatch>
</code></pre>
<p>but adapted to exes. See <a href="http://httpd.apache.org/docs/2.2/mod/mod_mime.html" rel="nofollow">mod_mime documentation</a> here.</p>
http://stackoverflow.com/questions/426463/problem-with-openssl-library/428348#4283482Answer by Tuminoid for Problem with OpenSSL libraryTuminoid2009-01-09T14:53:56Z2009-01-09T15:00:53Z<p>You should not pass 1 to <code>RSA_private_decrypt</code> but the length of the block you are trying to decrypt, ie. the return value of <code>RSA_public_encrypt</code> = 128. You do not know the length of the cleartext when you are decrypting!</p>
<p>This complete sample program results in:</p>
<pre><code>128 from encrypt.
1 from decrypt: 'A'
</code></pre>
<p>Source:</p>
<pre><code>#include <openssl/rsa.h>
#include <openssl/engine.h>
#include <stdio.h>
int main(int argc, char **argv)
{
RSA *myRSA;
unsigned char cleartext[2560] = "A";
unsigned char encrypted[2560] = { 0 };
unsigned char decrypted[2560] = { 0 };
int resultEncrypt = 0;
int resultDecrypt = 0;
myRSA = RSA_generate_key ( 1024, 65537, NULL, NULL );
resultEncrypt = RSA_public_encrypt ( 1 /* strlen(cleartext) */, cleartext, encrypted, myRSA, RSA_PKCS1_OAEP_PADDING );
printf("%d from encrypt.\n", resultEncrypt);
resultDecrypt = RSA_private_decrypt( 128 /* resultEncrypt */, encrypted, decrypted, myRSA, RSA_PKCS1_OAEP_PADDING);
printf("%d from decrypt: '%s'\n", resultDecrypt, decrypted);
RSA_free ( myRSA );
return 0;
}
</code></pre>
http://stackoverflow.com/questions/427965/best-qt-ide/428200#42820017Answer by Tuminoid for Best QT ide?Tuminoid2009-01-09T14:19:19Z2009-01-09T14:19:19Z<p><a href="http://trolltech.com/developer/qt-creator" rel="nofollow">Qt Creator</a> from Trolltech is in beta now, but looks promising.</p>
http://stackoverflow.com/questions/420069/most-efficient-javascript-ajax-toolkit/420086#4200861Answer by Tuminoid for Most efficient javascript/AJAX toolkit?Tuminoid2009-01-07T12:14:48Z2009-01-07T12:14:48Z<p><a href="http://www.dojotoolkit.org/" rel="nofollow">Dojo Toolkit</a> isn't too bad either, customizable, themeable etc.</p>
<p>EDIT: and in the link to the <a href="http://blog.creonfx.com/javascript/dojo-vs-jquery-vs-mootools-vs-prototype-performance-comparison" rel="nofollow">comparison Cletus posted</a>, it works on every platform tested and is also the fastest.</p>
http://stackoverflow.com/questions/367824/using-win32-api-in-qt-ose-project1Using Win32 API in Qt OSE projectTuminoid2008-12-15T09:11:53Z2009-01-02T12:29:31Z
<p><em>It is a messy question, hopefully you can figure out what I want :)</em></p>
<p><strong>What is the best way to use Win32 functionality in a Qt Open Source Edition project?</strong></p>
<p>Currently I have included the necessary Windows SDK libraries and include directories to qmake project file by hand. It works fine on a small scale, but its inconvenient and cumbersome. </p>
<p>So, should I separate the Win32 stuff into a library or is there a sensible way of combining these two? Or have I just overlooked some Qt aspect that simplifies this?</p>
<p><strong>EDIT</strong></p>
<p>Removed the syntax stuff, its not really relevant, just annoying.</p>
http://stackoverflow.com/questions/356666/identifier-for-win64-configuration-in-qmake/404803#4048030Answer by Tuminoid for Identifier for win64 configuration in QmakeTuminoid2009-01-01T09:58:20Z2009-01-01T09:58:20Z<p>I've figured out one way to do it. </p>
<p>Qt allows you to pass arbitrary config parameters which you can use to separate the targets.</p>
<p>By having a conditional config in your project file:</p>
<pre><code>CONFIG(myX64, myX64|myX32) {
LIBPATH += C:\Coding\MSSDK60A\Lib\x64
} else {
LIBPATH += C:\Coding\MSSDK60A\Lib
}
</code></pre>
<p>and passing that custom config to <code>qmake</code> with</p>
<pre><code>qmake CONFIG+=myX64
</code></pre>
<p>you get the wanted result. </p>
<p><strong>Hope this helps anyone else wondering the same thing. Still, if there is better way of doing this, please answer to this post.</strong></p>
http://stackoverflow.com/questions/385660/how-do-i-setup-a-callback-mechanism-for-richedit-in-win32/391084#3910840Answer by Tuminoid for How do I setup a callback mechanism for RichEdit in win32Tuminoid2008-12-24T09:25:13Z2008-12-24T09:25:13Z<p>Based on Joel's answer, I quit looking for callbacks and just made a small class that hooks itself (not by a real API hook though) to the richedit and polls it once a second for content length, and if it has changed since the last poll, it asks for the content, compares that to previous known content and emits a signal with the changed content. </p>
<p>This seems to work OK for this purpose, but if someone knows a better way still (some real and tested way of doing it via API hooks or something), please post.</p>
http://stackoverflow.com/questions/375450/whats-the-efficiency-and-quality-of-this-shuffling-algorithm3What's the efficiency and quality of this shuffling algorithm?Tuminoid2008-12-17T18:01:43Z2008-12-19T01:23:55Z
<p>This recent question about <a href="http://stackoverflow.com/questions/375351/most-efficient-way-to-randomly-sort-shuffle-a-list-of-integers-in-c">sorting randomly using C#</a> got me thinking about the way I've sometimes shuffled my arrays in Perl.</p>
<pre><code>@shuffled = sort { rand() <=> rand() } @array;
</code></pre>
<p>The proposed solution in the mentioned question is <a href="http://en.wikipedia.org/wiki/Fisher-Yates_shuffle" rel="nofollow">Fisher-Yates shuffle</a>, which works in a linear time.</p>
<p>The question is: how efficient is my snippet and is such shuffle "really" random?</p>
http://stackoverflow.com/questions/373900/why-does-stdafx-h-work-the-way-it-does/373909#3739092Answer by Tuminoid for Why does stdafx.h work the way it does?Tuminoid2008-12-17T07:42:22Z2008-12-17T07:42:22Z<p>It keeps the compile time down, as the stuff in it are always compiled first (see details in quote below):</p>
<blockquote>
<p>stdafx.h is a file
that describes both standard system
and project specific include files
that are used frequently but hardly
ever changed.</p>
<p>Compatible compilers will
pre-compile this file to reduce
overall compile times. <strong>Visual C++ will
not compile anything before the
<code>#include "stdafx.h"</code> in the source file</strong>, unless the compile option
/Yu'stdafx.h' is unchecked (by
default); it assumes all code in the
source up to and including that line
is already compiled.</p>
</blockquote>
http://stackoverflow.com/questions/371637/why-isnt-htmlobliterate-obliterating-my-html/371772#3717722Answer by Tuminoid for Why isn't HTML::Obliterate obliterating my HTML?Tuminoid2008-12-16T16:10:22Z2008-12-16T16:10:22Z<p>Answer to your modified question: </p>
<p>Instead of extirpating the message body, you extirpate the whole message instead. And then you don't use it anywhere.</p>
<pre><code>my $nohtml = extirpate_html( $msg );
$body =~ s/^>.*$//msg;
$Text::Wrap::columns=80;
print MYFILE wrap("", "", <<"");
\n
From: $from
To: $to
Date: $date
Subject: $subject
\n
$body
</code></pre>
<p>Perhaps you need to change it to:</p>
<pre><code>my $nohtml = extirpate_html( $body );
$nohtml =~ s/^>.*$//msg;
</code></pre>
<p>and then apply the <code>$nohtml</code> as the message body for wrap.</p>
http://stackoverflow.com/questions/371637/why-isnt-htmlobliterate-obliterating-my-html/371658#3716585Answer by Tuminoid for Why isn't HTML::Obliterate obliterating my HTML?Tuminoid2008-12-16T15:39:10Z2008-12-16T15:39:10Z<p>So line 36 seems to be</p>
<pre><code>print MYFILE wrap("", "", <<"");
</code></pre>
<p>which means perl will wrap the following text until there is terminator <code>""</code> (I never use confusing item like this, I always use END or UNTIL_END for simplicity.)</p>
<p>That terminator is then found on line 45 (the empty line), meaning next thing it processes is line 46:</p>
<pre><code>else {
</code></pre>
<p>which doesn't make sense, since the previous <code>if</code> hasn't closed yet (the line 44 which has } is <em>before</em> the terminator <code>""</code> so its treated as text for wrapping. Perl notices this and kindly suggest you this might be the culprit:</p>
<pre><code>(Might be a runaway multi-line << string starting on line 36)
</code></pre>
<p>You need to swap lines 44 and 45 to first have terminator <code>""</code> (empty line), then close the if with <code>}</code>. The second wrap in your example does this correctly.</p>
http://stackoverflow.com/questions/371599/how-to-remove-qwidgets-from-qsplitter/371634#3716343Answer by Tuminoid for How to remove QWidgets from QSplitterTuminoid2008-12-16T15:26:40Z2008-12-16T15:26:40Z<p>Many things in Qt cannot be "traditionally" removed. Instead call hide() on it and destruct it. From <a href="http://doc.trolltech.com/4.4/qsplitter.html" rel="nofollow">QSplitter</a> documentation:</p>
<blockquote>
<p>When you hide() a child its space will
be distributed among the other
children. It will be reinstated when
you show() it again.</p>
</blockquote>
http://stackoverflow.com/questions/370477/what-are-your-new-year-resolutions-as-a-programmer-for-2009/370573#3705730Answer by Tuminoid for What are your New year Resolutions as a programmer for 2009?Tuminoid2008-12-16T06:17:20Z2008-12-16T06:17:20Z<p>Finish my hobby game AI (hanging two years), and the project on statistics and predictability and launch it as webapp (hanging four years)...</p>
<p>And oh yeah, take a 6 month break from coding for money and enjoy life with my kiddo.</p>
http://stackoverflow.com/questions/352236/reading-from-a-text-field-in-another-applications-window2Reading from a text field in another application's windowTuminoid2008-12-09T09:43:37Z2008-12-15T13:06:22Z
<p>Is there a way for a Windows application to access another applications data, more specifically a text input field in GUI, and grab the text there for processing in our own application?</p>
<p>If it is possible, is there a way to "shield" your application to prevent it?</p>
<p>EDIT: The three first answers seem to be about getting the another applications window title, not a specific text input field in that window. </p>
<p>I'm no Windows API expect, so could you be more exact how do I find a certain text field in that window, what are the prequisites for it (seems like knowing a window handle something is required, does it require knowing the text field handle as well? How do I get that? etc...)</p>
<p>Code snippets in C++ really would be really appreciated. MSDN help is hard to browse since Win32-API has such horrible naming conventions.</p>
<p><strong>Completed!</strong> See my answer below for a how-to in C++.</p>
http://stackoverflow.com/questions/368219/javascript-onchange-within-option/368298#3682981Answer by Tuminoid for Javascript - onchange within <option>Tuminoid2008-12-15T13:03:20Z2008-12-15T13:03:20Z<p>Tom's answer is elegant, and neatly puts the JS away from the HTML markup. As mentioned, it could be even moved to an external file. However it adds quite much "nonsense" to the code, like multiple anonymous function assignments etc.</p>
<p>If you want quick solution, you can put it all in the onchange() inside the select tag as well. Pick the one you see more fit.</p>
<pre><code><select id="transfer_reason" name="transfer_reason" onchange="document.getElementById('otherdetail').style.display = (this.selectedIndex === 2) ? 'block' : 'none';">
<option value="x">Reason 1</option>
<option value="y">Reason 2</option>
<option value="other">Other Reason</option>
</select>
<div id="otherdetail" style="display: none;">More Detail Here Please</div>
</code></pre>
http://stackoverflow.com/questions/368140/what-music-really-gets-you-in-the-mood-for-programming/368230#3682301Answer by Tuminoid for What music really gets you in the mood for programming?Tuminoid2008-12-15T12:34:21Z2008-12-15T12:34:21Z<p>Younger I just listened my whole mp3-collection on random. Now, being old-and-grumpy-30-yrs-old, I get into zone much much better without listening any music. Silence.. It just rules.</p>
http://stackoverflow.com/questions/325706/installeropendatabase-produces-a-type-error-with-msiopendatabasemodetransact/348903#3489031Answer by Tuminoid for Installer::OpenDatabase() produces a type error with msiOpenDatabaseModeTransact.Tuminoid2008-12-08T08:20:20Z2008-12-15T10:19:38Z<p>MSDN says <a href="http://msdn.microsoft.com/en-us/library/aa370338(VS.85).aspx" rel="nofollow">OpenDatabase</a> is available from MSI version 4.0 onwards, <a href="http://msdn.microsoft.com/en-us/library/bb736312(VS.85).aspx" rel="nofollow">transactions</a> in general from MSI 4.5 onwards. Just a hunch, but could it be that your MSI is outdated? I once had some mysterious trouble with an outdated MSI version.</p>
http://stackoverflow.com/questions/433276/svn-repository-split-problemComment by Tuminoid on Svn repository split problemTuminoid2009-11-23T12:25:26Z2009-11-23T12:25:26ZActually no, though I need to try that 3rd party script auriarte suggested. The project has been frozen for a while now, thus I've been ignoring the problem too, but I'll try it out sometime.http://stackoverflow.com/questions/427965/best-qt-ide/428200#428200Comment by Tuminoid on Best QT ide?Tuminoid2009-11-04T05:48:39Z2009-11-04T05:48:39ZQt Designer is for that, though I haven't followed up on Creator lately, maybe its integrated somewhere too.http://stackoverflow.com/questions/1409454/c-map-find-to-possibly-insert-how-to-optimize-operations/1409463#1409463Comment by Tuminoid on c++ map find() to possibly insert(): how to optimize operations?Tuminoid2009-09-11T07:30:23Z2009-09-11T07:30:23ZThis does not work if old value is different than new and overwrite is not wanted.http://stackoverflow.com/questions/433276/svn-repository-split-problem/795271#795271Comment by Tuminoid on Svn repository split problemTuminoid2009-04-28T10:21:50Z2009-04-28T10:21:50ZSorry, but no. I come up with either empty dump or with 'invalid copy source path' errors like before :(http://stackoverflow.com/questions/346369/building-32-bit-qt-mysql-plugin-fails-with-mingw/564775#564775Comment by Tuminoid on Building 32-bit Qt Mysql plugin fails with MinGwTuminoid2009-02-19T15:09:29Z2009-02-19T15:09:29ZThanks. I figured out it must've been the mysql package which was wrong, but apparently the new build is fixed. Thanks for testing it out.http://stackoverflow.com/questions/433276/svn-repository-split-problemComment by Tuminoid on Svn repository split problemTuminoid2009-01-19T17:17:31Z2009-01-19T17:17:31ZBump. Still not solved.http://stackoverflow.com/questions/437043/best-way-to-handle-a-large-download-site/437133#437133Comment by Tuminoid on Best way to handle a large download site?Tuminoid2009-01-12T22:19:32Z2009-01-12T22:19:32ZEh, the world is full websites that require you to login, then they allow you to access the content they provide. What is wrong with this basic, tested concept that makes you unable to use it? http://stackoverflow.com/questions/437043/best-way-to-handle-a-large-download-site/437133#437133Comment by Tuminoid on Best way to handle a large download site?Tuminoid2009-01-12T21:52:07Z2009-01-12T21:52:07ZSo you already filter based on IP, or logins, they can be applied to a webserver as well. You do it right now somehow also (unless its just who has the exe can download type of "auth"...), it can be applied with webserver, or webserver+login page?http://stackoverflow.com/questions/437049/web-based-license-activation/437065#437065Comment by Tuminoid on Web-based license activationTuminoid2009-01-12T21:38:42Z2009-01-12T21:38:42Z1. Email isn't necessarily manual thing, receiving and sending email programmatically is easy. 2. Just add a button to the help menu that says 'registration', which pops up a dialog with a text to explain its purpose and a button to fetch the key (info is checked on serverside)..http://stackoverflow.com/questions/433276/svn-repository-split-problem/433535#433535Comment by Tuminoid on Svn repository split problemTuminoid2009-01-12T07:18:12Z2009-01-12T07:18:12ZThis is still the "keep history of everything" solution.. I need a solution that replicates the spirit of the svndumpfilter solution :/http://stackoverflow.com/questions/433276/svn-repository-split-problem/433304#433304Comment by Tuminoid on Svn repository split problemTuminoid2009-01-11T19:24:22Z2009-01-11T19:24:22ZI can't seem to get it to work, can you add more specific commands to do that. It just skips the non-existent files, so I'm probably doing it wrong.
Btw, how is that different from replicating the repo and deleteting everything else besides my dir? I also want to get rid of non-related history etc?http://stackoverflow.com/questions/430742/is-there-a-free-version-control-server-provider-for-non-public-projects/430753#430753Comment by Tuminoid on Is there a free version control server provider for non-public projects?Tuminoid2009-01-10T14:41:22Z2009-01-10T14:41:22Z+1 for XP-dev, its awesome.http://stackoverflow.com/questions/426463/problem-with-openssl-library/428587#428587Comment by Tuminoid on Problem with OpenSSL libraryTuminoid2009-01-09T16:42:01Z2009-01-09T16:42:01ZThen please vote it up and accept.http://stackoverflow.com/questions/356666/identifier-for-win64-configuration-in-qmake/404803#404803Comment by Tuminoid on Identifier for win64 configuration in QmakeTuminoid2009-01-03T17:05:32Z2009-01-03T17:05:32ZOf course you can use different .pro files that include the common parts too, but personally I find that a pain in the...http://stackoverflow.com/questions/404774/why-library-name-gets-an-additional-0-in-its-name/405008#405008Comment by Tuminoid on Why library name gets an additional 0 in its name?Tuminoid2009-01-01T14:48:26Z2009-01-01T14:48:26ZI tested it and yes, commenting out version makes the 0 go away. You also gave good reasoning why it is there, so maybe its not that bad thing besides it only uses major version, the name isn't changing between 0.0.1 to 0.9.9 at all and thus, the "DLL hell" might just as well happen.. Thanks!