User Josh - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T20:26:09Zhttp://stackoverflow.com/feeds/user/257http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/5727/what-are-the-barriers-to-understanding-pointers-and-what-can-be-done-to-overcome/5728#57286Answer by Josh for What are the barriers to understanding pointers and what can be done to overcome them?Josh2008-08-08T06:19:41Z2009-11-05T01:25:02Z<blockquote>
<p>Why are pointers such a leading factor of confusion for many new, and even old, college level students in the C/C++ language? </p>
</blockquote>
<p>The concept of a placeholder for a value - variables - maps onto something we're taught in school - algebra. There isn't an existing parallel you can draw without understanding how memory is physically laid out within a computer, and no one thinks about this kind of thing until they're dealing with low level things - at the C/C++/byte communications level.</p>
<blockquote>
<p>Are there any tools or thought processes that helped you understand how pointers work at the variable, function, and beyond level?</p>
</blockquote>
<p>Addresses boxes. I remember when I was learning to program BASIC into microcomputers, there were these pretty books with games in them, and sometimes you had to poke values into particular addresses. They had a picture of a bunch of boxes, incrementally labelled with 0, 1, 2... and it was explained that only one small thing (a byte) could fit in these boxes, and there were a lot of them - some computers had as many as 65535! They were next to each other, and they all had an address.</p>
<blockquote>
<p>What are some good practice things that can be done to bring somebody to the level of, "Ah-hah, I got it," without getting them bogged down in the overall concept? Basically, drill like scenarios.</p>
</blockquote>
<p>For a drill? Make a struct:</p>
<pre><code>struct {
char a;
char b;
char c;
char d;
} mystruct;
mystruct.a = 'r';
mystruct.b = 's';
mystruct.c = 't';
mystruct.d = 'u';
char* my_pointer;
my_pointer = &mystruct.b;
cout << 'Start: my_pointer = ' << *my_pointer << endl;
my_pointer++;
cout << 'After: my_pointer = ' << *my_pointer << endl;
my_pointer = &mystruct.a;
cout << 'Then: my_pointer = ' << *my_pointer << endl;
my_pointer = my_pointer + 3;
cout << 'End: my_pointer = ' << *my_pointer << endl;
</code></pre>
<p>Perhaps that explains some of the basics through example?</p>
http://stackoverflow.com/questions/1069/heap-corruption-under-win32-how-to-locate10Heap corruption under Win32; how to locate?Josh2008-08-04T07:30:01Z2009-10-03T16:48:57Z
<p>I'm working on a <strong>multithreaded</strong> C++ application that is corrupting the heap. The usual tools to locate this corruption seem to be inapplicable. Old builds (18 months old) of the source code exhibit the same behaviour as the most recent release, so this has been around for a long time and just wasn't noticed; on the downside, source deltas can't be used to identify when the bug was introduced - there are <em>a lot</em> of code changes in the repository.</p>
<p>The prompt for crashing behaviuor is to generate throughput in this system - socket transfer of data which is munged into an internal representation. I have a set of test data that will periodically cause the app to exception (various places, various causes - including heap alloc failing, thus: heap corruption).</p>
<p>The behaviour seems related to CPU power or memory bandwidth; the more of each the machine has, the easier it is to crash. Disabling a hyper-threading core or a dual-core core reduces the rate of (but does not eliminate) corruption. This suggests a timing related issue.</p>
<p>Now here's the rub:<br />
When it's run under a lightweight debug environment (say Visual Studio 98 / AKA MSVC6) the heap corruption is reasonably easy to reproduce - ten or fifteen minutes pass before something fails horrendously and exceptions, like an alloc; when running under a sophisticated debug environment (Rational Purify, VS2008/MSVC9 or even Microsoft Application Verifier) the system becomes memory-speed bound and doesn't crash (Memory-bound: CPU is not getting above 50%, disk light is not on, the program's going as fast it can, box consuming 1.3G of 2G of RAM). So, <strong>I've got a choice between being able to reproduce the problem (but not identify the cause) or being able to idenify the cause or a problem I can't reproduce.</strong></p>
<p>My current best guesses as to where to next is:</p>
<ol>
<li>Get an insanely grunty box (to replace the current dev box: 2Gb RAM in an E6550 Core2 Duo); this will make it possible to repro the crash causing mis-behaviour when running under a powerful debug environment; or</li>
<li>Rewrite operators new and delete to use VirtualAlloc and VirtualProtect to mark memory as read-only as soon as it's done with. Run under MSVC6 and have the OS catch the bad-guy who's writing to freed memory. Yes, this is a sign of desperation: who the hell rewrites new and delete?! I wonder if this is going to make it as slow as under Purify et al.</li>
</ol>
<p>And, no: Shipping with Purify instrumentation built in is not an option.</p>
<p>A collegue just walked past and asked "Stack Overflow? Are we getting stack overflows now?!?"</p>
<p>And now, the question: <strong>How do I locate the heap corruptor?</strong></p>
<p><hr></p>
<p>Update: balancing new[] and delete[] seems to have gotten a long way towards solving the problem. Instead of 15mins, the app now goes about two hours before crashing. Not there yet. Any further suggestions? The heap corruption persists.</p>
<p>Update: a release build under Visual Studio 2008 seems dramatically better; current suspicion rests on the STL implementation that ships with VS98.</p>
http://stackoverflow.com/questions/6208/ff3-winxp-ff3-ubuntu-why2FF3 WinXP != FF3 Ubuntu - why?Josh2008-08-08T18:03:26Z2009-08-21T23:52:30Z
<p>I've got a website that I've just uploaded onto the interwebs, and it's displaying differently using Firefox 3.0.1 on Ubuntu and WinXP.</p>
<p>Two things I've noticed on Ubuntu:</p>
<ol>
<li>The favicon is missing </li>
<li>The background color isn't displaying (it's set in the stylesheet)</li>
</ol>
<p>What have I done wrong? The CSS file is being fetched under Ubuntu, so why isn't it applying all of the stylesheet, just the bits it likes? And why isn't the favicon displaying? Are they the same problem?</p>
<hr>
<p>The answer on the background color: invalid HTML. But I'd love for someone to explain why it works under Windows and not Ubuntu.</p>
<p>The answer on favicon: previously, there was no favicon. The browser cached the lack of favicon. <a href="http://pcsupport.about.com/od/maintenance/ht/clearcacheff.htm" rel="nofollow">Clear the Firefox cache</a>, and all is well.</p>
http://stackoverflow.com/questions/15537/how-do-i-generate-ascii-codes-2-and-3-in-a-bash-command-line2How do I generate ASCII codes 2 and 3 in a Bash command line?Josh2008-08-19T02:05:55Z2009-04-08T19:14:32Z
<p>If I press ctrl-b that ought to give me ASCII code 2, but ctrl-c is going to be interpreted as a Break.</p>
<p>So I figure I've got to redirect a file in. How do I get these characters into a file?</p>
http://stackoverflow.com/questions/6759/openid-which-provider-should-i-recommend-to-my-users5OpenID: which provider should I recommend to my users?Josh2008-08-09T13:14:34Z2008-11-30T21:20:26Z
<p>Have you used OpenID in anger?</p>
<p>I'm going to be using OpenID for authentication on my site. Which provider should I recommend to my users?</p>
<p>I'm thinking, based on the feedback that the OpenID auth is getting on StackOverflow, that I'd want to <strong>recommend one that does attribute exchange properly.</strong> So: who's that?</p>
http://stackoverflow.com/questions/176992/visual-c-redistributables-without-using-vcredistx86-exe5Visual C++ Redistributables without using VCRedist_x86.exeJosh2008-10-07T02:17:37Z2008-11-06T07:24:47Z
<p>I'm developing in an environment that is severely constrained, but the developers also have tight control over. </p>
<p>VCRedist_x86.exe - A 4Mb redistributable - is no fun (four hours to transfer). I'd really prefer to just redistribute MFC90.dll, msvcm90.dll, msvcp90.dll and msvcr90.dll - that's more like 2Mb. However, <a href="http://msdn.microsoft.com/en-us/library/ms235299.aspx" rel="nofollow">Redistributing Visual C++ Files</a> says:</p>
<blockquote>
<p>It is not supported to redistribute C/C++ applications that are built without a manifest. Visual C++ libraries cannot be used by C/C++ applications without a manifest binding the application to these libraries. For more information, see <a href="http://msdn.microsoft.com/en-us/library/ms235316.aspx" rel="nofollow">Choosing a Deployment Method</a>. </p>
</blockquote>
<p>My original plan of copying the DLLs into the program's working directory doesn't seem to
work in this brave new world of manifests.</p>
<p>My next guess is to bodge up the registry entries required to populate the files into the WinSxS directory and populate it myself (rather than using the 4 meg program).</p>
<p>[edit] The software is frequently updated, so DLLs are strongly preferred to static linking. [/edit] </p>
<p><strong>How can I sucessfully distribute the necessary files but keep the overhead down?</strong></p>
http://stackoverflow.com/questions/609/build-for-windows-nt-4-0-using-visual-studio-2005/1913#19131Answer by Josh for Build for Windows NT 4.0 using Visual Studio 2005?Josh2008-08-05T05:04:40Z2008-10-17T21:14:53Z<p><a href="http://msdn.microsoft.com/en-us/library/6sehtctf.aspx" rel="nofollow">2008 is the first Visual Studio that cannot target NT4</a>.</p>
http://stackoverflow.com/questions/25675/mvc-where-to-implement-form-validation-server-side/25678#256784Answer by Josh for MVC - where to implement form validation (server-side)?Josh2008-08-25T05:09:41Z2008-10-17T21:00:11Z<p>From Wikipedia:</p>
<blockquote>
<p><a href="http://en.wikipedia.org/wiki/Model_View_Controller" rel="nofollow">Model-view-controller</a> (MVC) is an architectural pattern used in software engineering. Successful use of the pattern isolates business logic from user interface considerations, resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other. In MVC, the model represents the information (the data) of the application and the business rules used to manipulate the data; the view corresponds to elements of the user interface such as text, checkbox items, and so forth; and the controller manages details involving the communication to the model of user actions such as keystrokes and mouse movements.</p>
</blockquote>
<p>Thus, model - it holds the application and the business rules.</p>
http://stackoverflow.com/questions/185327/oracle-joins-left-outer-right-etc-s/185428#1854280Answer by Josh for Oracle joins ( left outer, right, etc. :S ) Josh2008-10-09T00:01:59Z2008-10-09T00:01:59Z<p>What tickets are not closed:</p>
<pre><code>select identifier as closed_identifier
from performance where identifier not exists
(select identifier from performance where activity=4)
</code></pre>
<p>Tickets that are being attended:</p>
<pre><code>select identifier as inprogress_identifier, participant performance
from performance where activity=2
</code></pre>
<p>Unclosed tickets, with the participant of that are being attended:</p>
<pre><code>select * from
(select identifier as notclosed_identifier
from performance where identifier not exists
(select identifier from performance where activity=4)) closed
left join
(select identifier as inprogress_identifier, participant performance
from performance where activity=2) attended
on notclosed_identifier=inprogress_identifier
</code></pre>
http://stackoverflow.com/questions/185204/is-there-a-way-to-determine-whether-an-e-mail-reaches-its-destination/185250#1852500Answer by Josh for Is there a way to determine whether an e-mail reaches its destination?Josh2008-10-08T22:55:12Z2008-10-08T22:55:12Z<p>A <a href="http://en.wikipedia.org/wiki/Web_bug" rel="nofollow">web bug</a> might give you something like a read receipt, if that's what you're asking.</p>
http://stackoverflow.com/questions/147189/how-do-you-keep-a-balance-between-working-training-health-and-family/181079#1810791Answer by Josh for How do you keep a balance between working, training, health and family?Josh2008-10-08T01:32:42Z2008-10-08T01:32:42Z<p>Multitask. Previously, I got two or three things done on my one hour commute (via train, tram) to work: travel, personal programming, and perhaps listening to a podcast. Now I travel by bike, getting forty minutes of exercise in each direction and 'listening' to a podcast.</p>
http://stackoverflow.com/questions/173765/is-net-memory-management-faster-in-managed-code-than-in-native-code11Is .NET memory management faster in managed code than in native code?Josh2008-10-06T10:03:34Z2008-10-06T10:41:31Z
<p>I would have thought that it would be clear cut whether memory allocation is faster in managed code than in native code - <a href="http://stackoverflow.com/questions/173591/what-myths-have-you-heard-about-regarding-the-net-framework">but there seems to be some controversy</a>. Perhaps memory management under a Virtual Machine be faster because of no context-swapping calls to the OS, but then I see that the VM would itself need to make periodic calls to the OS for more memory, and it has the management overheads the memory itself rather than the OS.</p>
<p>Rather than making unsubstantiated assertions like I have, please provide links to references that support your position.</p>
http://stackoverflow.com/questions/169378/c-method-can-be-made-static-but-should-it/169382#1693822Answer by Josh for C# method can be made static, but should it?Josh2008-10-04T00:04:08Z2008-10-04T00:04:08Z<p>It helps to control namespace pollution.</p>
http://stackoverflow.com/questions/165212/linux-getting-umask-of-an-already-running-process/165305#1653050Answer by Josh for linux: getting umask of an already running process?Josh2008-10-03T01:04:54Z2008-10-03T01:04:54Z<p>If you're the current process, you can write a file to /tmp and check its setting. A better solution is to call umask(3) passing zero - the function returns the setting prior to the call - and then reset it back by passing that value back into umask.</p>
<p>The umask for another process doesn't seem to be exposed.</p>
http://stackoverflow.com/questions/88942/why-should-python-pep-8-specify-a-maximum-line-length-of-79-characters/89011#890116Answer by Josh for Why should Python PEP-8 specify a maximum line length of 79 characters?Josh2008-09-18T00:47:09Z2008-09-18T00:47:09Z<p>Printing a monospaced font at default sizes is (on A4 paper) 80 columns by 66 lines.</p>
http://stackoverflow.com/questions/79033/rules-about-disabling-or-hiding-menu-items/79068#790689Answer by Josh for Rules about disabling or hiding menu items Josh2008-09-17T01:48:26Z2008-09-17T01:48:26Z<p>If you're refering to Joel's post <a href="http://www.joelonsoftware.com/items/2008/07/01.html" rel="nofollow">Don't hide or disable menu items</a>, he <a href="https://stackoverflow.fogbugz.com/default.asp?W13086" rel="nofollow">clarified in the StackOverflow podcast</a> that he intended that there be information - not a dialog - telling you why a menu item wouldn't do anything:</p>
<blockquote>
<p>So, the use-case I was thinking of was, you had mentioned that in the Windows Media Player, you can play things faster when you're listening to podcasts and so forth, and it'll speed them up. And when I looked in there, that was disabled. And I couldn't figure out how to enable it. And obviously the help file is no help--not that anybody reads help files, but even if you did you couldn't find the answer to that. And that was kind of frustrating, and I'd rather have that menu item be enabled and have it just tell me "I'm not going to do this right now because of the following reason. I refuse to do this." </p>
</blockquote>
http://stackoverflow.com/questions/5674/how-do-i-create-an-html-anchor-in-a-fogbugz-wiki-page1How do I create an HTML anchor in a FogBugz wiki page?Josh2008-08-08T04:42:52Z2008-09-10T17:37:57Z
<p>The StackOverflow transcripts are enormous, and sometimes I want to link to a little bit within it.</p>
<p>How do I create an HTML anchor in a FogBugz wiki page?</p>
http://stackoverflow.com/questions/38940/generate-field-in-mysql-select/38942#3894210Answer by Josh for Generate field in MySQL SELECTJosh2008-09-02T06:53:23Z2008-09-02T06:53:23Z<pre><code>SELECT Field1, Field2, 'Value' Field3 FROM Table
</code></pre>
<p>or for clarity</p>
<pre><code>SELECT Field1, Field2, 'Value' AS Field3 FROM Table
</code></pre>
http://stackoverflow.com/questions/6732/why-no-favicon-for-my-web-site1Why no favicon for my web site?Josh2008-08-09T11:30:09Z2008-09-01T02:08:16Z
<p>I've got a website that I've just uploaded onto the interwebs, and when using Firefox 3.0.1 on Ubuntu I don't see the favicon; Firefox 3.0.1 on WinXP shows it.</p>
<p><strong>Why</strong> isn't the favicon displaying under Ubuntu? It's a favicon.ico file in the root directory, not referenced in the meta tags; would it work better as a GIF?</p>
http://stackoverflow.com/questions/37346/why-cant-a-forward-declaration-be-used-for-a-stdvector/37347#373473Answer by Josh for Why can't a forward declaration be used for a std::vector?Josh2008-09-01T01:29:36Z2008-09-01T01:29:36Z<p>To instantiate A::v, the compiler needs to know the concrete type of B.</p>
<p>If you're trying to minimize the amount of #included baggage to improve compile times, there are two things you can do, which are really variations of each other:</p>
<ol>
<li>Use a pointer to B</li>
<li>Use a lightweight <a href="http://en.wikipedia.org/wiki/Proxy_pattern" rel="nofollow">proxy</a> to B</li>
</ol>
http://stackoverflow.com/questions/29633/what-is-the-important-aspect-of-creating-online-communities/29638#296385Answer by Josh for What is the important aspect of creating online communities?Josh2008-08-27T06:49:19Z2008-08-29T03:53:31Z<p>Read two books (maybe just one - <em>Here Comes Everybody</em>)</p>
<p>From <a href="https://stackoverflow.fogbugz.com/default.asp?W12908" rel="nofollow">StackOverflow Podcast 12</a>:</p>
<blockquote>
<p><strong>Spolsky:</strong> <em><a href="http://books.google.com.au/books?id=Jhvfh6thHS8C&dq=%22Design+for+Community%22&pg=PP1&ots=Mnl49PxuG0&sig=Fo3T5HebjuF_waRCHczWchKi7hw&hl=en&sa=X&oi=book_result&resnum=1&ct=result#PPA270,M1" rel="nofollow">Design for Community</a></em>, <a href="http://powazek.com/" rel="nofollow">Derek [Pawazek]</a>'s book is one of the only books about, like, how to do UI design such that communities can get created. </p>
<p><strong>Spolsky:</strong> Oh, well that's sort of one of the classics. Since we are doing a-- we are designing for community. Now, it's a little bit-- I'm trying to remember why I'm not so excited about-- I'm half-hearted[ly] excited about it. It's a half-good book. I think that it doesn't really cover-- it doesn't really touch on all of the points of how to design for community, and it's a little outdated. But this is a guy that was building web communities and it shares his experiences, so there's a lot to learn from it. Let's put it this way, it's not quite-- you know, Clay Shirky's new book <a href="http://www.shirky.com/herecomeseverybody/" rel="nofollow"><strong><em>Here Comes Everybody</em></strong></a> sort of supersedes this a little bit.</p>
</blockquote>
http://stackoverflow.com/questions/33814/how-to-determine-if-an-html-tag-splits-across-multiple-lines/33841#338412Answer by Josh for How to determine if an html tag splits across multiple linesJosh2008-08-29T02:21:59Z2008-08-29T02:21:59Z<p>Don't write a parser, use someone else's: <a href="http://www.php.net/manual/en/domdocument.loadhtml.php" rel="nofollow">DOMDocument::loadHTML</a> - that's just one, I think there are a lot of others.</p>
http://stackoverflow.com/questions/31757/should-programmers-be-excellent-typists/31767#317675Answer by Josh for Should programmers be excellent typists?Josh2008-08-28T07:16:28Z2008-08-28T07:16:28Z<p>I learned to touch-type in high school. God I'm old.</p>
<p>Writing code alternates between needing to be a touch-typist (which I am) and doing weird things with your fingers (touch-typing isn't a big help here) {}#%!. But most of the time you're thinking anyways, so what does it matter?</p>
<p>Last type I tested (twenty years ago) my accuracy was pretty good. Given how often I hit backspace nowadays, not so much.</p>
<p>It's much handy for posting on StackOverflow.</p>
http://stackoverflow.com/questions/31722/anyone-have-a-diff-algorithm-for-rendered-html/31756#317560Answer by Josh for Anyone have a diff algorithm for rendered HTML?Josh2008-08-28T07:06:15Z2008-08-28T07:06:15Z<p>Okay, so you want </p>
<pre><code><body style="background-color:white">
<p>Hi Mom
<p>Hi Dad
</body>
</code></pre>
<p>diffed against </p>
<pre><code><body style="background-color:white">
<p>Hi Dad
</body>
</code></pre>
<p>to generate this HTML:</p>
<pre><code><body style="background-color:white">
<p style="color:white">Hi Mom
<p>Hi Dad
</body>
</code></pre>
<p>Right?</p>
http://stackoverflow.com/questions/31722/anyone-have-a-diff-algorithm-for-rendered-html/31728#317282Answer by Josh for Anyone have a diff algorithm for rendered HTML?Josh2008-08-28T06:43:29Z2008-08-28T06:43:29Z<p>So, you expect</p>
<pre><code><font face="Arial">Hi Mom</font>
</code></pre>
<p>and</p>
<pre><code><span style="font-family:Arial;">Hi Mom</span>
</code></pre>
<p>to be considered the same?</p>
<p>The output depends very much on the User Agent. Like <a href="http://beta.stackoverflow.com/questions/31722#31727" rel="nofollow">Ionut Anghelcovici suggests</a>, make an image. Do one for every browser you care about.</p>
http://stackoverflow.com/questions/29643/which-is-a-better-approach-in-logging-files-or-db/29651#296510Answer by Josh for Which is a better approach in logging - files or DB?Josh2008-08-27T07:07:26Z2008-08-27T07:07:26Z<p>There are ways you can work around the limitations of file logging.</p>
<p>You can always start each log entry with a thread id of some kind, and grep out the individual thread ids. Or a different log file for each thread. </p>
<p>I've logged to database in the past, in a separate thread at a lower priority. I must say, queryability is very valuable when you're trying to figure out what went wrong.</p>
http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/29493#2949316Answer by Josh for Practical non-image based CAPTCHA approaches?Josh2008-08-27T04:04:26Z2008-08-27T04:57:21Z<p>Avoid the <a href="http://www.docstoc.com/docs/1048763/Worst-Captchas-of-All-Time" rel="nofollow">worst CAPTCHAs of all time</a>.</p>
<blockquote>
<p>Trivia is OK, but you'll have to write each of them :-(</p>
</blockquote>
<p><em>Someone</em> would have to write them. </p>
<p>You could do trivia questions in the same way ReCaptcha does printed words. It offers two words, one of which it knows the answer to, another which it doesn't - after enough answers on the second, it now knows the answer to that too. Ask two trivia questions:</p>
<p>A woman needs a man like a fish needs a?</p>
<p>Orange orange orange. Type green.</p>
<p>Of course, this may need to be coupled with other techniques, such as timers or computed secrets. Questions would need to be rotated/retired, so to keep the supply of questions up you could ad-hoc add:</p>
<p>Enter your obvious question: </p>
<p>You don't even need an answer; other humans will figure that out for you. You may have to allow flagging questions as "too hard", like this one: "asdf ejflf asl;jf ei;fil;asfas".</p>
<p>Now, to slow someone who's running a StackOverflow gaming bot, you'd rotate the questions by IP address - so the same IP address doesn't get the same question until <em>all</em> the questions are exhausted. This slows building a dictionary of known questions, forcing the human owner of the bots to answer all of your trivia questions.</p>
http://stackoverflow.com/questions/27405/whats-the-fastest-way-to-multiply-a-16-bit-integer-by-a-double/27483#274830Answer by Josh for Whats the fastest way to multiply a 16-bit integer by a double?Josh2008-08-26T06:28:05Z2008-08-26T07:07:43Z<blockquote>
<p>On my platform ( Atmel AVR 8-bit micro-controller, running gcc )</p>
</blockquote>
<pre><code>16bit_integer = another_16bit_integer * 0.997;
</code></pre>
<blockquote>
<p>Takes about 26 instructions.</p>
</blockquote>
<pre><code>16bit_integer = (int16_t) (another_16bit_integer * (int32_t) 997 / 1000);
</code></pre>
<blockquote>
<p>Takes about 25 instructions.</p>
</blockquote>
<p>The <a href="http://en.wikipedia.org/wiki/Atmel_AVR" rel="nofollow">Atmel AVR</a> is a RISC chip, so counting instructions is a valid comparison.</p>
http://stackoverflow.com/questions/27492/c-memory-management/27494#274946Answer by Josh for C++ Memory managementJosh2008-08-26T06:52:34Z2008-08-26T06:58:00Z<p>Rules:</p>
<ol>
<li>Wherever possible, use a
<a href="http://en.wikipedia.org/wiki/Smart_pointer" rel="nofollow">smart pointer</a>. Boost has some
<a href="http://www.boost.org/doc/libs/1_35_0/libs/smart_ptr/sp_techniques.html" rel="nofollow">good ones</a>. </li>
<li>If you
can't use a smart pointer, <a href="http://pclc.pace.edu/~bergin/papers/PointerTraps.html" rel="nofollow">null out
your pointer after deleting it</a>.</li>
<li>Never work anywhere that won't let you use rule 1.</li>
</ol>
<p>If someone disallows rule 1, remember that if you grab someone else's code, change the variable names and delete the copyright notices, no-one will ever notice. Unless it's a school project, where they actually check for that kind of shenanigans with quite sophisticated tools. See also, <a href="http://beta.stackoverflow.com/questions/21506/please-sir-send-me-the-codes" rel="nofollow">this question</a>.</p>
http://stackoverflow.com/questions/27405/whats-the-fastest-way-to-multiply-a-16-bit-integer-by-a-double/27479#274790Answer by Josh for Whats the fastest way to multiply a 16-bit integer by a double?Josh2008-08-26T06:19:14Z2008-08-26T06:27:14Z<blockquote>
<p>Precomputed lookup table:</p>
</blockquote>
<pre><code>16bit_integer = products[another_16bit_integer];
</code></pre>
<p>That's not going to work so good on the AVR, the 16bit address space is going to be exhausted.</p>
http://stackoverflow.com/questions/226469/what-is-the-most-clever-code-youve-ever-seen/226511#226511Comment by Josh on What is the most clever code you've ever seen?Josh2008-10-22T16:26:46Z2008-10-22T16:26:46ZCheck the Obfuscated C Competitionhttp://stackoverflow.com/questions/213027/simple-c-function-is-this-code-good/213244#213244Comment by Josh on Simple C++ function -- Is this code "good"?Josh2008-10-17T20:49:09Z2008-10-17T20:49:09ZIf there was control over crappy tools, it would have been exercised. Let go, move on.http://stackoverflow.com/questions/173765/is-net-memory-management-faster-in-managed-code-than-in-native-code/173787#173787Comment by Josh on Is .NET memory management faster in managed code than in native code?Josh2008-10-06T10:34:06Z2008-10-06T10:34:06ZFrom the article: "Reference types and boxed value types live in the heap. They are addressed by object references, which are simply machine pointers just like object pointers in C/C++." In native C++, the heap is supplied by the OS; is it supplied by the VM in .NET?http://stackoverflow.com/questions/173765/is-net-memory-management-faster-in-managed-code-than-in-native-code/173787#173787Comment by Josh on Is .NET memory management faster in managed code than in native code?Josh2008-10-06T10:17:51Z2008-10-06T10:17:51ZWouldn't that lead to an ever-growing stack? And stack fragmentation?http://stackoverflow.com/questions/169359/improving-code-readability-for-sql-commands/169369#169369Comment by Josh on Improving code readability for SQL commandsJosh2008-10-04T00:06:24Z2008-10-04T00:06:24ZMissing matching close )shttp://stackoverflow.com/questions/69115/char-to-hex-string-exercise/70348#70348Comment by Josh on char[] to hex string exerciseJosh2008-09-17T05:53:33Z2008-09-17T05:53:33ZMore bytes at a time ought to work great, up to the system's word sizehttp://stackoverflow.com/questions/69115/char-to-hex-string-exercise/70254#70254Comment by Josh on char[] to hex string exerciseJosh2008-09-17T05:52:12Z2008-09-17T05:52:12Z>200,000,000 <s>million</s> characters