User shoosh - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T07:47:31Zhttp://stackoverflow.com/feeds/user/9611http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1826737/google-hack-databaseghdb/1826767#18267672Answer by shoosh for Google Hack Database(GHDB)shoosh2009-12-01T15:03:08Z2009-12-01T15:03:08Z<p>Ironically, <a href="http://johnny.ihackstuff.com/ghdb/" rel="nofollow">Let me google that for you</a></p>
<p>It seems to be a repository of strings that when fed to google possibly return hidden pages and the like. I'm assuming that you can use it in conjunction with <code>site:<a href="http://yourSiteHere.com" rel="nofollow">http://yourSiteHere.com</a></code> to test if such pages return from your web site.</p>
http://stackoverflow.com/questions/1823081/matrix-classes-directx-opengl/1823162#18231621Answer by shoosh for Matrix classes Directx & OpenGLshoosh2009-11-30T23:36:26Z2009-11-30T23:36:26Z<p>I'm assuming you're compiling this as C++.<br>
This:</p>
<pre><code>m[u,v] = t->worldtransform.matrix[v,u];
</code></pre>
<p>Probably doesn't do what you want it to do. in C++, a 2D array is indexed as <code>m[u][v]</code>.<br>
What this line actually does is use the <code>,</code> operator which evaluates to its statement, so <code>m[u,v]</code> actually returns the <code>float</code> of the <code>v</code> coordinates.</p>
<p>what you probably want to do is this:</p>
<pre><code>m[u + 4*v] = t->worldtransform.matrix[v + 4*u];
</code></pre>
http://stackoverflow.com/questions/1820607/how-to-spot-empty-parking-spaces/1820710#18207101Answer by shoosh for How to spot empty parking spaces?shoosh2009-11-30T16:02:49Z2009-11-30T16:02:49Z<p>Steps for spotting empty parking spaces from a video:</p>
<ul>
<li>Rent a sweat-shop in China</li>
<li>Hire 100 Chinese people, equip each with a work station.</li>
<li>For every 5 minute video segment, select a Chinese person in random and send him the video</li>
<li>Make some fancy GUI for marking empty parking spots.</li>
<li>Process the the output from the GUI and present it to the user.</li>
<li>Profit.</li>
</ul>
<p>Skills needed: Ability to run a sweat-shop.<br>
No reading required.</p>
<p>Also notice this solution is very scalable.</p>
http://stackoverflow.com/questions/1816552/where-does-c-standard-define-the-value-range-of-float-types/1816569#18165692Answer by shoosh for Where does C++ standard define the value range of float types?shoosh2009-11-29T19:55:20Z2009-11-29T19:55:20Z<p>The standard doesn't specify such things because they are often hardware dependent and change over time. While today 32 bits are considered a standard, in 10 years doing things in less than 64 bit may possibly seem distasteful.</p>
http://stackoverflow.com/questions/1815513/problem-with-a-volumetric-fog-in-opengl/1815564#18155640Answer by shoosh for Problem with a volumetric fog in OpenGLshoosh2009-11-29T13:34:36Z2009-11-29T13:34:36Z<p>Maybe there's no lighting in the scene?<br>
If all light sources are disabled, all objects are going to appear in a flat ambient color.<br>
Check to see what happens if you disable fog altogether. Does this still happen?</p>
http://stackoverflow.com/questions/1815172/is-it-possible-to-see-definition-of-qsignals-qslot-slot-signal-macros/1815261#18152613Answer by shoosh for Is it possible to see definition of Q_SIGNALS, Q_SLOT, SLOT(), SIGNAL() macros? (Qt)shoosh2009-11-29T11:13:53Z2009-11-29T11:13:53Z<p>With visual studio - right click the identifier you're interested in and choose "Go To Definition" or press F12.<br>
If you have Visual Assist, this can also be done with Alt+G when the VS mechanism doesn't work so well.</p>
http://stackoverflow.com/questions/1815202/c-bindings-to-jgoodies/1815209#18152091Answer by shoosh for C++ bindings to jGoodies?shoosh2009-11-29T10:39:43Z2009-11-29T10:39:43Z<p>QT is about as good as it gets AFAIK.</p>
<p>Binding a Java toolkit to C++ is a rather convoluted idea since in C++ you usually have a direct interface to the OS widgets. going full circle through Java is guaranteed to have uglier results.</p>
http://stackoverflow.com/questions/1814189/how-to-change-string-into-qstring/1814223#18142230Answer by shoosh for How to change string into QString?shoosh2009-11-29T00:10:40Z2009-11-29T00:10:40Z<p>Alternative way:</p>
<pre><code>std::string s = "This is an STL string";
QString qs = QString::fromAscii(s.data(), s.size());
</code></pre>
<p>This has the advantage of not using <code>.c_str()</code> which might the <code>std::string</code> to copy itself in case there is no place to add the <code>'\0'</code> at the end.</p>
http://stackoverflow.com/questions/1805949/how-to-improve-scanned-image-quality/1805974#18059741Answer by shoosh for How to improve scanned image quality?shoosh2009-11-26T22:36:49Z2009-11-26T22:36:49Z<p>You can try out <a href="http://www.youtube.com/watch?v=KUFkb0d1kbU" rel="nofollow">this technology</a>.</p>
http://stackoverflow.com/questions/1799070/what-might-cause-opengl-to-behave-differently-under-the-start-debugging-versus/1799293#17992930Answer by shoosh for What might cause OpenGL to behave differently under the "Start Debugging" versus "Start without debugging" options?shoosh2009-11-25T19:12:33Z2009-11-25T19:12:33Z<p>The most common thing that causes any program to behave differently while being debugged and not being debugged is using uninitialized variables and especially reading uninitialized memory. Check that you're not doing that.</p>
<p>Something more OpenGL specific - You might have some problems with flushing of commands. Try inserting <code>glFinish()</code> after drawing every frame.<br>
It might also be helpful to somehow really make sure that when the freeze occurs there are actually frames being rendered and not that the whole application is frozen. If there are its more likely that you have some bug in the logic since it seems that OpenGL does its job.</p>
http://stackoverflow.com/questions/1799106/can-i-decide-where-a-qaction-is-added-to-a-qmenubar/1799236#17992362Answer by shoosh for Can I decide where a Qaction is added to a Qmenubar shoosh2009-11-25T19:02:36Z2009-11-25T19:02:36Z<p>If you look at <code>QMenuBar</code> code you'll that it does this:</p>
<pre><code>QAction *QMenuBar::addAction(const QString &text, const QObject *receiver, const char* member)
{
QAction *ret = new QAction(text, this);
QObject::connect(ret, SIGNAL(triggered(bool)), receiver, member);
addAction(ret);
return ret;
}
</code></pre>
<p>which basically uses <code>QWidget::addAction()</code>. So it stands to reason that you can use <code>QWidget::insertAction()</code> yourself to do the same thing. <code>insertAction()</code> lets you specify before what <code>QAction</code> you want to add.</p>
http://stackoverflow.com/questions/477258/how-to-cheat-and-avoid-cheating-in-flash-games2How to cheat and avoid cheating in Flash games?shoosh2009-01-25T06:26:30Z2009-11-25T07:52:08Z
<p>I'm writing a small online flash game that keeps high scores of players. Obviously I'd like to keep the players from cheating and getting an arbitrarily high score. </p>
<p>What are the most common methods for cheating in flash games and what can I do to make it hard to use them?</p>
<p>**<em>hides</em></p>
http://stackoverflow.com/questions/1776062/how-can-i-retrieve-the-current-position-of-the-vertices-after-they-have-been-tran/1776118#17761181Answer by shoosh for how can I retrieve the current position of the vertices after they have been transformed?shoosh2009-11-21T17:27:23Z2009-11-25T07:15:42Z<p>GLU has the function <code>gluProject()</code> and <code>gluUnProject()</code>:</p>
<p><a href="http://www.opengl.org/sdk/docs/man/xhtml/gluProject.xml" rel="nofollow">http://www.opengl.org/sdk/docs/man/xhtml/gluProject.xml</a></p>
<p>If your platform doesn't have GLU you can always grab the code for <a href="http://www.mesa3d.org/" rel="nofollow">MESA</a> and see how it is implemented.</p>
http://stackoverflow.com/questions/1785402/compiled-matlab-why-does-my-application-hang-at-the-end1Compiled MATLAB: Why does my application hang at the end?shoosh2009-11-23T19:27:19Z2009-11-25T04:07:56Z
<p>I'm using MATLAB's deployment tool to compile a simple project which uses a mex library. The executable runs OK and does what it's supposed to do except that when it's supposed to finish, nothing happens. It just sits there.</p>
<p>When I'm compiling any other project, for instance the magic square example from the docs, it works OK. The executable finishes and exits.</p>
<p>I added a <code>disp('at end');</code> at the end of the .m file, and this line is indeed getting displayed so I know it got to the end of the .m file but it just doesn't exit the process.</p>
<p>Why does this happen?</p>
<p><hr></p>
<p>Edit:</p>
<p>In MATLAB it runs normally, returning after the <code>'at end'</code>. The code is way too long to include here. It does fairly normal stuff, other than using the mex library.</p>
http://stackoverflow.com/questions/1790417/matlab-deployment-add-files-to-source-control1Matlab deployment: add files to source control?shoosh2009-11-24T14:27:59Z2009-11-24T20:06:14Z
<p>I've created a deployment project which works rather well and now I want to add it to source control repository for others to use.<br>
The main problem I'm facing is that the <code>.prj</code> file which <code>deploytool</code> creates contains absolute paths which will not work on other computers. So far I've tried the following:</p>
<ul>
<li>Create the stand alone exe using just <code>mcc</code> without <code>deploytool</code>. This works great but I could find a way to create the final <code>_pkg.exe</code> which contains everything. mcc doesn't seem to be able to create this file and there doesn't seem to be any other tool which does. Is this really the case?</li>
<li>Edit the <code>.prj</code> file to include relative paths instead of absolute paths. This only works partially because the <code>.prj</code> file contains a section called <code>MATLABPath</code> which is always replaced with the current <code>setpath</code> of matlab. anyone which uses this file will have to check it out since it is being changed when used.</li>
<li>Find a way to generate the <code>.prj</code> file. the mcc documentation say: <code>Project files created using either mcc or deploytool are eligible to use this option.</code> suggesting there is a way to create a <code>.prj</code> file using <code>mcc</code> but I wasn't able to find how this can be done.</li>
</ul>
<p>Is there a solution to this situation?</p>
http://stackoverflow.com/questions/1788534/how-do-i-roll-out-a-matlab-app-for-others-to-use/1788577#17885773Answer by shoosh for How do I roll out a Matlab app for others to use?shoosh2009-11-24T08:08:55Z2009-11-24T08:08:55Z<p>If your co-workers don't have matlab, you can compile it and package it into a stand alone executable. the process is pretty much straight forward.<br>
To start, open the deployment tool with <code>deploytool</code> command, create a new project and drag your main .m file to the project. build it and then package it using the buttons at the top of the deployment tool.</p>
http://stackoverflow.com/questions/1779459/multiplication-program-using-recursionin-c/1779495#17794951Answer by shoosh for multiplication program using recursion(in C)shoosh2009-11-22T18:21:30Z2009-11-22T18:21:30Z<p>Alternative version:</p>
<pre><code>int mulInner(int a, int b, int c)
{
if (b == 0)
return a*c;
return mulInner(a, b-1, c+1);
}
int mul(int a, int b)
{
return multInner(a, b, 0);
}
</code></pre>
<p>Hey, he didn't say not to use the <code>operator*</code>...</p>
http://stackoverflow.com/questions/1778279/qobject-with-no-type/1778370#17783702Answer by shoosh for Q_Object with no type...shoosh2009-11-22T10:29:01Z2009-11-22T10:29:01Z<p>And, A QObject should inherit in some way from the class <code>QObject</code>...</p>
<p>Or was this not the case with QT3 ?</p>
http://stackoverflow.com/questions/1773817/where-to-start-with-chrome-os-development/1773914#17739148Answer by shoosh for Where To Start With Chrome OS Developmentshoosh2009-11-20T23:47:53Z2009-11-20T23:47:53Z<p>A good start would to be understand what Chrome OS is.</p>
http://stackoverflow.com/questions/1771847/what-if-i-dislike-c-standard-library/1771892#177189229Answer by shoosh for What if I dislike C++ Standard Library?shoosh2009-11-20T17:05:32Z2009-11-20T17:05:32Z<p>You are hereby given permission by the collective wisdom of the Internets to not use the standard library and invent the wheel on your own.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/964524/boostspirit-2-0-incomplete-docs2boost::spirit 2.0 incomplete docs?shoosh2009-06-08T11:51:12Z2009-11-18T23:52:53Z
<p>I've just completed the boost spirit 2.0 tutorial:<br />
<a href="http://www.boost.org/doc/libs/1_39_0/libs/spirit/doc/html/index.html" rel="nofollow">http://www.boost.org/doc/libs/1_39_0/libs/spirit/doc/html/index.html</a><br />
Only to find out that the rest of the promised documentation is completely missing.<br />
Specifically, I was really hoping for a page that contains all the available parsers and their attributes.</p>
<p>Does anybody know where I can find a complete reference?</p>
http://stackoverflow.com/questions/1756812/vss-move-file-from-one-folder-to-another0VSS: Move file from one folder to another?shoosh2009-11-18T15:32:14Z2009-11-18T15:56:52Z
<p>Is there a way in Visual SourceSafe to move a file from one directory to another while retaining its history?</p>
<p><hr></p>
<p><strong>Edit</strong><br>
I actually found a round about way to do this. First I drag the file I want to move to the directory I want to move it to, this creates a "Link" to the file there and then I "permanently destroy" the file in its original location.</p>
<p>Does this actually do what I thing it does?</p>
http://stackoverflow.com/questions/1752369/string-program-for-ice-cream-shop-edited-again/1752413#17524135Answer by shoosh for string program for ice cream shop (Edited again)shoosh2009-11-17T22:44:39Z2009-11-17T22:50:45Z<p><code>switch</code> doesn't work with strings. </p>
<p>You need to use the operator <code>==</code> to select the right choice like so:</p>
<pre><code>string count = // ... something
if (count == "choc") {
}
else if (count == "van") {
}
else if (count == "str") {
} // .. etc
</code></pre>
<p>A few other things: make sure you spell <code>string</code> with a consistent case, all lower case and no upper case. <code>String</code> is something different than <code>string</code>. </p>
<p>Make sure you surround strings with double quotes <code>""</code> and not single quotes <code>''</code>. single quotes are for single characters like <code>'a'</code> or <code>'b'</code>. double quotes are for multiple characters strings like <code>"abc"</code> and <code>"hello"</code> </p>
<p>Having the word <code>count</code> as both the function name and an argument name is probably a bad idea and will not compile because the same name means two different things.</p>
<p>You can't return multiple values from a function. writing something like <code>return a,b,c;</code> doesn't mean what you probably want it to mean. the comma (<code>,</code>) operator allows several expressions to be evaluated in the same statement and the result is the value of the last expression so writing <code>return 1,2,3;</code> is exactly the same as writing <code>return 3;</code></p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-200862Hidden Features of Visual Studio (2005-2008)?shoosh2008-09-19T08:10:54Z2009-11-14T20:20:37Z
<p>VS is such a massively big product that even after years of working with it I sometimes stumble upon a new/better way to do things or things I didn't even know possible.</p>
<p>For instance-</p>
<ul>
<li><p>Crtl-R,Ctrl-W - show white spaces. essential for editing python build scripts.</p></li>
<li><p>Under <code>"HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\Text Editor"</code>
Create a String called <a href="http://stackoverflow.com/questions/84209/vertical-line-after-a-certain-amount-characters-in-visual-studio">Guides</a> with the value "RGB(255,0,0), 80" to have a red line at column 80 in the text editor.</p></li>
</ul>
<p>What other hidden feature have you stumble upon?</p>
http://stackoverflow.com/questions/1729645/latex-output-does-not-update/1732606#17326063Answer by shoosh for LaTeX output does not updateshoosh2009-11-13T23:47:12Z2009-11-13T23:47:12Z<p><a href="http://www.google.com/search?q=%22GUI+framework+cannot+be+initialized%22&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla%3Aen-US%3Aofficial&client=firefox-a" rel="nofollow">Let me google that for you:</a> </p>
<p><a href="http://miktex.org/2.8/issues" rel="nofollow">http://miktex.org/2.8/issues</a> </p>
<p>First item.</p>
http://stackoverflow.com/questions/1729645/latex-output-does-not-update/1729765#17297651Answer by shoosh for LaTeX output does not updateshoosh2009-11-13T15:04:55Z2009-11-13T15:04:55Z<p>I'm not sure about <code>xcolor</code> but using some packages such as <code>hyperef</code> for instance means you now have to compile your latex two or three times before a change propagates to the final output.</p>
<p>Whenever I want to see the final output I compile atleast 3 times and only then look.</p>
<p>On every pass latex updates some intermediate file and then only after a few compiles your change ends up in the final output. This unfortunately is how LaTeX works.</p>
<p>You might get some indication about this from the warnings count. Usually after a change you'll get some warnings that will dwindle down after a few compiles. When the warnings cound stays the same it usually means you've hit the baseline where every intermediate output is updated with everything else.</p>
http://stackoverflow.com/questions/1716269/boostthread-exit-code0boost::thread exit code?shoosh2009-11-11T16:18:05Z2009-11-13T10:38:08Z
<p>What is the standard way to get an exit code from a boost::thread ?<br>
<a href="http://www.boost.org/doc/libs/1%5F40%5F0/doc/html/thread/thread%5Fmanagement.html" rel="nofollow">The docs</a> don't seem to touch on this subject at all.</p>
http://stackoverflow.com/questions/1708433/matlab-avoiding-memory-allocation-in-mex0Matlab: avoiding memory allocation in mexshoosh2009-11-10T14:39:35Z2009-11-12T01:05:04Z
<p>I'm trying to make my mex library avoid all memory allocation what so even.<br>
Until now, the mex got an input, created some matrices using <code>mxCreate...()</code> and returned this output.<br>
But now I'd like to modify this interface so that the mex itself would not do any allocations.<br>
What I had in mind is that the mexFunction will get as input the matrix to fill values into and return this very same matrix as an output. </p>
<p>Is this supposed to be possible?</p>
<p>The slight alarm that got me thinking if this is at all something I need to be doing is that the left hand arguments come to the mexFunction as const and the right hand argument are non-const. to return the input matrix as an output I'll need to remove this const.</p>
http://stackoverflow.com/questions/1700533/so-how-do-you-people-get-out-of-the-gumption-trap/1700554#17005543Answer by shoosh for So how do you people get out of the "Gumption Trap"?shoosh2009-11-09T11:54:17Z2009-11-09T11:54:17Z<p>.... by not knowing what a "Gumption Trap" is.. ?</p>
http://stackoverflow.com/questions/1699840/msvc-what-compiler-switches-affect-the-size-of-structs4MSVC: what compiler switches affect the size of structs?shoosh2009-11-09T08:55:20Z2009-11-09T09:58:50Z
<p>I have two DLLs compiled separately, one is compiled from Visual Studio 2008 and one is a mex file compiled from matlab.<br>
Both DLLs have a header file which they include. when I take the <code>sizeof()</code> the struct in one DLL it returns 48, and in the other it returns 64.
I've checked the <code>/Zp</code> switch and in both compilations it is set to <code>/Zp8</code>.<br>
What other compiler switches may affect the size of a struct?<br>
The struct is a simple POCO with no inheritance and no virtual functions.</p>
<p><hr></p>
<p><strong>Edit</strong> </p>
<p>The struct looks like this:</p>
<pre><code>class LIBSPEC SGeometry
{
public:
std::vector<IGeometry> m_i;
uint N;
uint n_im, n_s;
};
</code></pre>
<p>In debug it <code>sizeof()</code> returns 56 in both cases, in release, in the mex compilation it's 48, from VS it's 64.<br>
I can tell matlab the exact compiler options to use when compiling the mex so it's not it.</p>
<p><hr></p>
<p><strong>Edit</strong> </p>
<p>After checking with offsetof, it turns out that the difference is in the size of the <code>std::vector</code>. in one dll it's 32 and in the other it's 48.<br>
Both dlls are x64.</p>
http://stackoverflow.com/questions/1823081/matrix-classes-directx-opengl/1823162#1823162Comment by shoosh on Matrix classes Directx & OpenGLshoosh2009-11-30T23:42:10Z2009-11-30T23:42:10ZThe best thing you can do is debug it and make sure that the matrix you end up with after the transpose is actually the transposed matrix. look at it using the watch window and verify.http://stackoverflow.com/questions/983999/simple-3x3-matrix-inverse-code-c/984286#984286Comment by shoosh on Simple 3x3 matrix inverse code (C++)shoosh2009-11-29T13:10:08Z2009-11-29T13:10:08ZThis code actually gives you the TRANSPOSE of the inverse matrix. Check out the formula at the other answerhttp://stackoverflow.com/questions/1815202/c-bindings-to-jgoodies/1815209#1815209Comment by shoosh on C++ bindings to jGoodies?shoosh2009-11-29T11:14:40Z2009-11-29T11:14:40ZThanks is usually expressed with an upvote in this forum.http://stackoverflow.com/questions/1810960/how-to-create-a-plain-text-file-in-gw-basic-2-01Comment by shoosh on How to create a plain text file in GW-BASIC 2.01?shoosh2009-11-27T23:25:57Z2009-11-27T23:25:57Z+1 just for the pure WTF nature of this question.http://stackoverflow.com/questions/1802050/helo-my-name-isComment by shoosh on helo my name isshoosh2009-11-26T07:48:03Z2009-11-26T07:48:03ZSlim shady? ------http://stackoverflow.com/questions/1799070/what-might-cause-opengl-to-behave-differently-under-the-start-debugging-versus/1799116#1799116Comment by shoosh on What might cause OpenGL to behave differently under the "Start Debugging" versus "Start without debugging" options?shoosh2009-11-25T19:06:44Z2009-11-25T19:06:44Z"This would tend to indicate that it is using something from its environment or path such as reading..." Errrm.. no. This just means that the same exact thing happens when he executes the application from Visual studio and when he double clicks the exe. There's nothing particularly interesting about this fact.http://stackoverflow.com/questions/1799072/c-short-circuiting-of-booleans/1799103#1799103Comment by shoosh on C++ short-circuiting of booleansshoosh2009-11-25T18:52:46Z2009-11-25T18:52:46Zyou don't know that. You compiler might decide that A is always 1 for instance and completely discard that check.http://stackoverflow.com/questions/1790417/matlab-deployment-add-files-to-source-control/1792594#1792594Comment by shoosh on Matlab deployment: add files to source control?shoosh2009-11-24T21:13:41Z2009-11-24T21:13:41ZWow, maybe next time you can bother to actually read the question itself rather than just the tags.http://stackoverflow.com/questions/1785402/compiled-matlab-why-does-my-application-hang-at-the-end/1786440#1786440Comment by shoosh on Compiled MATLAB: Why does my application hang at the end?shoosh2009-11-24T07:07:18Z2009-11-24T07:07:18ZIt was the figures, thankshttp://stackoverflow.com/questions/1785402/compiled-matlab-why-does-my-application-hang-at-the-endComment by shoosh on Compiled MATLAB: Why does my application hang at the end?shoosh2009-11-23T22:07:59Z2009-11-23T22:07:59Zyes, infact I dohttp://stackoverflow.com/questions/1779459/multiplication-program-using-recursionin-c/1779495#1779495Comment by shoosh on multiplication program using recursion(in C)shoosh2009-11-22T18:22:49Z2009-11-22T18:22:49ZExtra credit: doesn't work with negative numbers!http://stackoverflow.com/questions/1779459/multiplication-program-using-recursionin-cComment by shoosh on multiplication program using recursion(in C)shoosh2009-11-22T18:17:16Z2009-11-22T18:17:16ZWinner of the most inappropriate use of recursion of 2009.http://stackoverflow.com/questions/1776691/oldest-code-in-a-typical-linux-distro/1776692#1776692Comment by shoosh on Oldest code in a typical Linux distroshoosh2009-11-21T20:58:20Z2009-11-21T20:58:20ZIs there really an int main() to the linux kernel? I somehow find it hard to believe...http://stackoverflow.com/questions/1770702/is-it-difficult-to-port-c-to-c-cli/1770732#1770732Comment by shoosh on Is it difficult to port C++ to C++/CLI?shoosh2009-11-20T14:31:18Z2009-11-20T14:31:18Z"C++\CLI is a super set of C++." -- not really. see multiple inheritance.http://stackoverflow.com/questions/1756812/vss-move-file-from-one-folder-to-anotherComment by shoosh on VSS: Move file from one folder to another?shoosh2009-11-18T16:01:55Z2009-11-18T16:01:55Z"Move file from one folder to another"