User aib - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T14:16:45Z http://stackoverflow.com/feeds/user/1088 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1817196/gcc-g-error-when-compiling-large-file/1817272#1817272 0 Answer by aib for gcc/g++: error when compiling large file aib 2009-11-30T00:21:40Z 2009-11-30T00:21:40Z <p>To complement some of the answers here, you may be better off generating a binary object file and linking it directly -- as opposed to compiling files consisting of <code>const char[]</code>'s.</p> <p>I had a similar problem working with gcc lately. (Around 60 MB of PNG data split into some 100 header files.) Including them all is the worst option: The amount of memory needed seems to grow exponentially with the size of the compilation unit.</p> http://stackoverflow.com/questions/1817189/creating-a-repeatable-random-looking-distribution-of-objects-in-flash/1817229#1817229 0 Answer by aib for Creating a repeatable, random looking distribution of objects in Flash aib 2009-11-30T00:05:19Z 2009-11-30T00:11:07Z <p>The key to this is having a <a href="http://en.wikipedia.org/wiki/Pseudorandom%5Fnumber%5Fgenerator" rel="nofollow">PRNG</a> that you can set the seed value of.</p> <p>I don't think AS3 has any way to set the seed for Math.random(), but a quick web search turned up a few results for custom PRNGs that do.</p> <p>As for the distribution, you have to play around more. What didn't you like about 'circular distribution'?</p> <p>Bear in mind that you can use a lot of different distributions of random numbers --other than uniform-- using a uniform distribution and some function.</p> http://stackoverflow.com/questions/1812152/c-stdlib-hs-on-c-and-malloc-realloc/1812202#1812202 0 Answer by aib for C stdlib .h's on C++ and malloc/realloc aib 2009-11-28T10:34:49Z 2009-11-28T10:34:49Z <p>c&lt;lib&gt;, which roughly encloses &lt;lib&gt;.h in a <code>namespace std { }</code>, is a standard feature of C++. See §17.4.1.2 if you have access to either standard.</p> <p>This is not an experimental feature at all -- what header file is giving you the compatibility problems?</p> <p>Using malloc et al. is fine, but be sure never to mix them with new/delete. (e.g. don't <code>delete</code> a <code>malloc()</code>'ed buffer.)</p> http://stackoverflow.com/questions/170097/adding-gdb-to-mingw/170162#170162 6 Answer by aib for Adding gdb to MinGW aib 2008-10-04T11:20:33Z 2009-11-26T09:26:06Z <p>The <em>Current Release</em> (5.2.1) version of gdb at the <a href="http://sourceforge.net/project/showfiles.php?group%5Fid=2435&amp;package%5Fid=20507" rel="nofollow">project files page</a> has always worked for me. The download is a stand-alone .exe, you don't need anything else.</p> <p>But I'll bet the .exe in the 6.8 package will work, too. I'd try using just the .exe, and then if there are problems, try extracting the other files from the 6.8 package. (Though that may cause problems with the rest of the MinGW installation.)</p> <p>Update: There seems to be a 7.something version. I haven't tested it thoroughly, but it seems to work, even with gcc 3.</p> http://stackoverflow.com/questions/1802355/call-back-functions/1802438#1802438 1 Answer by aib for Call Back Functions aib 2009-11-26T09:02:23Z 2009-11-26T09:10:37Z <p>Analogy?</p> <p>Take a look here for a brief explanation of callback functions:<br> <a href="http://stackoverflow.com/questions/142789/what-is-a-callback-in-c-and-how-are-they-implemented/">What is a “callback” in C and how are they implemented?</a></p> <p>Using a timer with a callback would be saying 'call function x every y seconds' and with a system that supports multitasking, that function would be called every y seconds in a second thread of execution, no matter what the original function might be doing.</p> <p>Edit: As has been suggested in another answer, the system might not create a second thread for you, in which case you'd have to create the thread yourself and set up the callback from that thread.</p> <p>Edit: In Windows, you can use the <a href="http://msdn.microsoft.com/en-us/library/ms644906%28VS.85%29.aspx" rel="nofollow">SetTimer</a> function. It will post a WM_TIMER message to your window's message queue, which your message loop might handle itself or hand over to the default message procedure to call a callback function you've specified. I'm not sure what happens if you don't have a window, but give it a try.</p> http://stackoverflow.com/questions/1802351/creating-a-hotmail-account-from-c/1802394#1802394 2 Answer by aib for Creating a hotmail account from C# aib 2009-11-26T08:54:07Z 2009-11-26T08:54:07Z <p>I'll take a wild guess here and say that bot-created accounts might be against their ToS.</p> <p>You might be better off asking the users to create an account for themselves, or helping out a little bit by sending them to the register page or display it in a browser component inside the application, etc.</p> http://stackoverflow.com/questions/27220/how-to-convert-stdstring-to-lpcwstr-in-c-unicode/27257#27257 4 Answer by aib for How to convert std::string to LPCWSTR in C++ (Unicode) aib 2008-08-26T02:06:55Z 2009-11-17T14:17:10Z <p>A simple google search yields:</p> <p><a href="http://social.msdn.microsoft.com/Forums/en/Vsexpressvc/thread/0f749fd8-8a43-4580-b54b-fbf964d68375" rel="nofollow">MSDN: Convert std::string to LPCWSTR (best way in c++)</a></p> http://stackoverflow.com/questions/1749079/how-do-you-actually-use-a-c-library/1749169#1749169 1 Answer by aib for How do you actually use a C library? aib 2009-11-17T14:14:54Z 2009-11-17T14:14:54Z <p>There are two kinds of libraries: static and dynamic (or shared.)</p> <p>Static libraries come in an object format and you link them directly into your application.</p> <p>Shared or dynamic libraries reside in a seperate file (.dll or .so) which must be present at the time your application is run. They also come with object files you must link against your application, but in this case they contain nothing more than stubs that find and call the runtime binary (the .dll or the .so).</p> <p>In either case, you must have some header files containing the signatures (declarations) of the library functions, else your code won't compile.</p> <p>Some 'libraries' are header-only and you need do nothing more than include them. Some consist of header and source files. In that case you should compile and link the sources against your application just as you would do with a source file you wrote.</p> http://stackoverflow.com/questions/925981/overlaying-on-a-3d-fullscreen-application 1 Overlaying on a 3D fullscreen application aib 2009-05-29T13:32:12Z 2009-11-16T18:11:33Z <p>I want to display some custom graphics on top of a 3rd party fullscreen Windows application.</p> <p>Have you played any Steam games? It has an executable, GameOverlayUI.exe that lets you access Steam windows from within a game. (The GUI elements look custom-drawn, I don't know if that is a necessity; but they look exactly the same inside a game as they do on the desktop.) It even goes as far to 'dim' the game graphics in the background.</p> <p>I'm wondering how one could go about writing such an application.</p> <p>I'm also wondering how broad the scope of solutions would be. Could you use one method for all OpenGL applications? For all Direct3D minus DirectDraw applications? For all fullscreen Windows applications?</p> <p>I'm looking for more 'modern' and generic solutions - overlaying a command prompt or a 320x240 indexed color application isn't a concern.</p> <p>Edit: Some clarification: The fullscreen application isn't mine. It can be anything. Most probably, it will be a 3D game. I want to display, say a digital clock in the bottom right corner of the screen, on top of the game graphics. I would like to avoid tricks such as injecting code or debugging the process, if possible.</p> http://stackoverflow.com/questions/1741010/c-program-to-compare-integers-without-using-logical-operators/1741886#1741886 3 Answer by aib for C program to compare integers without using logical operators? aib 2009-11-16T12:27:49Z 2009-11-16T12:27:49Z <p>You can use the relational operators (&lt;, >, &lt;=, >=) and/or the equality operators (==, !=).</p> http://stackoverflow.com/questions/1701210/storing-files-on-the-filesystem/1701454#1701454 1 Answer by aib for Storing files on the filesystem aib 2009-11-09T14:46:07Z 2009-11-09T14:46:07Z <p>A simple strategy is grouping according to the first [few] digit(s). E.g.:</p> <pre><code>1/ 2/ 123.blob 129.blob 5/ 151.blob 2/ 0/ 208.blob </code></pre> <p>That way, you know you'll never have more than 10 subdirectories in a directory. You may of course use more or less levels (of directories) and/or more digits per level.</p> <p>A more complex, dynamic system could create sublevels on demand: If the number of blobs in a certain directory exceed a preset maximum, create another 10 subdirectories and move the files in.</p> http://stackoverflow.com/questions/401847/circle-rectangle-collision-detection-intersection 5 Circle-Rectangle collision detection (intersection) aib 2008-12-30T23:35:02Z 2009-11-07T10:12:21Z <p>How can I tell whether a circle and a rectangle intersect in 2D Euclidean space? (i.e. classic 2D geometry)</p> http://stackoverflow.com/questions/1678312/return-values-from-a-struct/1678330#1678330 7 Answer by aib for return values from a struct aib 2009-11-05T04:20:24Z 2009-11-05T04:20:24Z <p>You need to pass v in <em>by reference</em>, which is done using pointers in C:</p> <pre><code>void fooV(Value* v) { (*v).id = 10; (*v).type = 'L'; (*v).a = 'R'; } </code></pre> <p>Or use the -> shorthand operator:</p> <pre><code>void fooV(Value* v) { v-&gt;id = 10; v-&gt;type = 'L'; v-&gt;a = 'R'; } </code></pre> <p>And don't forget to pass v's address:</p> <pre><code>fooV(&amp;v); </code></pre> http://stackoverflow.com/questions/1613965/how-do-restrict-access-to-a-class-property-to-only-within-the-same-namespace/1614027#1614027 0 Answer by aib for How do restrict access to a class property to only within the same namespace aib 2009-10-23T14:57:37Z 2009-10-23T14:57:37Z <p>Declare ContentService as a <a href="http://en.wikipedia.org/wiki/Friend%5Fclass" rel="nofollow">friend</a>?</p> <p>Alternatively, Java has an <a href="http://java.sun.com/docs/books/tutorial/java/javaOO/accesscontrol.html" rel="nofollow">access modifier</a> that amounts to "package-private".</p> http://stackoverflow.com/questions/1544861/which-code-is-more-readable/1545147#1545147 6 Answer by aib for Which code is more readable? aib 2009-10-09T17:43:45Z 2009-10-09T17:43:45Z <p>Neither. I'd start with renaming SomeProperty, Foo and Bar.</p> <p>What I mean is, you should structure your code as to convey your intentions clearly. With different functions, I might use different forms. As it stands, however, either form is fine. Consider:</p> <pre><code>IsFather = IsParent() &amp;&amp; IsMale(); </code></pre> <p>and</p> <pre><code>if (FPUAvailable()) { SomeProperty = LengthyFPUOperation(); } else { SomeProperty = false; } </code></pre> <p>Here, the first form stresses the logical-and relationship. The second one stresses the short-circuit. I would never write the first example in the second form. I would probably prefer the second form for the second example, especially if I was aiming for clarity.</p> <p>Point is, it's hard to answer this question with SomeProperty and Foo() and Bar(). There are some good, generic answers defending &amp;&amp; for the usual cases, but I would never completely rule out the second form.</p> http://stackoverflow.com/questions/1449109/why-doesnt-this-crash-arent-i-dividing-by-zero-here/1450586#1450586 2 Answer by aib for Why doesn't this crash? Aren't I dividing by zero here? aib 2009-09-20T08:26:16Z 2009-09-20T08:26:16Z <p>Because it's Undefined Behavior. Your program is allowed to behave in any way, which may include crashing or showing us the last glimpse of the universe you so inconsiderately destroyed by dividing-by-zero.</p> <p>From the C[99] Standard, §6.5.5.5:</p> <blockquote> <p>The result of the / operator is the quotient from the division of the first operand by the second; the result of the % operator is the remainder. In both operations, if the value of the second operand is zero, the behavior is undefined.</p> </blockquote> http://stackoverflow.com/questions/28999/favorite-ide-feature/29409#29409 2 Answer by aib for Favorite IDE feature? aib 2008-08-27T02:50:47Z 2009-09-15T23:47:06Z <p>Syntax highlighting - though it's not really an IDE feature anymore, most text editors have it.</p> <p>I like Visual Studio's "Find All References" - it's much more useful than simple text search.</p> <p>"Go to declaration/definition" helps a lot with navigation; it takes a while to go through all the text search results when trying to find the definition of a common function.</p> <p>Auto-completion, I find, is most useful when learning a new language/library/API/etc. It helps you see what is available, what alternatives there are, and even point out some basic mistakes.</p> <p>Source control integration is another nice feature of IDEs that saves time without hindering the usability of the application.</p> http://stackoverflow.com/questions/1342149/how-would-one-implement-an-fps-camera/1347455#1347455 2 Answer by aib for How would one implement an FPS camera? aib 2009-08-28T14:43:53Z 2009-08-28T14:57:26Z <p>The way <em>I</em> have always seen it done is using two angles, yaw and pitch. The two axes of mouse movement correspond to changes in these angles.</p> <p>You can calculate the <code>forward</code> vector easily with a spherical-to-rectangular coordinate transformation. (pitch=latitude=φ, yaw=longitude=θ)</p> <p>You can use a fixed <code>up</code> vector (say (0,0,1)) but this means you can't look directly upwards or downwards. (Most games solve this by allowing you to look no steeper than 89.999 degrees.)</p> <p>The <code>right</code> vector is then the cross product of the forward and up vectors. It will always be parallel to the ground plane since the up vector is always perpendicular to the ground plane.</p> <p>Left/right strafe keys then use the <code>+/-right</code> vector. For a <code>forward</code> vector parallel to the ground plane, you can take the cross product of the <code>right</code> and the <code>up</code> vectors.</p> <p>As for the GL part, you can simply use <code>gluLookAt()</code> using the player's origin, the origin plus the <code>forward</code> vector and the <code>up</code> vector.</p> <p>Oh and please, please add an "invert mouse" option.</p> http://stackoverflow.com/questions/1335230/is-the-memory-of-a-character-array-freed-by-going-out-of-scope/1335247#1335247 3 Answer by aib for Is the memory of a (character) array freed by going out of scope? aib 2009-08-26T14:47:03Z 2009-08-26T14:47:03Z <p>Yes, it is "freed." (Not free()'ed, though.)</p> <p>Since str is an automatic variable, it will only last as long as its scope, which is until the end of the function block.</p> <p>Note that you only free() what you malloc().</p> http://stackoverflow.com/questions/1326811/how-does-a-blur-gauss-algorithm-look-like-are-there-examples-of-implementation/1326843#1326843 2 Answer by aib for How does a blur gauss algorithm look like? Are there examples of implementation? aib 2009-08-25T08:31:41Z 2009-08-25T08:31:41Z <p>The <a href="http://en.wikipedia.org/wiki/Gaussian%5Fblur" rel="nofollow">Wikipedia article</a> has a sample matrix in addition to some standard information on the subject.</p> http://stackoverflow.com/questions/1324402/how-do-you-get-started-when-trying-to-understand-the-code-of-a-3d-game-engine-li/1324977#1324977 4 Answer by aib for How do you get started when trying to understand the code of a 3D game engine (like id Tech 3)? aib 2009-08-24T21:52:09Z 2009-08-24T21:52:09Z <p>Writing a mod would be a good starting point.</p> <p>Start on charted territory: The vanilla game. Change stuff. Look at the grenade bounce code. Make it bounce further. Add client-side prediction (which non-bouncy projectiles already have).</p> <p>Add a teleport weapon. It will tell you more about collision detection than you'd like to know.</p> <p>There are a few key functions that handle most of the game: The engine exports, the trap_* calls. It might help a great deal to know what exactly mods are doing with them before opening up the engine code and looking at their implementation.</p> <p>For example, it might tell you more about the engine to know that you need to call LinkEntity every time an entity moves or otherwise its position in the game BSP tree is not updated and subsequent engine calls might ignore it, than to know exactly how the tree is stored and accessed.</p> http://stackoverflow.com/questions/1311049/how-to-map-atan2-to-degrees-0-360/1311572#1311572 3 Answer by aib for How to map atan2() to degrees 0-360 aib 2009-08-21T12:08:07Z 2009-08-21T12:08:07Z <p>Or if you don't like branching, just negate the two parameters and add 180° to the answer.</p> http://stackoverflow.com/questions/1251060/how-do-procedure-calls-work-in-assembler/1251152#1251152 1 Answer by aib for how do procedure calls work in assembler? aib 2009-08-09T11:00:06Z 2009-08-09T11:00:06Z <p>It all depends on the <a href="http://en.wikipedia.org/wiki/Calling%5Fconvention" rel="nofollow">calling convention</a> being used. I won't repeat the Wikipedia article here, just read the definition.</p> <p>In the <a href="http://en.wikipedia.org/wiki/X86%5Fcalling%5Fconventions#cdecl" rel="nofollow">C calling convention</a>, for example, the return value would be in EAX/AX/AL. Your single-instruction does not have one: It is a void function taking around 4 bytes of parameters (possibly a single int) that does nothing. As it is the callee's duty to clean up the stack in this calling convention, ignoring to do that and replacing the call with a 'mov ax' does not work.</p> <p>Also I suspect you may be tinkering with 32-bit assembly while reading a 16-bit document. It's not a big problem, but you should be aware of the differences.</p> http://stackoverflow.com/questions/1213394/algorithm-needed-for-packing-rectangles-in-a-fairly-optimal-way/1213491#1213491 3 Answer by aib for Algorithm needed for packing rectangles in a fairly optimal way aib 2009-07-31T16:16:40Z 2009-07-31T16:16:40Z <p>Have a look at <a href="http://en.wikipedia.org/wiki/Packing%5Fproblem" rel="nofollow">packing problems</a>. I think yours falls under '2D bin packing.' You should be able to learn a lot from solutions to that and other packing problems.</p> <p>Also see: <a href="http://stackoverflow.com/questions/263932/packing-rectangular-image-data-into-a-square-texture">Packing rectangular image data into a square texture.</a></p> http://stackoverflow.com/questions/1123115/boost-graph-library-and-visitors/1125750#1125750 1 Answer by aib for Boost Graph Library and Visitors aib 2009-07-14T14:24:52Z 2009-07-16T08:06:36Z <p>What do you mean, you can't subclass out vertices? You can use your own vertex class, it's just a matter of specifying it in the Graph typedef. You can even use members as properties when working with BGL algorithms.</p> <p>As for the other way around (which is harder IMO), you need to create a vertex property list and access it using a vertex descriptor... I think.</p> <p>Edit: You specify vertex/edge classes when defining your graph type:</p> <pre><code>struct Vertex { double some_property; }; struct Edge { double weight; }; typedef boost::adjacency_list&lt; boost::listS, boost::vecS, boost::undirectedS, Vertex, Edge &gt; Graph; //sorry about the formatting Graph g; </code></pre> <p>From where on g[vertex_descriptor] should return a reference to Vertex, e.g.:</p> <pre><code>//add 100 vertices for (int i=0; i&lt;100; ++i) { Graph::vertex_descriptor v = add_vertex(g); g[v].some_property = -1.0; } //zero some_property for all vertices for (Graph::vertex_iterator i = vertices(g).first; i != vertices(g).second; ++i) { g[*i].some_property = 0.0; } </code></pre> <p>I couldn't find my visitor code making use of these properties but I did find the relevant part of the BGL documentation:</p> <p>1) The part about <a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/graph/doc/using%5Fadjacency%5Flist.html#sec:adjacency-list-properties" rel="nofollow">Internal Properties</a>, which recommends you use instead:<br /> 2) <a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/graph/doc/bundles.html" rel="nofollow">Bundled Properties</a></p> <p>The second link seems to have a Boost function making use of bundled properties using a member pointer.</p> <p>Does this help?</p> http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1020893#1020893 7 Answer by aib for What are common UI misconceptions and annoyances? aib 2009-06-20T03:46:35Z 2009-06-20T03:46:35Z <p>Windows that don't close when you click the close button.</p> <p>Yes, this even goes for you main windows out there. I don't care how tray-bound or utility-like your application is.</p> http://stackoverflow.com/questions/990333/what-are-the-basic-arguments-every-good-cli-application-must-have/990358#990358 2 Answer by aib for What are the basic arguments every good CLI application must have? aib 2009-06-13T09:06:22Z 2009-06-13T09:06:22Z <p>-h is a must on *nix. I'd say the same for /? on Windows, but programs available for both platforms usually go for the *nix style. It's probably because of getopt and friends.</p> <p>Some essentials:</p> <pre><code>-h, --help -v, --version -u, --usage </code></pre> <p>If the application modifies any files at all:</p> <pre><code>--dry-run Do not modify any files (but work as if you did) </code></pre> <p>If the application uses config files, options to use a specified config file or directory.</p> <p>Some main operational switches to run non-interactively and do the job:</p> <pre><code>mysql --execute="SELECT * FROM ..." cmd.exe /C "dir" </code></pre> http://stackoverflow.com/questions/984107/returning-stl-lists-as-argument/984135#984135 5 Answer by aib for Returning STL lists as argument aib 2009-06-11T22:39:27Z 2009-06-11T22:39:27Z <p>You might be able to get away with returning a simple list - search for "Return Value Optimization" for details. Simply, the compiler is allowed to generate code that bypasses the costly copy constructor.</p> <p>Only after trying this and not being satisfied with the results would I recommend the "populate" versions suggested in the other answers. It's uglier.</p> <p>Of course, the caveat is that RVO is not <em>guaranteed</em> to happen.</p> http://stackoverflow.com/questions/964380/how-to-make-file-listing-using-the-bat-script/964609#964609 0 Answer by aib for how to make file listing using the .bat script aib 2009-06-08T12:10:30Z 2009-06-08T12:10:30Z <p>Start with something along the lines of:</p> <pre><code>@echo off call :dodir . goto eof :dodir set TEMP_CUR_DIR="%*" REM echo Directory %TEMP_CUR_DIR%: for %%f in (%TEMP_CUR_DIR%\*) do call :dofile %%f for /d %%d in (%TEMP_CUR_DIR%\*) do call :dodir %%d goto eof :dofile set TEMP_CUR_FILE="%*" echo File: %TEMP_CUR_FILE% goto eof :eof </code></pre> http://stackoverflow.com/questions/959288/blender-for-beginners/959301#959301 1 Answer by aib for Blender for beginners aib 2009-06-06T08:54:11Z 2009-06-06T08:54:11Z <p>Check out the <a href="http://www.blender.org/education-help/video-tutorials/" rel="nofollow">video tutorials</a>.</p> <p>Actually, try the whole <a href="http://www.blender.org/education-help/" rel="nofollow">Education &amp; Help</a> section on the official site.</p> http://stackoverflow.com/questions/1817196/gcc-g-error-when-compiling-large-file/1817272#1817272 Comment by aib on gcc/g++: error when compiling large file aib 2009-11-30T02:02:48Z 2009-11-30T02:02:48Z ...and I think I did that when compiling on MacOS X, whose linker was different and the compiler suite had no obvious way of converting binary data into an object file. But as long as you have an object file containing the two symbols for data start + data size (or data start + data end, it might have been) it doesn't matter who created it and how, does it? http://stackoverflow.com/questions/1817196/gcc-g-error-when-compiling-large-file/1817272#1817272 Comment by aib on gcc/g++: error when compiling large file aib 2009-11-30T01:51:06Z 2009-11-30T01:51:06Z @Adam Rosenfeld: That would have worked, yes, but would have been a hack in that it would not have solved the actual problem, which is the binary stream going through the compiler in the first place. (Binary data -&gt; C source -&gt; compiler -&gt; binary data -- doesn't really sound right, does it?) By the way, the 'linker' solution ended up looking exactly like yours: With headers just containing extern char* + extern size. http://stackoverflow.com/questions/1816904/segmentation-fault-at-end-of-the-program Comment by aib on segmentation fault at end of the program aib 2009-11-30T00:25:30Z 2009-11-30T00:25:30Z zomg! (sorry, couldn't resist) http://stackoverflow.com/questions/1816727/why-is-that-data-structures-usually-have-a-size-of-2n/1816796#1816796 Comment by aib on Why is that data structures usually have a size of 2^n ? aib 2009-11-29T23:22:13Z 2009-11-29T23:22:13Z 10, 100 or 1000000 are nice, round numbers in any base. :) http://stackoverflow.com/questions/1741010/c-program-to-compare-integers-without-using-logical-operators/1741886#1741886 Comment by aib on C program to compare integers without using logical operators? aib 2009-11-16T13:27:20Z 2009-11-16T13:27:20Z I went for the latter as well, but still wanted to see a strict literal answer here. And maybe point out the pointlessness of such an excercise. (Now, if the question had said &quot;two's complement signed integers&quot; or &quot;arithmetic logic&quot; instead of &quot;C&quot;, it would have been another matter.) http://stackoverflow.com/questions/1700498/to-use-video-file-as-input-with-speech-recognition Comment by aib on To use video file as input with speech recognition? aib 2009-11-09T12:07:03Z 2009-11-09T12:07:03Z good for you. Now what's the question? http://stackoverflow.com/questions/925981/overlaying-on-a-3d-fullscreen-application/1683524#1683524 Comment by aib on Overlaying on a 3D fullscreen application aib 2009-11-09T07:30:44Z 2009-11-09T07:30:44Z excellent. Coupled with your other answer, this is what I've been looking for. Thanks. http://stackoverflow.com/questions/1678312/return-values-from-a-struct/1678324#1678324 Comment by aib on return values from a struct aib 2009-11-05T04:21:48Z 2009-11-05T04:21:48Z no references in C. http://stackoverflow.com/questions/1667255/change-string-pointed-by-pointer/1667299#1667299 Comment by aib on Change string pointed by pointer aib 2009-11-03T13:20:51Z 2009-11-03T13:20:51Z const_cast&lt;&gt; is C++. http://stackoverflow.com/questions/925981/overlaying-on-a-3d-fullscreen-application/1662699#1662699 Comment by aib on Overlaying on a 3D fullscreen application aib 2009-11-03T10:23:23Z 2009-11-03T10:23:23Z DLL wrapping is a good technique that I've done in the past; thanks for the D3D pointers. However, I think Steam has a better way of doing this. I guess I should do some more research. http://stackoverflow.com/questions/1653332/define-for-unsigned-long Comment by aib on #define for unsigned long aib 2009-10-31T09:43:20Z 2009-10-31T09:43:20Z That's precisely why you shouldn't be using `#define`s. http://stackoverflow.com/questions/1640660/how-to-udp-send-and-receive-on-same-port/1642922#1642922 Comment by aib on How to UDP send and receive on same port? aib 2009-10-29T11:55:50Z 2009-10-29T11:55:50Z excellent answer. http://stackoverflow.com/questions/1634995/complexity-help-on2-0nlog-etc/1636249#1636249 Comment by aib on complexity help..O(n^2), 0(nlog) etc aib 2009-10-29T10:40:55Z 2009-10-29T10:40:55Z log(n) or log2(n) http://stackoverflow.com/questions/1631547/how-to-cast-a-double-to-int-in-c Comment by aib on how to CAST a double to int in C aib 2009-10-27T15:33:05Z 2009-10-27T15:33:05Z Question: What if floor(14.6) returns 13.99999? http://stackoverflow.com/questions/958133/best-ide-eclipse-netbeans-codeblocks-visual-studio-others/958205#958205 Comment by aib on Best IDE: Eclipse, Netbeans, CodeBlocks, Visual Studio, Others? aib 2009-10-27T11:27:25Z 2009-10-27T11:27:25Z Could you maybe add some punctuation to the second paragraph?