User Thomas - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T11:09:49Zhttp://stackoverflow.com/feeds/user/14637http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831818#18318181Answer by Thomas for Programmer Puzzle: Encoding a chess board state throughout a game.Thomas2009-12-02T09:47:06Z2009-12-02T09:47:06Z<p>Great puzzle!</p>
<p>I see that most people are storing the position of each piece. How about taking a more simple-minded approach, and <strong>storing the contents of each square</strong>? That takes care of promotion and captured pieces automatically.</p>
<p>And it allows for <strong>Huffman encoding</strong>. Actually, the initial frequency of pieces on the board is nearly perfect for this: half of the squares are empty, half of the remaining squares are pawns, etcetera.</p>
<p>Considering the frequency of each piece, I constructed a <a href="http://en.wikipedia.org/wiki/Huffman%5Fcoding#Basic%5Ftechnique" rel="nofollow">Huffman tree</a> on paper, which I won't repeat here. The result, where <code>c</code> stands for the colour (white = 0, black = 1):</p>
<ul>
<li>0 for empty squares</li>
<li>1c0 for pawn</li>
<li>1c100 for rook</li>
<li>1c101 for knight</li>
<li>1c110 for bishop</li>
<li>1c1110 for queen</li>
<li>1c1111 for king</li>
</ul>
<p>For the entire board in its initial situation, we have</p>
<ul>
<li>empty squares: 32 * 1 bit = 32 bits</li>
<li>pawns: 16 * 3 bits = 48 bits</li>
<li>rooks/knights/bishops: 12 * 5 bits = 60 bits</li>
<li>queens/kings: 4 * 6 bits = 24 bits</li>
</ul>
<p>Total: <strong>164 bits</strong> for the <em>initial</em> board state. Significantly less than the 235 bits of the currently highest voted answer. And it's only going to get smaller as the game progresses (except after a promotion).</p>
<p>I looked only at the position of the pieces on the board; additional state (whose turn, who has castled, en passant, repeating moves, etc.) will have to be encoded separately. Maybe another 16 bits at most, so <strong>180 bits</strong> for the entire game state.
Possible optimizations:</p>
<ul>
<li>Leaving out the less frequent pieces, and storing their position separately. But that won't help... replacing king and queen by an empty square saves 5 bits, which are exactly the 5 bits you need to encode their position in another way.</li>
<li>"No pawns on the back row" could easily be encoded by using a different Huffman table for the back rows, but I doubt it helps much. You'd probably still end up with the same Huffman tree.</li>
<li>"One white, one black bishop" can be encoded by introducing extra symbols that don't have the <code>c</code> bit, which can then be deduced from the square that the bishop is on. (Pawns promoted to bishops disrupt this scheme...)</li>
<li>Repetitions of empty squares could be run-length encoded by introducing extra symbols for, say, "2 empty squares in a row" and "4 empty squares in a row". But it is not so easy to estimate the frequency of those, and if you get it wrong, it's going to hurt rather than help.</li>
</ul>
http://stackoverflow.com/questions/1827522/default-encoding-for-variant-bstr-to-stdstring-conversion/1827653#18276530Answer by Thomas for Default encoding for variant bstr to std::string conversion Thomas2009-12-01T17:22:58Z2009-12-01T17:28:50Z<p><code>std::string</code> by itself doesn't specify/contain any encoding. It is merely a sequence of bytes. The same holds for <code>std::wstring</code>, which is merely a sequence of <code>wchar_t</code>s (double-byte words, on Win32).</p>
<p>By converting <code>_bstr_t</code> to a <code>char*</code> through its <a href="http://msdn.microsoft.com/en-us/library/btdzb8eb%28VS.71%29.aspx" rel="nofollow">operator char*</a>, you'll simply get a pointer to the raw data. <a href="http://msdn.microsoft.com/en-us/library/ms221069.aspx" rel="nofollow">According to MSDN</a>, this data consists of wide characters, that is, <code>wchar_t</code>s, which represent UTF-16.</p>
<p>I'm surprised that it actually works to construct a <code>std::string</code> from this; you should not get past the first zero byte (which occurs soon, if your original string is English).</p>
<p>But since <code>wstring</code> is a string of <code>wchar_t</code>, you should be able to construct one directly from the <code>_bstr_t</code>, as follows:</p>
<pre><code>_bstr_t tmp(vtNodeValue);
wstring strValue((wchar_t*)tmp, tmp.length());
</code></pre>
<p>(I'm not sure about <code>length</code>; is it the number of bytes or the number of characters?) Then, you'll have a <code>wstring</code> that's encoded in UTF-16 on which you can call <code>WideCharToMultiByte</code>.</p>
http://stackoverflow.com/questions/1827511/what-kind-of-maths-should-a-student-computer-science-be-familiar-with/1827529#18275294Answer by Thomas for What kind of Maths should a student Computer Science be familiar with?Thomas2009-12-01T17:00:09Z2009-12-01T17:00:09Z<p>It depends on what you want to do. Here are some fields that might be of use:</p>
<ul>
<li>2D/3D graphics: linear algebra.</li>
<li>Functional programming: lambda calculus, category theory.</li>
<li>Simulations, approximations: calculus, differential equations, numerical mathematics, computational fluid dynamics.</li>
<li>Pathfinding, routing: graph theory.</li>
<li>Logic programming: propositional logic.</li>
</ul>
http://stackoverflow.com/questions/1827396/c-function-merge-help/1827479#18274791Answer by Thomas for c function merge helpThomas2009-12-01T16:51:48Z2009-12-01T16:51:48Z<p>You have two different singly linked list types here. You could get around this by creating only a single type:</p>
<pre><code>typedef struct node {
struct node *next;
void *data;
} NODE;
</code></pre>
<p>and have <code>data</code> point to either a <code>char*</code> (or simply a <code>char</code>) or another struct with the three data fields from <code>THAT</code>. Of course you have to remember to <code>free()</code> the data in your <code>free_node()</code> function.</p>
http://stackoverflow.com/questions/1827338/parsing-a-fraction-to-double/1827366#18273663Answer by Thomas for Parsing a fraction to doubleThomas2009-12-01T16:34:29Z2009-12-01T16:34:29Z<p>It is not possible to override <code>double.Parse()</code> itself with an extension method, but you could create a <code>double.ParseFraction()</code> extension method instead. That seems a sensible way to do it.</p>
http://stackoverflow.com/questions/1825130/how-to-encourage-positive-developer-behavior-with-an-ide/1825193#18251933Answer by Thomas for How to encourage positive developer behavior with an IDE?Thomas2009-12-01T10:01:15Z2009-12-01T10:01:15Z<p><strong>Train your IDE, instead of being trained by it.</strong></p>
<p>Set up code formatting the way you (or your team) wants it. Heck, even disable it in cases where it makes sense. I've never seen an IDE align something like this with a sensible combination of tabs and spaces (where <code>\t</code> is obviously the tab character):</p>
<pre><code>{
\tcout << "Hello "
\t << (some + long + expression +
\t to_produce_the_word(world))
\t << endl;
}
</code></pre>
<p>In languages like Java, you cannot avoid boilerplate. The best option you have is to check generated code, ensuring that it is the same as what you'd have written by hand. Modify it as necessary. Configure your IDE to generate the exact code that you need, if possible. Eclipse is pretty good at this.</p>
http://stackoverflow.com/questions/1825130/how-to-encourage-positive-developer-behavior-with-an-ide/1825166#18251661Answer by Thomas for How to encourage positive developer behavior with an IDE?Thomas2009-12-01T09:56:25Z2009-12-01T09:56:25Z<p><strong>Know what's going on under the hood.</strong></p>
<p>Know that your IDE is actually invoking the compiler. Have some insight into the flags that it passes. Be able to invoke the compiler from the command line.</p>
<p>Know about the runtime system. Be aware of the flags that are used or needed to launch your program. Be able to launch the program from a command line.</p>
http://stackoverflow.com/questions/1798631/c-vector-of-class-object-pointers/1798693#17986932Answer by Thomas for c++ vector of class object pointersThomas2009-11-25T17:42:35Z2009-11-25T17:42:35Z<p>Once you have fixed the problem that others mentioned (storing a pointer to an object that's on the stack), you're going to run into another issue. A <code>vector</code> may reallocate, which results in its contents moving to another location.</p>
<p>The safe way to do this, then, is to store pointers in <em>both</em> vectors. Then, of course, you need to ensure that they get deleted... but that's C++ for you.</p>
http://stackoverflow.com/questions/1795936/how-can-i-get-the-text-in-a-jtable/1795960#17959600Answer by Thomas for How can I get the text in a JTable ?Thomas2009-11-25T10:17:57Z2009-11-25T10:17:57Z<p>You need to go through the <code>JTable</code>'s <a href="http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/table/TableModel.html" rel="nofollow"><code>TableModel</code></a>, accessible through the <code>getModel()</code> method. That has all the information you need.</p>
http://stackoverflow.com/questions/1790293/how-to-detect-if-a-bluetooth-hid-device-was-disconnected0How to detect if a Bluetooth HID device was disconnected?Thomas2009-11-24T14:07:07Z2009-11-24T15:57:05Z
<p>I'm using <code>CreateFile</code> to open an asynchronous file handle to a Bluetooth HID device on the system. The device will then start streaming data, and I use <code>ReadFile</code> to read data from the device. The problem is, that if the Bluetooth connection is dropped, <code>ReadFile</code> just keeps giving <code>ERROR_IO_PENDING</code> instead of reporting a failure.</p>
<p>I cannot rely on timeouts, because the device doesn't send any data if there is nothing to report. I do not want it to time out if the connection is still alive, but there is simply no data for a while.</p>
<p>Still, the Bluetooth manager (both the Windows one and the Toshiba one) do immediately notice that the connection was lost. So this information is somewhere inside the system; it's just not getting through to <code>ReadFile</code>.</p>
<p>I have available:</p>
<ul>
<li>the file handle (<code>HANDLE</code> value) to the device,</li>
<li>the path that was used to open that handle (but I don't want to attempt to open it another time, creating a new connection...)</li>
<li>an <code>OVERLAPPED</code> struct used for asynchronous <code>ReadFile</code>.</li>
</ul>
<p>I am not sure if this issue is Bluetooth-specific, HID-specific, or occurs with devices in general. Is there any way that I can either</p>
<ul>
<li>get <code>ReadFile</code> to return an error when the connection was dropped, or</li>
<li>detect <em>quickly</em> upon a timeout from <code>ReadFile</code> whether the connection is still alive (it needs to be fast because <code>ReadFile</code> is called at least 100 times per second), or</li>
<li>solve this problem in another way I haven't thought of?</li>
</ul>
http://stackoverflow.com/questions/1781906/cocreateinstance-returning-enointerface-even-though-interface-is-found/1781929#17819292Answer by Thomas for CoCreateInstance returning E_NOINTERFACE even though interface is foundThomas2009-11-23T09:12:54Z2009-11-23T13:18:23Z<p>Could this be the threading model problem that <a href="http://blogs.msdn.com/oldnewthing/archive/2004/12/13/281910.aspx" rel="nofollow">Raymond Chen wrote about</a>?</p>
<p>Edit in reply to the comment:</p>
<blockquote>
<p>If your threading model is incompatible with the threading model of the object you're creating, then COM marshalling kicks in. And if the marshalling stuff isn't there, the error that comes out is E_NOINTERFACE, because the marshalling interface is missing.</p>
</blockquote>
<p>It's more about threading models than about marshalling, really.</p>
http://stackoverflow.com/questions/1781935/get-stacktrace-from-stuck-python-process/1781955#17819551Answer by Thomas for Get stacktrace from stuck python processThomas2009-11-23T09:17:42Z2009-11-23T09:17:42Z<p>You could try to attach a debugger to the running process. See also <a href="http://stackoverflow.com/questions/47701/is-there-a-way-to-attach-a-debugger-to-a-multi-threaded-python-process">this question</a>.</p>
http://stackoverflow.com/questions/1781868/internal-implementation-of-java-util-hashmap-and-hashset/1781891#17818912Answer by Thomas for Internal implementation of java.util.HashMap and HashSetThomas2009-11-23T09:02:35Z2009-11-23T09:02:35Z<ol>
<li>Any <code>Object</code> in Java must have a <code>hashCode()</code> method; <code>HashMap</code> and <code>HashSet</code> are no execeptions. This hash code is used if you insert the hash map/set into another hash map/set.</li>
<li>Any class type can be used as the key in a <code>HashMap</code>/<code>HashSet</code>. This requires that the <code>hashCode()</code> method returns equal values for equal objects, and that the <code>equals()</code> method is implemented according to contract (reflexive, transitive, symmetric). The default implementations from <code>Object</code> already obey these contracts, but you may want to override them if you want value equality instead of reference equality.</li>
</ol>
http://stackoverflow.com/questions/1780106/how-to-render-multiple-textures-with-glsl/1780132#17801323Answer by Thomas for how to render multiple textures with GLSLThomas2009-11-22T21:56:01Z2009-11-22T21:56:01Z<p>You have bound texture unit 0 to the <code>sampler2D</code>, but you need to bind the texture to the texture unit as well. So that'd be simply a <code>glBindTexture</code> call.</p>
http://stackoverflow.com/questions/1770554/python-read-in-numric-csv-file-calc-mean-value-of-all-entries-in-each-row/1770573#17705730Answer by Thomas for Python - read in numric csv file, calc mean value of all entries in each rowThomas2009-11-20T13:56:55Z2009-11-20T14:02:30Z<pre><code>import sys
import csv
for line in csv.reader(sys.argv[1]):
print sum(line) / len(line)
</code></pre>
<p>Untested, but I think it's quite pretty.</p>
http://stackoverflow.com/questions/1769058/c-step-by-step-to-create-a-square/1769111#17691111Answer by Thomas for C++: step by step to create a square?Thomas2009-11-20T08:46:36Z2009-11-20T08:46:36Z<p>Of course there are faster ways, but if you really want to do it "step by step"...</p>
<pre><code>/* Compute the square of a number. Handling negative x left as an exercise. */
int square(int x) {
int result = 0;
for (int i = 0; i < x; ++i)
for (int j = 0; j < x; ++j)
++result;
return result;
}
</code></pre>
http://stackoverflow.com/questions/1761885/problem-with-copy-in-windows-7-and-my-c-program/1761894#17618948Answer by Thomas for Problem with copy in Windows 7 and my C# programThomas2009-11-19T09:07:11Z2009-11-19T09:07:11Z<p>Access is denied. That means you don't have access. No, really, it does.</p>
<p>User accounts in Windows 7 are limited (non-Administrator) by default, so your program cannot just write anywhere on the system (and that is a Good Thing (TM)). Try putting <code>Test.txt</code> in another directory, for example the temp directory (ask the system where that is).</p>
http://stackoverflow.com/questions/1761796/what-is-a-good-programming-language-to-learn-to-broaden-a-c-developers-mind/1761813#17618137Answer by Thomas for What is a good programming language to learn to broaden a C# developers mind?Thomas2009-11-19T08:48:16Z2009-11-19T08:48:16Z<p>Functional programming, definitely. A new paradigm lets you see your existing knowledge and experience in a new light, something that another imperative language can never do to such an extent.</p>
<p>If you want to stick to .NET, try F#. For something completely new, I'd recommend Haskell; there is a huge amount of beginner's information, and the community is wonderful and incredibly helpful.</p>
http://stackoverflow.com/questions/1761773/unix-send-mail-using-smtp-server/1761797#17617972Answer by Thomas for UNIX: Send Mail using SMTP Server Thomas2009-11-19T08:44:55Z2009-11-19T08:44:55Z<p>Contacting a remote SMTP server directly is not generally the way this is done. What, for example, if the server is temporarily unavailable?</p>
<p>The easier route is to run a local mailserver such as postfix, exim or qmail, and set it up to send mail through a remote server. Then you can just use command-line <code>sendmail</code> to send your e-mail.</p>
<p>In postfix on Ubuntu, I put the following in master.cf:</p>
<pre><code>relayhost = [smtp.my-isp.com]
smtp_generic_maps = hash:/etc/postfix/generic
</code></pre>
<p>You need the last line in case your ISP's mail server requires that all outgoing mail originates from <code>you@your-isp.com</code>. Then you'll also need /etc/postfix/generic like this:</p>
<pre><code>youruser@localhost you@your-isp.com
</code></pre>
<p>Add other variants (e.g. <code>youruser@yourbox.yourdomain</code>) as necessary.</p>
http://stackoverflow.com/questions/1747463/determining-existence-of-dll-before-using-it1Determining existence of DLL before using itThomas2009-11-17T08:58:53Z2009-11-17T09:44:00Z
<p>Using Visual C++ 2008 Express Edition. I'm linking my application with an import library (<code>.lib</code>) for a DLL that might or might not be present on the target system. Before you ask: I cannot distribute the DLL with my application.</p>
<p>If the DLL is not present, as soon as I call a function from the DLL (but not sooner!), I get a message like</p>
<blockquote>
<p>This application has failed to start because SomeLibrary.dll was not found. Re-installing the application may fix this problem.</p>
</blockquote>
<p>What I want to happen instead, is that the application detects that the DLL is not there, and simply disables functionality that depends on it. I could make a call to <code>LoadLibrary</code> and see whether it succeeded, but I'm not sure whether this is sufficient. Maybe the import library does more work behind the scenes?</p>
<p>Is a simple <code>LoadLibrary</code> call sufficient? If not, what else do I need to do? Can this even be done?</p>
<p><strong>Update</strong>: Of course I can use <code>LoadLibrary</code>, and then <code>GetProcAddress</code> for each of the functions I want to use. But that's a hassle, and I was hoping to avoid that and simply use the provided import library instead.</p>
http://stackoverflow.com/questions/1747457/opengl-es-how-to-keep-some-object-at-a-fixed-size/1747470#17474700Answer by Thomas for OpenGL ES - how to keep some object at a fixed size? Thomas2009-11-17T09:00:45Z2009-11-17T09:00:45Z<p>First call <code>glOrthof</code> with the settings you have, then draw the things that scale. Then make <em>another</em> call to <code>glOrthof</code> with different settings (after <code>glLoadIdentity</code> probably), and then draw the things that should not be scaled.</p>
http://stackoverflow.com/questions/1745166/override-or-shadow-a-method-with-extension-method/1745171#17451717Answer by Thomas for Override (or shadow) a method with extension method?Thomas2009-11-16T22:10:44Z2009-11-16T22:10:44Z<p>No. From <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" rel="nofollow">MSDN</a>:</p>
<blockquote>
<p>You can use extension methods to extend a class or interface, but not to override them. An extension method with the same name and signature as an interface or class method will never be called. At compile time, extension methods always have lower priority than instance methods defined in the type itself.</p>
</blockquote>
http://stackoverflow.com/questions/1745071/notepad-idl-syntax-highlighting/1745094#17450942Answer by Thomas for Notepad++ IDL Syntax Highlighting?Thomas2009-11-16T21:53:08Z2009-11-16T21:53:08Z<p>Googling for "notepad++ idl" gives me <a href="http://pocaracas.wordpress.com/2009/01/25/idl-syntax-highlighting-in-notepad/" rel="nofollow">http://pocaracas.wordpress.com/2009/01/25/idl-syntax-highlighting-in-notepad/</a></p>
http://stackoverflow.com/questions/1744967/in-c-is-there-a-way-to-write-custom-object-initializers-for-new-data-types/1744985#17449852Answer by Thomas for In C#, is there a way to write custom object initializers for new data-types?Thomas2009-11-16T21:31:19Z2009-11-16T21:31:19Z<p>Using a <a href="http://www.switchonthecode.com/tutorials/csharp-snippet-tutorial-the-params-keyword" rel="nofollow">variadic</a> local lambda <code>n</code> that simply calls your constructor, you could get it as short as:</p>
<pre><code>n(item1, n(item2, item3, item4), n(item5, item6))
</code></pre>
<p>Update: something like</p>
<pre><code>var n = (params Node[] nodes) => new Node(nodes);
</code></pre>
http://stackoverflow.com/questions/1735176/what-is-your-take-on-spdy-googles-experimental-http-replacement1What is your take on SPDY, Google's experimental HTTP replacement?Thomas2009-11-14T18:47:48Z2009-11-16T08:57:38Z
<p>Google is working on an experimental protocol called <a href="http://sites.google.com/a/chromium.org/dev/spdy/spdy-whitepaper" rel="nofollow">SPDY</a> (pronounced "speedy") that supposedly makes the web twice as fast.</p>
<p>The problems with HTTP that SPDY tries to address are:</p>
<ul>
<li>only a single request per connection (barring persistent connections)</li>
<li>the server cannot initiate a connection</li>
<li>headers are always uncompressed (N.B. cookies are sent in the header)</li>
<li>in a persistent connection, all headers are resent for each request</li>
<li>data is not always compressed</li>
<li>everything is in clear text</li>
</ul>
<p>SPDY addresses these issues by:</p>
<ul>
<li>allowing unlimited and interleaved requests through a single connection</li>
<li>prioritizing requests (controlled by the client only)</li>
<li>compressing headers</li>
<li>allowing the server to push resources to the client without the client's asking (e.g. you're going to want the CSS file anyway)</li>
<li>allowing the server to suggest in the header what other resources the client might want to request (so no need to wait for the HTML to be parsed before knowing)</li>
<li>always using SSL</li>
</ul>
<p>Google claim to have built a web server and modified Chrome browser that support this protocol and achieve 50% less time for page loads.</p>
<p>I think that the server push would be the killer feature. If a client will keep the connection open as long as the user is on that web site, developing web applications become much easier. It means that polling the server with AJAX requests is no longer necessary; theoretically, the server can just push new data to you when it becomes available. And when a client connection terminates, you know that the client has closed the web site (application).</p>
<p>Of course, if SPDY ever makes it to market, HTTP will still stick around for a long time. But it seems that both protocols are happy to live side by side. I would say it takes at least five years until a significant portion of the web will be available from spdy:// URLs.</p>
<p>So, the web twice as fast! Easier webapp development! More security! It sounds too good to be true. But is it really going to happen? Do you see any drawbacks?</p>
http://stackoverflow.com/questions/1737524/safely-executing-user-submitted-python-code-on-the-server/1737539#17375391Answer by Thomas for Safely executing user-submitted python code on the serverThomas2009-11-15T13:31:27Z2009-11-15T13:31:27Z<p>If you run the script as user <code>nobody</code> (on Linux), it can write practically nowhere and read no data that has its permissions set up properly. But it could still cause a DoS attack by, for example:</p>
<ul>
<li>filling up <code>/tmp</code></li>
<li>eating all RAM</li>
<li>eating all CPU</li>
</ul>
<p>Furthermore, outside network connections can be opened, etcetera etcetera. You can probably lock all these down with kernel limits, but you are bound to forget something.</p>
<p>So I think that a virtual machine with no access to the network or the real hard drive would be the only (reasonably) safe route. Perhaps the developers of the Python Challenge use <a href="http://www.linux-kvm.org/page/Main%5FPage" rel="nofollow">KVM</a> which is, in principle, "provided by the operating system".</p>
<p>For efficiency, you could run all submissions in the same VM. That saves you much overhead, and in the worst-case scenario they only hamper each other, but not your server.</p>
http://stackoverflow.com/questions/1735326/running-a-fastest-algorithm-competition/1735363#17353631Answer by Thomas for Running a fastest-algorithm competitionThomas2009-11-14T19:40:53Z2009-11-14T19:40:53Z<p>As to (2), the solution normally used in programming contests (where only correctness counts) is to provide a small, limited number of example inputs, but use a more comprehensive test set on the judging system.</p>
<p>As to (3), the number of JVM instructions used is not necessarily a good measure for speed. Some implementations may take longer or shorter for each instruction; and I haven't even started about jitting and other optimizations.</p>
http://stackoverflow.com/questions/1734145/is-this-specific-path-concatenation-in-perl-code-exploitable/1734370#17343708Answer by Thomas for Is this specific path concatenation in Perl code exploitable?Thomas2009-11-14T14:30:12Z2009-11-14T14:30:12Z<p>If a symlink exists inside the homedir to somewhere outside, you're still in trouble.</p>
http://stackoverflow.com/questions/1733879/why-doesnt-jruby-script-rb-out-txt-capture-java-errors/1733908#17339083Answer by Thomas for Why doesn't JRuby script.rb > out.txt capture Java errors?Thomas2009-11-14T10:33:33Z2009-11-14T10:33:33Z<p>The errors probably go to the error stream (stderr), not the output stream (stdout). So you need to redirect the error stream into the output stream:</p>
<pre><code>script.rb > out.txt 2>&1
</code></pre>
<p>Or, if you want just the errors:</p>
<pre><code>script.rb 2> errors.txt
</code></pre>
http://stackoverflow.com/questions/1731951/how-do-i-create-a-new-project-in-an-existing-git-hub-repository/1732036#17320364Answer by Thomas for How do I create a new project in an existing git-hub repository?Thomas2009-11-13T21:25:55Z2009-11-13T21:25:55Z<p>Okay, first a note on terminology: if the URL is <a href="http://github.com/foo/bar" rel="nofollow">http://github.com/foo/bar</a>, then</p>
<ul>
<li><code>foo</code> is the user</li>
<li><code>bar</code> is the repository</li>
</ul>
<p>Simply log in to github, go to your <a href="https://github.com/" rel="nofollow">Dashboard</a> (the link at the top right), and look at the bottom of the page. There's a link "<a href="http://github.com/repositories/new" rel="nofollow">Create a Repository</a>" there.</p>
<p>(I understand the reason for the question now. It took me a minute to find it, too...)</p>
http://stackoverflow.com/questions/1827522/default-encoding-for-variant-bstr-to-stdstring-conversion/1827653#1827653Comment by Thomas on Default encoding for variant bstr to std::string conversion Thomas2009-12-02T09:03:16Z2009-12-02T09:03:16ZFrom <a href="http://msdn.microsoft.com/en-us/library/btdzb8eb(VS.71).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a> : "These operators can be used to extract raw pointers to the encapsulated Unicode or multibyte BSTR object. The operators return the pointer to the actual internal buffer, so the resulting string cannot be modified."
No mention of any conversion. Is MSDN wrong?http://stackoverflow.com/questions/1827338/parsing-a-fraction-to-double/1827366#1827366Comment by Thomas on Parsing a fraction to doubleThomas2009-12-02T08:59:46Z2009-12-02T08:59:46ZAh, indeed. Never even thought of that...http://stackoverflow.com/questions/1827522/default-encoding-for-variant-bstr-to-stdstring-conversion/1827653#1827653Comment by Thomas on Default encoding for variant bstr to std::string conversion Thomas2009-12-01T17:28:27Z2009-12-01T17:28:27ZI know. Is the word "cast" inappropriate? Maybe "conversion operator" is better. I'll change it.http://stackoverflow.com/questions/1827420/why-does-my-class-not-work-properly-in-a-java-hashsetComment by Thomas on Why does my class not work properly in a Java HashSet?Thomas2009-12-01T16:47:13Z2009-12-01T16:47:13Z<code>HashSet.add</code> takes only one argument, not two. And your second code block contains a syntax error.http://stackoverflow.com/questions/1827406/how-much-does-the-order-of-case-labels-affect-the-efficiency-of-switch-statementsComment by Thomas on How much does the order of case labels affect the efficiency of switch statements?Thomas2009-12-01T16:45:37Z2009-12-01T16:45:37ZYes, it's micro-optimization for sure, and you should not normally worry about this. But if you're in a tight, time-consuming loop, who knows what it can do? I'm curious too... +1http://stackoverflow.com/questions/160328/what-works-of-entertaining-fiction-best-depict-programmers/160390#160390Comment by Thomas on What works of entertaining fiction best depict programmers?Thomas2009-12-01T16:41:25Z2009-12-01T16:41:25ZAnd they always beep and buzz, and blink "ACCESS DENIED" in fullscreen red letters...http://stackoverflow.com/questions/1827288/commercial-os-based-on-linux-legal-issues/1827354#1827354Comment by Thomas on Commercial OS based on Linux, legal issues.Thomas2009-12-01T16:36:33Z2009-12-01T16:36:33ZNuance: code you write yourself must be GPL-licensed if it is linked to other GPL code. See the GPL itself for details.http://stackoverflow.com/questions/1820489/creating-a-new-email-message-using-the-default-email-program/1825261#1825261Comment by Thomas on Creating a new email message using the default email programThomas2009-12-01T10:20:13Z2009-12-01T10:20:13ZI think that should be HTTP-style query parameters: <code>mailto:email@something?subject=subject&body=body&attachment=...</code>http://stackoverflow.com/questions/1825105/process-startiexplore-exe-immediately-fires-the-exited-event-after-launch-wComment by Thomas on Process.Start("IEXPLORE.EXE") immediately fires the Exited event after launch.. why??Thomas2009-12-01T10:11:53Z2009-12-01T10:11:53ZNote that users with a different default browser won't appreciate that you open IE. You could try just passing the URL to <code>Process.Start</code>, but ensure that <code>UseShellExecute</code> is set. Of course, this does complicate checking whether the browser exited...http://stackoverflow.com/questions/1818641/why-dont-win32-api-functions-have-overloads-and-instead-use-ex-as-suffixComment by Thomas on Why don't win32 API functions have overloads and instead use Ex as suffix?Thomas2009-12-01T10:04:45Z2009-12-01T10:04:45ZC/C++ is not a language. The Windows API is a C API.http://stackoverflow.com/questions/1824937/how-do-you-manage-a-large-software-project-you-are-developing-all-alone/1824946#1824946Comment by Thomas on How do you manage a large software project you are developing all alone?Thomas2009-12-01T09:52:16Z2009-12-01T09:52:16ZObviously, comments (of the good kind) are important. But in a single-developer project they are certainly not <i>more</i> important than in a multi-developer project.http://stackoverflow.com/questions/90032/reasons-not-to-use-django/90046#90046Comment by Thomas on Reasons not to use djangoThomas2009-12-01T09:10:14Z2009-12-01T09:10:14ZAlternating row colours in a table, for example, would hardly count as Logic. Or colouring fields red that haven't been filled correctly. Maybe not the best examples, but at any rate, there are cases where the particular presentation has little to do with Logic.http://stackoverflow.com/questions/1798631/c-vector-of-class-object-pointers/1798693#1798693Comment by Thomas on c++ vector of class object pointersThomas2009-11-26T17:21:46Z2009-11-26T17:21:46ZWith that code, no problem. If your vectors store pointers, then the pointer itself gets duplicated. If they store the objects themselves, those get duplicated; but then, of course, modifications to one don't show up in the other.
I think any modification of a <code>vector</code> can cause reallocation. In practice, shrinking the vector doesn't cause a shrinking of its capacity (in libc++), but I'm not certain whether this is standardized behaviour.http://stackoverflow.com/questions/1790293/how-to-detect-if-a-bluetooth-hid-device-was-disconnected/1790995#1790995Comment by Thomas on How to detect if a Bluetooth HID device was disconnected?Thomas2009-11-24T18:13:12Z2009-11-24T18:13:12ZI didn't solve it in exactly this way, but you did put me on the right track. I configured the device to send me continuous reports now, even if nothing changed. If I hear nothing from it for two seconds, I assume that it disconnected.http://stackoverflow.com/questions/1789178/can-you-program-a-pure-gpu-game/1789247#1789247Comment by Thomas on Can you program a pure GPU game?Thomas2009-11-24T10:46:25Z2009-11-24T10:46:25Z"Floating integers"?