User MrZebra - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T19:42:37Z http://stackoverflow.com/feeds/user/17440 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1587810/am-i-overflowing-my-avrs-flash-memory-with-a-program-thats-too-big/1587868#1587868 1 Answer by MrZebra for Am I overflowing my AVR's flash memory with a program that's too big? MrZebra 2009-10-19T10:04:06Z 2009-10-19T10:04:06Z <p>Check that you're not overflowing your stack? That can produce crashes that are hard to detect. You can either set your stack size somewhere in the compiler/linker settings, or you can convert some local variables to global variables. An embedded processor usually doesn't have any checks for a stack overflow, it just crashes.</p> http://stackoverflow.com/questions/1544314/a-little-fuzzy-on-getting-distinct-on-one-column/1544344#1544344 0 Answer by MrZebra for A little fuzzy on getting DISTINCT on one column? MrZebra 2009-10-09T14:58:13Z 2009-10-09T14:58:13Z <p>DISTINCT is distinct for the whole row. Try <code>GROUP BY ReceiptID</code>, of course the values for the other columns may not make sense, because it will just pick one row.</p> http://stackoverflow.com/questions/1079507/completely-stumped-with-htaccess/1079614#1079614 1 Answer by MrZebra for Completely stumped with .htaccess MrZebra 2009-07-03T14:30:13Z 2009-07-03T14:30:13Z <p>You may need to take off the leading slash from your rewrite rule:</p> <pre><code>RewriteRule ^/products.... # becomes RewriteRule ^products... </code></pre> http://stackoverflow.com/questions/1073473/tips-for-making-code-last/1073539#1073539 5 Answer by MrZebra for Tips for making code last. MrZebra 2009-07-02T10:00:58Z 2009-07-02T10:00:58Z <p>Bit rot...</p> <p>The problems I have most often come up against when compiling an old project are</p> <ul> <li>Missing dependencies - It is a good idea to list any libraries that you depend on, including the URL you got it from. Your include path may not be the same as it was 5 years ago!</li> <li>Compiler changes - These are usually not much of a bother, and can often be fixed with a #define in C/C++</li> <li>Data size changes - This was a nasty one when moving from 16-bit to 32-bit. Try not to make assumptions about the size of variables.</li> <li>Mysterious build process - For some projects, there may be obscure build steps for building resources, libraries, etc. Make sure they're well documented.</li> <li>Overly clever code - I've seen code that assumes the machine has less than X megabytes of memory, and so uses the top bits of pointers to hold data. Don't do things like that!</li> <li>Error checking - When things DO break, good error checking will help you figure out why a lot faster.</li> </ul> http://stackoverflow.com/questions/862419/why-do-people-post-their-captchas-publicly-captcha-somerandomword/862615#862615 4 Answer by MrZebra for Why do people post their captchas publicly? Captcha: somerandomword MrZebra 2009-05-14T10:27:02Z 2009-05-14T10:27:02Z <p>It's just part of TDWTF culture, sometimes the captchas are made into jokes.</p> http://stackoverflow.com/questions/862487/extracting-bitmap-from-a-file/862588#862588 3 Answer by MrZebra for Extracting bitmap from a file MrZebra 2009-05-14T10:19:51Z 2009-05-14T10:19:51Z <p>Yes, about the only thing you can do is search through the file for the 'BM' marker, pull out the following data into a <a href="http://msdn.microsoft.com/en-us/library/dd183374%28VS.85%29.aspx" rel="nofollow">BITMAPFILEHEADER</a> and corresponding BITMAPINFO, and see if the values in it look valid (i.e. that the dimensions are sensible, colour depth is reasonable, etc).</p> <p>Once you have found something that looks reasonable, pull that data out and pass it to the library mentioned in another answer.</p> http://stackoverflow.com/questions/548749/creating-a-maze-class-in-c-using-16bit-unsigned-int-array/548772#548772 5 Answer by MrZebra for Creating a Maze class in C++ using 16bit unsigned int array? MrZebra 2009-02-14T08:41:59Z 2009-02-14T08:41:59Z <p>There's a problem with the constructor - you use "width" and "height" before they are assigned. You also need a destructor to free the memory:</p> <pre><code>~Maze() { delete [] mazeGrid; } </code></pre> <p>Other than that, it looks ok.</p> http://stackoverflow.com/questions/545644/does-every-product-need-its-own-domain/545728#545728 2 Answer by MrZebra for Does every product need its own domain? MrZebra 2009-02-13T12:20:10Z 2009-02-13T12:20:10Z <p>As well as the reasons already mentioned, you should definitely make sure the domain name is available, otherwise someone else will end up getting a portion of your traffic. They may want paying to redirect it to you, they may sell you the domain for a fortune, or they may try to sue you for using their name...</p> <p>Any way you look at it (lost revenue, paid redirection), you will lose some money if someone else owns the domain name for your product.</p> http://stackoverflow.com/questions/537915/drive-an-dac-from-a-stream-that-is-clocked-from-another-source/537987#537987 2 Answer by MrZebra for Drive an DAC from a stream that is clocked from another source? MrZebra 2009-02-11T17:57:10Z 2009-02-11T17:57:10Z <p>As your clocks are running at essentially two different speeds, you have no choice but to duplicate or discard samples.</p> <p>Keep a count of how many samples have been read/written, and calculate how many samples you expect to have been read/written based on the current time. A discrepancies can then be adjusted for by duplicating/discarding samples.</p> http://stackoverflow.com/questions/533732/retrieve-data-from-const-int-const-buffer/534194#534194 0 Answer by MrZebra for Retrieve data from const int * const buffer[] MrZebra 2009-02-10T21:00:09Z 2009-02-10T21:00:09Z <p>Hi, I don't know anything about C# so this is a complete guess, but - you seem to be copying from ints to bytes, is "length" the count in ints, or the count in bytes? Could there be a mixup there? This can be a problem in regular old C++ sometimes.</p> http://stackoverflow.com/questions/520625/have-you-ever-had-to-use-bit-shifting-in-real-projects/520721#520721 16 Answer by MrZebra for Have you ever had to use bit shifting in real projects? MrZebra 2009-02-06T15:31:39Z 2009-02-06T16:18:58Z <p>Yes, I've used them a lot of times. Bit twiddling is important on embedded hardware where bit-masks are very common. It's also important in games programming, when you need every last bit of performance.</p> <p><strong>Edit:</strong> Also, I use them a lot for manipulating bitmaps, for example changing the colour depth, or converting RGB &lt;-> BGR.</p> http://stackoverflow.com/questions/520671/does-resizing-jpeg-images-affect-their-compression/520715#520715 4 Answer by MrZebra for Does resizing jpeg images affect their compression? MrZebra 2009-02-06T15:29:51Z 2009-02-06T15:29:51Z <p>JPEGs have no "compression" value saved within them. When you resize and save them, they are compressed with whatever value you tell your save function to use. As you are not passing a value, it will just use whatever default for the library is.</p> http://stackoverflow.com/questions/218264/how-can-i-detect-and-survive-being-slashdotted 24 How can I detect and survive being "Slashdotted"? MrZebra 2008-10-20T12:33:38Z 2009-01-02T17:06:25Z <p>What's a good way to survive abnormally high traffic spikes?</p> <p>My thought is that at some trigger, my website should temporarily switch into a "low bandwidth" mode: switch to basic HTML pages, minimal graphics, disable widgets that might put unnecessary load on the database, and so-on.</p> <p>My thoughts are:</p> <ul> <li>Monitor CPU usage</li> <li>Monitor bandwidth</li> <li>Monitor requests / minute</li> </ul> <p><strong>Edit:</strong> I am familiar with options like caching, switching to static content or a content delivery network, and so on as a means to survive, so perhaps the question should focus more on how one detects when the website is about to become overloaded. (Although answers on other survival methods are of course still more than welcome.) Lets say that the website is running Apache on Linux and PHP. This is probably the most common configuration and should allow the maximum number of people to gain assistance from the answers. Lets also assume that expensive options like buying another server and load balancing are unavailable - for most of us at least, a mention on Slashdot is going to be a once-in-a-lifetime occurrence, and not something we can spend money preparing for.</p> http://stackoverflow.com/questions/316436/what-tools-do-you-use-to-profile-nativec-on-windows/316741#316741 1 Answer by MrZebra for What tools do you use to profile (native)C++ on Windows? MrZebra 2008-11-25T08:56:10Z 2008-11-25T08:56:10Z <p>I got <a href="http://www.amd.com/codeanalyst/" rel="nofollow">AMD Code Analyst</a>. It's free, and you don't need an AMD CPU ;)</p> <p>It's a little basic compared to something like Intel's VTune, but the price is right.</p> http://stackoverflow.com/questions/316629/is-fileexist-in-php-a-very-expensive-operation/316729#316729 4 Answer by MrZebra for Is file_exist() in PHP a very expensive operation? MrZebra 2008-11-25T08:50:09Z 2008-11-25T08:50:09Z <p>As well as what the other posters have said, the result of file_exists() is automatically cached by PHP to improve performance.</p> <p>However, if you're already reading user info from the database, you may as well store the information in there. If the user is only allowed one avatar, you could just store a single bit in a column for "has avatar" (1/0), and then have the filename the same as the user id, and use something like <code>SELECT CONCAT(IF(has_avatar, id, 'default'), '.png') AS avatar FROM users</code></p> <p>You could also consider storing the actual image in the database as a BLOB. Put it in its own table rather than attaching it as a column to the user table. This has the benefit that it makes your forum very easy to back up - you just export the database.</p> http://stackoverflow.com/questions/315357/hyper-links-problems/315373#315373 1 Answer by MrZebra for Hyper links problems MrZebra 2008-11-24T20:36:47Z 2008-11-24T20:53:46Z <p>If I understand your question correctly, you want the <code>HTTP_REFERER</code> variable (in PHP: <code>$_SERVER['HTTP_REFERER']</code>.</p> <p>This will give you the page that the user came from, and you can then use that to decide what link to give to the user. Note that it's easy to fake or remove, so you can't rely on it too much. It's the only way to find out which page (from another site) the user came from, though.</p> <p><strong>Edit</strong>: It's unclear from the question whether you have control of the links that are pointing to your website. If you <em>do</em>, then just have them add a referrer code to the end of the URL, like this: <code>http://www.example.com/page.php?referrer=foo</code></p> <p>You can then use that variable to identify them, for example in PHP:</p> <pre><code>if ($_REQUEST['referrer'] == 'foo') { ... } </code></pre> http://stackoverflow.com/questions/315218/c-templates-and-inheritance/315232#315232 6 Answer by MrZebra for C++ templates and inheritance MrZebra 2008-11-24T19:52:24Z 2008-11-24T19:52:24Z <p>How about using pointers? Just have a list of <code>list&lt;Control*&gt;</code> and put whatever Control-derived objects you like into it.</p> http://stackoverflow.com/questions/314699/create-discrepancy-between-size-on-disk-and-actual-size-in-ntfs/315033#315033 2 Answer by MrZebra for Create discrepancy between size on disk and actual size in NTFS MrZebra 2008-11-24T18:43:36Z 2008-11-24T18:43:36Z <p>You can create streams in NTFS files. It's like a separate file, but with the same filename. See here: <a href="http://www.windowsecurity.com/articles/Alternate_Data_Streams.html" rel="nofollow">Alternate Data Streams</a></p> http://stackoverflow.com/questions/314983/include-header-guard-format/314989#314989 9 Answer by MrZebra for #include header guard format? MrZebra 2008-11-24T18:32:49Z 2008-11-24T18:32:49Z <p>I always use <code>INCLUDED_FOO_HPP</code></p> <p>I wouldn't use the double underscore one, because starting things with double underscores is reserved.</p> http://stackoverflow.com/questions/314301/html-how-to-pause-refresh-of-page-when-drawing-html-table-dynamically/314323#314323 1 Answer by MrZebra for HTML: How to "pause" refresh of page when drawing HTML table dynamically MrZebra 2008-11-24T14:43:05Z 2008-11-24T14:43:05Z <p>Maybe build your table as a big string of HTML, and then set the .innerHTML of a container div to that string when you've finished?</p> http://stackoverflow.com/questions/314220/how-to-select-the-lowest-n-rows-in-a-sql-server-query/314233#314233 0 Answer by MrZebra for How to select the lowest n rows in a SQL Server query MrZebra 2008-11-24T14:17:16Z 2008-11-24T14:17:16Z <p>Just order them and do a limit, e.g.</p> <pre><code>SELECT * FROM my_table ORDER BY value LIMIT 5 </code></pre> http://stackoverflow.com/questions/313004/how-to-consistently-organize-code-for-debugging/314026#314026 0 Answer by MrZebra for How to consistently organize code for debugging ? MrZebra 2008-11-24T12:26:59Z 2008-11-24T12:26:59Z <p>Building yourself some proper debug tools can be extremely valuable. For example in a 3D environment, you might have an option to display the octree, or to render planned AI paths, or to draw waypoints that are normally invisible. You'd probably also want some on-screen display to aid with profiling too: the current framerate, count of polygons on screen, texture memory usage, and so on.</p> <p>Although this takes some time and effort to do, in the long run it can save you a lot of time and frustration.</p> http://stackoverflow.com/questions/295279/what-is-the-fastest-way-to-get-the-4-least-significant-bits-in-a-byte-c/295347#295347 2 Answer by MrZebra for What is the fastest way to get the 4 least significant bits in a byte (C++)? MrZebra 2008-11-17T11:20:23Z 2008-11-17T11:20:23Z <p>It will depend on on the architecture to some extent - shifting up and back down on an ARM is probably the fastest way - however the compiler should do that for you. In fact, all of the suggested methods will probably be optimized to the same code by the compiler.</p> http://stackoverflow.com/questions/225078/how-can-i-stream-video-from-my-application-to-the-web 0 How can I stream video from my application to the web? MrZebra 2008-10-22T09:55:18Z 2008-11-11T02:08:22Z <p>I have an application that grabs video from multiple webcams, does some image processing, and displays the result on the screen. I'd like to be able to stream the video output on to the web - preferably to some kind of distribution service rather than connecting to clients directly myself.</p> <p>So my questions are:</p> <ul> <li>Do such streaming distribution services exist? I'm thinking of something like ShoutCAST relays, but for video. I'm aware of ustream.tv, but I think they just take a direct webcam connection rather than allow you to send any stream.</li> <li>If so, is there a standard protocol for doing this?</li> <li>If so, is there a free library implementation of this protocol for Win32?</li> </ul> <p>Ideally I'd just like to throw a frame of video in DIB format at a SendToServer(bitmap) function, and have it compress, send, and distribute it for me ;) </p> http://stackoverflow.com/questions/242609/capture-window-alt-print-screen-of-context-menu/242900#242900 3 Answer by MrZebra for Capture Window (Alt-Print Screen) of Context Menu MrZebra 2008-10-28T11:04:38Z 2008-10-28T11:04:38Z <p>You can't get the menu on its own, but you can can get it to capture the parent window + context menu through a similar trick to the one you discovered with the main menu:</p> <ol> <li>Press &amp; hold Shift</li> <li>Press F10</li> <li>Press and hold Alt</li> <li>Press PrintScreen</li> <li>Release Shift &amp; Alt</li> </ol> <p>At least you don't have to install any software!</p> http://stackoverflow.com/questions/241225/can-someone-who-does-not-like-to-look-at-the-screen-for-extended-periods-of-time/241243#241243 -2 Answer by MrZebra for Can someone who does not like to look at the screen for extended periods of time work in the IT industry (as a programmer)? MrZebra 2008-10-27T20:13:13Z 2008-10-27T20:13:13Z <p>I'd say no. Your eyes will get sore. You will find it difficult to take breaks from the screen, and you'll go home at night with aching eyeballs.</p> <p>You will end up being miserable, and that's not something you want at work.</p> <p>Maybe look for a job with some field work involved? Something where you can spend part of the day installing/repairing, etc?</p> http://stackoverflow.com/questions/233148/c-pointers-and-arrays-question/233173#233173 0 Answer by MrZebra for C: Pointers and Arrays Question MrZebra 2008-10-24T11:33:12Z 2008-10-24T11:33:12Z <p>It's unlikely that there will be any difference in speed.</p> <p>Using the array operator [] is probably preferred, as in C++ you can use the same syntax with other containers (e.g. vector).</p> http://stackoverflow.com/questions/233027/how-to-set-the-turbo-c-path-in-windows/233036#233036 4 Answer by MrZebra for How to set the Turbo C path in windows? MrZebra 2008-10-24T10:40:00Z 2008-10-24T11:00:22Z <ul> <li>Go to the Start Menu, then Control Panel. </li> <li>Choose the "System" applet.</li> <li>Click on the "Advanced" tab.</li> <li>Click on "Environment Variables"</li> <li>Find the "Path" variable, and press "Edit"</li> <li>Append a semicolon, then the path to Turbo C</li> </ul> <p>For setting the include and library paths, go to the same place, but instead of editing the "Path" variable, create a new variable called "INCLUDE", and set it to the location of your turboc "\include" directory; and create one called "LIB" and one called "CLASSPATH", and set them to your turboc "\lib" directory.</p> http://stackoverflow.com/questions/230407/what-is-the-unix-command-to-see-how-much-disk-space-there-is-and-how-much-is-rema/230412#230412 14 Answer by MrZebra for What is the unix command to see how much disk space there is and how much is remaining? MrZebra 2008-10-23T16:27:36Z 2008-10-23T16:27:36Z <p>Look for the commands <code>du</code> (disk usage) and <code>df</code> (disk free)</p> http://stackoverflow.com/questions/230119/increasing-typing-speed-from-75-wpm-to-over-100/230127#230127 2 Answer by MrZebra for Increasing typing speed from 75 wpm to over 100 MrZebra 2008-10-23T15:16:06Z 2008-10-23T15:16:06Z <p>Just practice.</p> <p>Try playing <a href="http://www.popcap.com/games/free/typershark" rel="nofollow">Typer Shark</a> - it's reasonably fun, as far as typing goes ;)</p> http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/157651#157651 Comment by MrZebra on Do you have a hobby development project? MrZebra 2009-09-29T08:34:07Z 2009-09-29T08:34:07Z Thanks ^.^ --- Zebra http://stackoverflow.com/questions/1073397/while1-break-instead-of-goto/1073474#1073474 Comment by MrZebra on while(1) .. break instead of goto MrZebra 2009-07-02T09:52:00Z 2009-07-02T09:52:00Z This is what I was going to suggest. Failing that, I would use goto over while(1), because while(1) gives the misleading impression that the code loops, when in fact it doesn't. http://stackoverflow.com/questions/862298/ms-word-is-evil-is-there-a-good-alternative/862310#862310 Comment by MrZebra on MS Word is evil! Is there a good alternative? MrZebra 2009-05-14T10:45:13Z 2009-05-14T10:45:13Z I agree with the rest of the commenters I'm afraid - OpenOffice is very clunky compared to MS Office http://stackoverflow.com/questions/545616/why-would-var-be-a-bad-thing/545623#545623 Comment by MrZebra on Why would var be a bad thing? MrZebra 2009-02-13T12:22:22Z 2009-02-13T12:22:22Z I went through the same thing, renaming all the functions when the company decided it wanted to use a different prefix. http://stackoverflow.com/questions/537244/constructor-in-c/537275#537275 Comment by MrZebra on Constructor in C MrZebra 2009-02-11T15:40:45Z 2009-02-11T15:40:45Z -2 seems harsh for something that's perfectly correct. +1 for justice. You could put in a function pointer called &quot;constructor&quot;, but you'd still have to tell it to point to a global function before you called it, so you might as well call the global function directly! Also, you wouldn't get &quot;this&quot;. http://stackoverflow.com/questions/305223/jon-skeet-facts/316229#316229 Comment by MrZebra on Jon Skeet Facts? MrZebra 2009-02-10T20:38:45Z 2009-02-10T20:38:45Z Oh I didn't realize that jokes had to be pre-approved http://stackoverflow.com/questions/305223/jon-skeet-facts/316229#316229 Comment by MrZebra on Jon Skeet Facts? MrZebra 2009-02-10T14:06:01Z 2009-02-10T14:06:01Z I have rolled back Hosam Aly's edit. Porn exists, get used to it. There is nothing offensive about the word. Don't edit somebody else's words just because you don't like them. http://stackoverflow.com/questions/431470/window-border-width-and-height-in-win32-how-do-i-get-it/431548#431548 Comment by MrZebra on window border width and height in Win32 - how do I get it? MrZebra 2009-01-10T20:32:06Z 2009-01-10T20:32:06Z There's a WinAPI function to resize the window to have a given client area size: AdjustWindowRectEx() http://stackoverflow.com/questions/315357/hyper-links-problems/315373#315373 Comment by MrZebra on Hyper links problems MrZebra 2008-11-24T20:51:26Z 2008-11-24T20:51:26Z Actually, I'll edit the post to reflect this. http://stackoverflow.com/questions/315357/hyper-links-problems/315373#315373 Comment by MrZebra on Hyper links problems MrZebra 2008-11-24T20:50:17Z 2008-11-24T20:50:17Z I got the impression that he could not modify the inbound links. If he can, then yes, adding a ?referrer=foo to the URL is certainly the solution. http://stackoverflow.com/questions/314916/coping-with-not-doing-what-you-want-to/314935#314935 Comment by MrZebra on Coping with not doing what you want to. MrZebra 2008-11-24T18:37:29Z 2008-11-24T18:37:29Z Upvoted. You can your best to educate and persuade, but in the end, you have to follow orders. Just make sure you have a record of it, so that whatever hits the fan does not land on you. http://stackoverflow.com/questions/314220/how-to-select-the-lowest-n-rows-in-a-sql-server-query/314233#314233 Comment by MrZebra on How to select the lowest n rows in a SQL Server query MrZebra 2008-11-24T14:20:57Z 2008-11-24T14:20:57Z SQL server doesn't support SQL? http://stackoverflow.com/questions/313461/raytracer-project-in-c Comment by MrZebra on RayTracer project in C# MrZebra 2008-11-24T11:15:43Z 2008-11-24T11:15:43Z Heh, I also had great fun writing a ray tracer in c++ for a university course - and all the data was also lost in a hard disk crash in '04. Fortunately, I had a backup of the actual code <i>whew</i> Damn you, IBM DeathStar. http://stackoverflow.com/questions/312318/how-can-i-get-my-autocomplete-extender-to-work Comment by MrZebra on How can I get my Autocomplete extender to work? MrZebra 2008-11-23T10:50:14Z 2008-11-23T10:50:14Z Can't help you with your problem I'm afraid, but it looks like you are possibly passing an unescaped string to mysql - don't forget to escape it. http://stackoverflow.com/questions/312328/what-is-the-fastest-way-to-find-the-point-of-intersection-between-a-ray-and-a-pol/312337#312337 Comment by MrZebra on What is the fastest way to find the point of intersection between a ray and a polygon? MrZebra 2008-11-23T10:46:19Z 2008-11-23T10:46:19Z Good book, I wrote my own ray tracer following it.