User CTT - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T12:30:17Zhttp://stackoverflow.com/feeds/user/40191http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1529414/vim-how-do-i-swap-two-characters/1529437#152943710Answer by CTT for Vim: how do I swap two characters?CTT2009-10-07T04:10:35Z2009-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#14310146Answer by CTT for C programming logic requiredCTT2009-09-16T04:53:28Z2009-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#14083880Answer by CTT for Decimal to BCD conversionCTT2009-09-11T00:12:12Z2009-09-11T00:12:12Z<p>Would something like this work for your conversion?</p>
<pre><code>#include <string>
#include <bitset>
using namespace std;
string dec_to_bin(unsigned long n)
{
return bitset<numeric_limits<unsigned long>::digits>(n).to_string<char, char_traits<char>, allocator<char> >();
}
</code></pre>
http://stackoverflow.com/questions/1342045/how-do-i-find-the-largest-int-in-a-stdsetint/1342077#134207715Answer by CTT for How do I find the largest int in a std::set<int> ?CTT2009-08-27T16:04:47Z2009-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#7618328Answer by CTT for What language (i.e. PHP, Ruby on Rails) does Twitter use?CTT2009-04-17T19:24:16Z2009-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#7607969Answer by CTT for Is it legal to write to std::string?CTT2009-04-17T15:08:21Z2009-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#7393015Answer by CTT for Python: Date Ordinal Output?CTT2009-04-11T01:11:30Z2009-04-11T01:11:30Z<p>Here's a more general solution:</p>
<pre><code>def ordinal(n):
if 10 <= n % 100 < 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#71648217Answer by CTT for join list of lists in pythonCTT2009-04-04T04:11:17Z2009-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#7118540Answer by CTT for Template Meta-programming with Char Arrays as Parameters.CTT2009-04-02T22:21:54Z2009-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 & id-expression where the & 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#6845274Answer by CTT for C++ how to copy a map to a vectorCTT2009-03-26T04:31:53Z2009-03-26T04:31:53Z<p>This should do what you want:</p>
<pre><code>#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;
bool cmp(const pair<int, int> &p1, const pair<int, int> &p2)
{
return p1.second < p2.second;
}
int main()
{
map<int, int> m;
for(int i = 0; i < 10; ++i)
m[i] = i * -i;
vector<pair<int, int> > v;
copy(m.begin(), m.end(), back_inserter(v));
sort(v.begin(), v.end(), cmp);
for(int i = 0; i < v.size(); ++i)
cout << v[i].first << " : " << v[i].second << endl;
return 0;
}
</code></pre>
http://stackoverflow.com/questions/647074/how-to-make-linux-c-gui-apps/647075#6470759Answer by CTT for How to make Linux C++ GUI appsCTT2009-03-15T01:30:31Z2009-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#6463576Answer by CTT for Changing c++ output without changing the main() functionCTT2009-03-14T17:43:02Z2009-03-14T17:43:02Z<p>Not as elegant as litb's, but an alternative:</p>
<pre><code>#include <iostream>
using namespace std;
int foo()
{
cout << "I Love You" << endl;
return cout.rdbuf(0);
}
int i = foo();
int main()
{
cout << "Love" << endl;
}
</code></pre>
http://stackoverflow.com/questions/644920/allow-php-sessions-to-carry-over-to-subdomains/644934#6449343Answer by CTT for Allow php sessions to carry over to subdomains?CTT2009-03-13T23:06:48Z2009-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#6432680Answer by CTT for Searching for a string 'somewhere' in a databaseCTT2009-03-13T15:33:34Z2009-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#6094150Answer by CTT for How to create multiple objects in the same function but without overwriting each other?CTT2009-03-04T06:18:25Z2009-03-04T06:18:25Z<p>I would suggest a vector:</p>
<pre><code>#include <vector>
using namespace std;
void foo()
{
vector<int> v;
v.push_back(1);
v.push_back(2);
v.push_back(3);
cout << v[0] + v[1] << endl;
}
</code></pre>
http://stackoverflow.com/questions/334085/expression-engine-cms-with-sqlite/609112#6091120Answer by CTT for Expression Engine (CMS) with SQLiteCTT2009-03-04T03:22:03Z2009-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#58837712Answer by CTT for C++ obtaining milliseconds time on linux -- clock() doesn't seem to work properlyCTT2009-02-25T23:20:24Z2009-02-25T23:20:24Z<pre><code>#include <sys/time.h>
#include <stdio.h>
#include <unistd.h>
int main()
{
struct timeval start, end;
long mtime, seconds, useconds;
gettimeofday(&start, NULL);
usleep(2000);
gettimeofday(&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#5838381Answer by CTT for How do I return hundreds of values from a C++ function?CTT2009-02-24T22:09:57Z2009-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#5832360Answer by CTT for Run a linux system command as a superuser, using a python scriptCTT2009-02-24T19:38:21Z2009-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#5827384Answer by CTT for How do I discover the structure of a PostgreSQL database?CTT2009-02-24T17:39:20Z2009-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#5767106Answer by CTT for How do I skip reading a line in a file in C++?CTT2009-02-23T06:39:01Z2009-02-24T17:23:52Z<p>Is this more like what you want?</p>
<pre><code>#include <iostream>
#include <sstream>
#include <fstream>
#include <string>
#include <algorithm>
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<int, int>(isspace))));
if(line[0] == '#') continue;
int data;
stringstream(line) >> data;
cout << "Data: " << data << endl;
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/576714/do-file-with-extension-bat-can-run-in-linux/576717#5767172Answer by CTT for do file with extension .bat can run in linuxCTT2009-02-23T06:43:29Z2009-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#5757980Answer by CTT for Number rows not column idCTT2009-02-22T21:07:11Z2009-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#5753310Answer by CTT for Which browsers claim to support HTTP compression but are actually flaky?CTT2009-02-22T18:03:53Z2009-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#5743194Answer by CTT for What goodies are present in UNIX shells sans BASH?CTT2009-02-22T04:13:34Z2009-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#5734753Answer by CTT for Array representation in schemeCTT2009-02-21T18:02:05Z2009-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#5724212Answer by CTT for Can I limit users to a specific range and zoom level on Google Maps?CTT2009-02-21T05:36:20Z2009-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#5719927Answer by CTT for free matlab environmentCTT2009-02-21T02:35:15Z2009-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#5718998Answer by CTT for container for quick name lookupCTT2009-02-21T01:38:01Z2009-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 <string>
#include <iostream>
#include <tr1/unordered_map>
using namespace std;
int main()
{
tr1::unordered_map<string, int> table;
table["One"] = 1;
table["Two"] = 2;
cout << "find(\"One\") == " << boolalpha << (table.find("One") != table.end()) << endl;
cout << "find(\"Three\") == " << boolalpha << (table.find("Three") != table.end()) << endl;
return 0;
}
</code></pre>
http://stackoverflow.com/questions/570669/checking-if-a-double-or-float-is-nan-in-c/570687#57068714Answer by CTT for Checking if a double (or float) is nan in C++CTT2009-02-20T18:14:58Z2009-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#760796Comment by CTT on Is it legal to write to std::string?CTT2009-04-17T15:39:41Z2009-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#647075Comment by CTT on How to make Linux C++ GUI appsCTT2009-03-15T02:33:19Z2009-03-15T02:33:19ZI 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#646357Comment by CTT on Changing c++ output without changing the main() functionCTT2009-03-14T20:18:48Z2009-03-14T20:18:48ZIt hides the output of "Love" by redirecting cout to nothing. It only prints "I Love You".http://stackoverflow.com/questions/644920/allow-php-sessions-to-carry-over-to-subdomains/644934#644934Comment by CTT on Allow php sessions to carry over to subdomains?CTT2009-03-14T00:25:12Z2009-03-14T00:25:12ZVery 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#596227Comment by CTT on How does "quicksort" work? CTT2009-02-27T19:24:48Z2009-02-27T19:24:48ZMost implementations of std::sort are actually introsort.http://stackoverflow.com/questions/589076/when-is-it-not-a-good-idea-to-pass-by-referenceComment by CTT on When is it not a good idea to pass by reference?CTT2009-02-26T04:20:03Z2009-02-26T04:20:03ZHave you profiled and determined that this is a problem?http://stackoverflow.com/questions/588164/new-2nd-param-cComment by CTT on new 2nd param, c++CTT2009-02-25T22:23:04Z2009-02-25T22:23:04ZI think it was supposed to be "Thing *pThing = new (getHeap(), getConstraint()) Thing(initval());". It's from #14 in C++ gotchashttp://stackoverflow.com/questions/578719/yacc-only-applying-rule-onceComment by CTT on yacc, only applying rule onceCTT2009-02-23T18:39:57Z2009-02-23T18:39:57ZIs 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 >> and <<.http://stackoverflow.com/questions/576677/how-do-i-skip-reading-a-line-in-a-file-in-c/576710#576710Comment by CTT on How do I skip reading a line in a file in C++?CTT2009-02-23T18:01:51Z2009-02-23T18:01:51ZYou'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#570687Comment by CTT on Checking if a double (or float) is nan in C++CTT2009-02-20T18:49:30Z2009-02-20T18:49:30ZWhen 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#2937Comment by CTT on An executable Python appCTT2009-02-20T07:28:29Z2009-02-20T07:28:29ZIt'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#568369Comment by CTT on What anti patterns do you use even though you know you shouldn't?CTT2009-02-20T05:13:51Z2009-02-20T05:13:51ZYou might want to edit that to say "God".http://stackoverflow.com/questions/568218/dividing-two-ints-inside-a-double-variable-in-c/568226#568226Comment by CTT on dividing two Ints inside a double variable in C++ CTT2009-02-20T04:16:10Z2009-02-20T04:16:10ZIt obviously doesn't matter for this small example, but I would suggest using the more verbose static_cast<double> as it can be difficult to find c-style casts.http://stackoverflow.com/questions/567682/online-compilers-runtime-for-java-c-python-and-objcComment by CTT on Online compilers/runtime for Java, C++, Python and ObjC?CTT2009-02-19T23:20:28Z2009-02-19T23:20:28ZRelated 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/…</a>http://stackoverflow.com/questions/567222/simple-prime-generator-in-pythonComment by CTT on Simple Prime Generator in PythonCTT2009-02-19T21:34:58Z2009-02-19T21:34:58ZIf 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/…</a>