User CTT - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T12:30:17Z http://stackoverflow.com/feeds/user/40191 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1529414/vim-how-do-i-swap-two-characters/1529437#1529437 10 Answer by CTT for Vim: how do I swap two characters? CTT 2009-10-07T04:10:35Z 2009-10-07T04:16:11Z <p><kbd>x</kbd><kbd>p</kbd></p> <p>This swaps the current character with the next.</p> http://stackoverflow.com/questions/1430994/c-programming-logic-required/1431014#1431014 6 Answer by CTT for C programming logic required CTT 2009-09-16T04:53:28Z 2009-09-16T04:53:28Z <p>I'm not going to code your homework, but you may find the <a href="http://en.wikipedia.org/wiki/Doomsday%5FAlgorithm" rel="nofollow">Doomsday Algorithm</a> useful.</p> http://stackoverflow.com/questions/1408361/decimal-to-bcd-conversion/1408388#1408388 0 Answer by CTT for Decimal to BCD conversion CTT 2009-09-11T00:12:12Z 2009-09-11T00:12:12Z <p>Would something like this work for your conversion?</p> <pre><code>#include &lt;string&gt; #include &lt;bitset&gt; using namespace std; string dec_to_bin(unsigned long n) { return bitset&lt;numeric_limits&lt;unsigned long&gt;::digits&gt;(n).to_string&lt;char, char_traits&lt;char&gt;, allocator&lt;char&gt; &gt;(); } </code></pre> http://stackoverflow.com/questions/1342045/how-do-i-find-the-largest-int-in-a-stdsetint/1342077#1342077 15 Answer by CTT for How do I find the largest int in a std::set<int> ? CTT 2009-08-27T16:04:47Z 2009-08-27T16:10:54Z <p>What comparator are you using?</p> <p>For the default this will work:</p> <pre><code>if(!myset.empty()) *myset.rbegin(); else //the set is empty </code></pre> <p>This will also be constant time instead of linear like the max_element solution.</p> http://stackoverflow.com/questions/761826/what-language-i-e-php-ruby-on-rails-does-twitter-use/761832#761832 8 Answer by CTT for What language (i.e. PHP, Ruby on Rails) does Twitter use? CTT 2009-04-17T19:24:16Z 2009-04-17T19:24:16Z <p>Ruby on Rails for the frontend and scala for some of the backend: <a href="http://www.artima.com/scalazine/articles/twitter_on_scala.html" rel="nofollow">http://www.artima.com/scalazine/articles/twitter_on_scala.html</a></p> http://stackoverflow.com/questions/760790/is-it-legal-to-write-to-stdstring/760796#760796 9 Answer by CTT for Is it legal to write to std::string? CTT 2009-04-17T15:08:21Z 2009-04-17T15:08:21Z <p>std::string will be required to have contiguous storage with the new c++0x standard. Currently that is undefined behavior.</p> http://stackoverflow.com/questions/739241/python-date-ordinal-output/739301#739301 5 Answer by CTT for Python: Date Ordinal Output? CTT 2009-04-11T01:11:30Z 2009-04-11T01:11:30Z <p>Here's a more general solution:</p> <pre><code>def ordinal(n): if 10 &lt;= n % 100 &lt; 20: return str(n) + 'th' else: return str(n) + {1 : 'st', 2 : 'nd', 3 : 'rd'}.get(n % 10, "th") </code></pre> http://stackoverflow.com/questions/716477/join-list-of-lists-in-python/716482#716482 17 Answer by CTT for join list of lists in python CTT 2009-04-04T04:11:17Z 2009-04-04T04:11:17Z <pre><code>import itertools a = [["a","b"], ["c"]] print list(itertools.chain(*a)) </code></pre> http://stackoverflow.com/questions/711779/template-meta-programming-with-char-arrays-as-parameters/711854#711854 0 Answer by CTT for Template Meta-programming with Char Arrays as Parameters. CTT 2009-04-02T22:21:54Z 2009-04-02T22:21:54Z <p>You can't do that. From 14.3.2 in the standard:</p> <p>A template-argument for a non-type, non-template template-parameter shall be one of:</p> <ul> <li>an integral constant-expression of integral or enumeration type; or</li> <li>the name of a non-type template-parameter; or</li> <li>the address of an object or function with external linkage, including function templates and function template-ids but excluding non-static class members, expressed as &amp; id-expression where the &amp; is optional if the name refers to</li> <li>a function or array, or if the corresponding template-parameter is a reference; or</li> <li>a constant expression that evaluates to a null pointer value (4.10); or</li> <li>a constant expression that evaluates to a null member pointer value (4.11); or</li> <li>a pointer to member expressed as described in 5.3.1.</li> <li><strong>[ Note: A string literal (2.13.4) does not satisfy the requirements of any of these categories and thus is not an acceptable template-argument</strong></li> </ul> http://stackoverflow.com/questions/684475/c-how-to-copy-a-map-to-a-vector/684527#684527 4 Answer by CTT for C++ how to copy a map to a vector CTT 2009-03-26T04:31:53Z 2009-03-26T04:31:53Z <p>This should do what you want:</p> <pre><code>#include &lt;iostream&gt; #include &lt;vector&gt; #include &lt;map&gt; #include &lt;algorithm&gt; using namespace std; bool cmp(const pair&lt;int, int&gt; &amp;p1, const pair&lt;int, int&gt; &amp;p2) { return p1.second &lt; p2.second; } int main() { map&lt;int, int&gt; m; for(int i = 0; i &lt; 10; ++i) m[i] = i * -i; vector&lt;pair&lt;int, int&gt; &gt; v; copy(m.begin(), m.end(), back_inserter(v)); sort(v.begin(), v.end(), cmp); for(int i = 0; i &lt; v.size(); ++i) cout &lt;&lt; v[i].first &lt;&lt; " : " &lt;&lt; v[i].second &lt;&lt; endl; return 0; } </code></pre> http://stackoverflow.com/questions/647074/how-to-make-linux-c-gui-apps/647075#647075 9 Answer by CTT for How to make Linux C++ GUI apps CTT 2009-03-15T01:30:31Z 2009-03-15T01:30:31Z <p>I personally prefer QT as I prefer working with the signal/slots mechanism and just find it easy to develop applications quickly with it. Some of your other options would be wxWidgets and GTK+.</p> http://stackoverflow.com/questions/646169/changing-c-output-without-changing-the-main-function/646357#646357 6 Answer by CTT for Changing c++ output without changing the main() function CTT 2009-03-14T17:43:02Z 2009-03-14T17:43:02Z <p>Not as elegant as litb's, but an alternative:</p> <pre><code>#include &lt;iostream&gt; using namespace std; int foo() { cout &lt;&lt; "I Love You" &lt;&lt; endl; return cout.rdbuf(0); } int i = foo(); int main() { cout &lt;&lt; "Love" &lt;&lt; endl; } </code></pre> http://stackoverflow.com/questions/644920/allow-php-sessions-to-carry-over-to-subdomains/644934#644934 3 Answer by CTT for Allow php sessions to carry over to subdomains? CTT 2009-03-13T23:06:48Z 2009-03-13T23:06:48Z <p>Here are 3 options.</p> <p>Place this in your php.ini:</p> <pre><code>session.cookie_domain = ".example.com" </code></pre> <p>In your .htaccess:</p> <pre><code>php_value session.cookie_domain .example.com </code></pre> <p>As the first thing in your script:</p> <pre><code>ini_set('session.cookie_domain', '.example.com' ); </code></pre> http://stackoverflow.com/questions/643155/searching-for-a-string-somewhere-in-a-database/643268#643268 0 Answer by CTT for Searching for a string 'somewhere' in a database CTT 2009-03-13T15:33:34Z 2009-03-13T15:33:34Z <p>I've used variants of <a href="http://www.postgresonline.com/journal/index.php?/archives/69-How-to-determine-if-text-phrase-exists-in-a-table-column.html" rel="nofollow">this</a> in the past.</p> http://stackoverflow.com/questions/609411/how-to-create-multiple-objects-in-the-same-function-but-without-overwriting-each/609415#609415 0 Answer by CTT for How to create multiple objects in the same function but without overwriting each other? CTT 2009-03-04T06:18:25Z 2009-03-04T06:18:25Z <p>I would suggest a vector:</p> <pre><code>#include &lt;vector&gt; using namespace std; void foo() { vector&lt;int&gt; v; v.push_back(1); v.push_back(2); v.push_back(3); cout &lt;&lt; v[0] + v[1] &lt;&lt; endl; } </code></pre> http://stackoverflow.com/questions/334085/expression-engine-cms-with-sqlite/609112#609112 0 Answer by CTT for Expression Engine (CMS) with SQLite CTT 2009-03-04T03:22:03Z 2009-03-04T03:22:03Z <p>I don't know of any Expression Engine 1.6 that has been modified to support SQLite; however, the next version (2.0) is based on the CodeIgniter framework which has a DAL which supports many databases. Here is a <a href="http://expressionengine.com/forums/viewthread/76104/#379737" rel="nofollow">post</a> from an Ellis Labs employee confirming this. </p> http://stackoverflow.com/questions/588307/c-obtaining-milliseconds-time-on-linux-clock-doesnt-seem-to-work-properly/588377#588377 12 Answer by CTT for C++ obtaining milliseconds time on linux -- clock() doesn't seem to work properly CTT 2009-02-25T23:20:24Z 2009-02-25T23:20:24Z <pre><code>#include &lt;sys/time.h&gt; #include &lt;stdio.h&gt; #include &lt;unistd.h&gt; int main() { struct timeval start, end; long mtime, seconds, useconds; gettimeofday(&amp;start, NULL); usleep(2000); gettimeofday(&amp;end, NULL); seconds = end.tv_sec - start.tv_sec; useconds = end.tv_usec - start.tv_usec; mtime = ((seconds) * 1000 + useconds/1000.0) + 0.5; printf("Elapsed time: %ld milliseconds\n", mtime); return 0; } </code></pre> http://stackoverflow.com/questions/583821/how-do-i-return-hundreds-of-values-from-a-c-function/583838#583838 1 Answer by CTT for How do I return hundreds of values from a C++ function? CTT 2009-02-24T22:09:57Z 2009-02-24T22:09:57Z <p>One other option is boost::tuple: <a href="http://www.boost.org/doc/libs/1_38_0/libs/tuple/doc/tuple_users_guide.html" rel="nofollow">http://www.boost.org/doc/libs/1_38_0/libs/tuple/doc/tuple_users_guide.html</a></p> <pre><code>int x, y; boost::tie(x,y) = bar(); </code></pre> http://stackoverflow.com/questions/583216/run-a-linux-system-command-as-a-superuser-using-a-python-script/583236#583236 0 Answer by CTT for Run a linux system command as a superuser, using a python script CTT 2009-02-24T19:38:21Z 2009-02-24T19:38:21Z <pre><code>import os os.popen("sudo -S /etc/init.d/postifx reload", 'w').write("yourpassword") </code></pre> <p>This of course is almost always not a good idea as the password is in plain text.</p> http://stackoverflow.com/questions/582657/how-do-i-discover-the-structure-of-a-postgresql-database/582738#582738 4 Answer by CTT for How do I discover the structure of a PostgreSQL database? CTT 2009-02-24T17:39:20Z 2009-02-24T17:39:20Z <pre><code>SELECT table_name FROM information_schema.tables WHERE table_type = 'BASE TABLE' AND table_schema NOT IN ('pg_catalog', 'information_schema'); SELECT column_name FROM information_schema.columns WHERE table_name = 'YourTablesName'; </code></pre> <p>This page has some great information on retrieving information from information_schema: <a href="http://www.alberton.info/postgresql_meta_info.html" rel="nofollow">http://www.alberton.info/postgresql_meta_info.html</a></p> http://stackoverflow.com/questions/576677/how-do-i-skip-reading-a-line-in-a-file-in-c/576710#576710 6 Answer by CTT for How do I skip reading a line in a file in C++? CTT 2009-02-23T06:39:01Z 2009-02-24T17:23:52Z <p>Is this more like what you want?</p> <pre><code>#include &lt;iostream&gt; #include &lt;sstream&gt; #include &lt;fstream&gt; #include &lt;string&gt; #include &lt;algorithm&gt; using namespace std; int main() { fstream fin("myfile.txt"); string line; while(getline(fin, line)) { //the following line trims white space from the beginning of the string line.erase(line.begin(), find_if(line.begin(), line.end(), not1(ptr_fun&lt;int, int&gt;(isspace)))); if(line[0] == '#') continue; int data; stringstream(line) &gt;&gt; data; cout &lt;&lt; "Data: " &lt;&lt; data &lt;&lt; endl; } return 0; } </code></pre> http://stackoverflow.com/questions/576714/do-file-with-extension-bat-can-run-in-linux/576717#576717 2 Answer by CTT for do file with extension .bat can run in linux CTT 2009-02-23T06:43:29Z 2009-02-23T07:18:49Z <p>You'll need to convert it to a shell script as batch files are specific to windows. If you post the file someone may help you with the conversion.</p> <p>This works fine for me; what isn't working for you?</p> <pre><code>#!/bin/sh cd /your/directory echo $PWD </code></pre> http://stackoverflow.com/questions/575789/number-rows-not-column-id/575798#575798 0 Answer by CTT for Number rows not column id CTT 2009-02-22T21:07:11Z 2009-02-22T21:07:11Z <pre><code>$query = mysql_query(" SELECT * FROM comments ORDER BY comments.comment_date ASC"); $num = 1; while ($row = mysql_fetch_assoc($query)) { echo $num++; ....... } </code></pre> http://stackoverflow.com/questions/575290/which-browsers-claim-to-support-http-compression-but-are-actually-flaky/575331#575331 0 Answer by CTT for Which browsers claim to support HTTP compression but are actually flaky? CTT 2009-02-22T18:03:53Z 2009-02-22T18:03:53Z <p>The IE6 problem was that before IE6sp1 it could lose the first 2048 bytes of data in a compressed response: <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;Q312496" rel="nofollow">http://support.microsoft.com/default.aspx?scid=kb;en-us;Q312496</a></p> http://stackoverflow.com/questions/574305/what-goodies-are-present-in-unix-shells-sans-bash/574319#574319 4 Answer by CTT for What goodies are present in UNIX shells sans BASH? CTT 2009-02-22T04:13:34Z 2009-02-22T04:13:34Z <p>I'm partial to zsh (it's like a blend of ksh and bash). The <a href="http://zsh.sunsite.dk/Guide/zshguide.html" rel="nofollow">guide</a> has a nice overview of its features. This <a href="http://www.faqs.org/faqs/unix-faq/shell/shell-differences/" rel="nofollow">page</a> has a nice chart showing the availability of different features in different shells.</p> http://stackoverflow.com/questions/573464/array-representation-in-scheme/573475#573475 3 Answer by CTT for Array representation in scheme CTT 2009-02-21T18:02:05Z 2009-02-21T18:02:05Z <p>You're looking for vector.</p> <pre><code>(define arr (vector 1 2 3)) (define arr #(1 2 3)) </code></pre> http://stackoverflow.com/questions/572404/can-i-limit-users-to-a-specific-range-and-zoom-level-on-google-maps/572421#572421 2 Answer by CTT for Can I limit users to a specific range and zoom level on Google Maps? CTT 2009-02-21T05:36:20Z 2009-02-21T05:36:20Z <p>This method does what you want: <a href="http://econym.org.uk/gmap/range.htm" rel="nofollow">http://econym.org.uk/gmap/range.htm</a></p> http://stackoverflow.com/questions/571985/free-matlab-environment/571992#571992 7 Answer by CTT for free matlab environment CTT 2009-02-21T02:35:15Z 2009-02-21T02:35:15Z <p>Octave is mostly compatible with matlab: <a href="http://www.gnu.org/software/octave/" rel="nofollow">http://www.gnu.org/software/octave/</a></p> http://stackoverflow.com/questions/571890/container-for-quick-name-lookup/571899#571899 8 Answer by CTT for container for quick name lookup CTT 2009-02-21T01:38:01Z 2009-02-21T01:52:07Z <p>I would suggest tr1::unordered_map. It is implemented as a hashmap so it has an expected complexity of O(1) for lookups and a worst case of O(n). There is also a boost implementation if your compiler doesn't support tr1.</p> <pre><code>#include &lt;string&gt; #include &lt;iostream&gt; #include &lt;tr1/unordered_map&gt; using namespace std; int main() { tr1::unordered_map&lt;string, int&gt; table; table["One"] = 1; table["Two"] = 2; cout &lt;&lt; "find(\"One\") == " &lt;&lt; boolalpha &lt;&lt; (table.find("One") != table.end()) &lt;&lt; endl; cout &lt;&lt; "find(\"Three\") == " &lt;&lt; boolalpha &lt;&lt; (table.find("Three") != table.end()) &lt;&lt; endl; return 0; } </code></pre> http://stackoverflow.com/questions/570669/checking-if-a-double-or-float-is-nan-in-c/570687#570687 14 Answer by CTT for Checking if a double (or float) is nan in C++ CTT 2009-02-20T18:14:58Z 2009-02-20T18:14:58Z <p>There is an std::isnan if you compiler supports c99 extensions, but I'm not sure if mingw does.</p> <p>Here is a small function which should work if your compiler doesn't have the standard function:</p> <pre><code>bool custom_isnan(double var) { volatile double d = var; return d != d; } </code></pre> http://stackoverflow.com/questions/760790/is-it-legal-to-write-to-stdstring/760796#760796 Comment by CTT on Is it legal to write to std::string? CTT 2009-04-17T15:39:41Z 2009-04-17T15:39:41Z @Artyom: I don't know of any semi-current implementation that doesn't have contiguous storage. However, the extremely early releases of SGI's stl used storage that was similar to a deque. http://stackoverflow.com/questions/647074/how-to-make-linux-c-gui-apps/647075#647075 Comment by CTT on How to make Linux C++ GUI apps CTT 2009-03-15T02:33:19Z 2009-03-15T02:33:19Z I think that QGtkStyle, especially under QT4.5, blends in quite well with native gtk apps. http://stackoverflow.com/questions/646169/changing-c-output-without-changing-the-main-function/646357#646357 Comment by CTT on Changing c++ output without changing the main() function CTT 2009-03-14T20:18:48Z 2009-03-14T20:18:48Z It hides the output of &quot;Love&quot; by redirecting cout to nothing. It only prints &quot;I Love You&quot;. http://stackoverflow.com/questions/644920/allow-php-sessions-to-carry-over-to-subdomains/644934#644934 Comment by CTT on Allow php sessions to carry over to subdomains? CTT 2009-03-14T00:25:12Z 2009-03-14T00:25:12Z Very strange, I've used the those methods before and they work fine. Do you by chance have Suhosin installed, I remember there be a setting that needed to be changed to allow this? If you don't, can you post more info about your install (eg. apache, lighttpd, php version)? http://stackoverflow.com/questions/596223/how-does-quicksort-work/596227#596227 Comment by CTT on How does "quicksort" work? CTT 2009-02-27T19:24:48Z 2009-02-27T19:24:48Z Most implementations of std::sort are actually introsort. http://stackoverflow.com/questions/589076/when-is-it-not-a-good-idea-to-pass-by-reference Comment by CTT on When is it not a good idea to pass by reference? CTT 2009-02-26T04:20:03Z 2009-02-26T04:20:03Z Have you profiled and determined that this is a problem? http://stackoverflow.com/questions/588164/new-2nd-param-c Comment by CTT on new 2nd param, c++ CTT 2009-02-25T22:23:04Z 2009-02-25T22:23:04Z I think it was supposed to be &quot;Thing *pThing = new (getHeap(), getConstraint()) Thing(initval());&quot;. It's from #14 in C++ gotchas http://stackoverflow.com/questions/578719/yacc-only-applying-rule-once Comment by CTT on yacc, only applying rule once CTT 2009-02-23T18:39:57Z 2009-02-23T18:39:57Z Is this a requirement for an assignment? The standard shell allows you to redirect multiple times without an error, the output just goes in the last file. I'm not sure how realistic you want this to be but you're missing &gt;&gt; and &lt;&lt;. http://stackoverflow.com/questions/576677/how-do-i-skip-reading-a-line-in-a-file-in-c/576710#576710 Comment by CTT on How do I skip reading a line in a file in C++? CTT 2009-02-23T18:01:51Z 2009-02-23T18:01:51Z You're right, I've edited the example to trim the start of the string. http://stackoverflow.com/questions/570669/checking-if-a-double-or-float-is-nan-in-c/570687#570687 Comment by CTT on Checking if a double (or float) is nan in C++ CTT 2009-02-20T18:49:30Z 2009-02-20T18:49:30Z When doing that their is a chance the compiler will optimize the comparison out, always returning true. http://stackoverflow.com/questions/2933/an-executable-python-app/2937#2937 Comment by CTT on An executable Python app CTT 2009-02-20T07:28:29Z 2009-02-20T07:28:29Z It's worth noting that as of 4.5 QT will be under the LGPL. http://stackoverflow.com/questions/568365/what-anti-patterns-do-you-use-even-though-you-know-you-shouldnt/568369#568369 Comment by CTT on What anti patterns do you use even though you know you shouldn't? CTT 2009-02-20T05:13:51Z 2009-02-20T05:13:51Z You might want to edit that to say &quot;God&quot;. http://stackoverflow.com/questions/568218/dividing-two-ints-inside-a-double-variable-in-c/568226#568226 Comment by CTT on dividing two Ints inside a double variable in C++ CTT 2009-02-20T04:16:10Z 2009-02-20T04:16:10Z It obviously doesn't matter for this small example, but I would suggest using the more verbose static_cast&lt;double&gt; as it can be difficult to find c-style casts. http://stackoverflow.com/questions/567682/online-compilers-runtime-for-java-c-python-and-objc Comment by CTT on Online compilers/runtime for Java, C++, Python and ObjC? CTT 2009-02-19T23:20:28Z 2009-02-19T23:20:28Z Related thread: <a href="http://stackoverflow.com/questions/523568/any-online-compiler-you-know-for-c-or-other-languages" rel="nofollow" title="any online compiler you know for c or other languages">stackoverflow.com/questions/523568/&hellip;</a> http://stackoverflow.com/questions/567222/simple-prime-generator-in-python Comment by CTT on Simple Prime Generator in Python CTT 2009-02-19T21:34:58Z 2009-02-19T21:34:58Z If this isn't homework you might want to look into the Sieve of Eratosthenes: <a href="http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes" rel="nofollow">en.wikipedia.org/wiki/Sieve_of_Eratosthenes/&hellip;</a>