User 20th Century Boy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T22:55:19Z http://stackoverflow.com/feeds/user/91147 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/871354/bjarnes-new-book-anyone-done-the-exercises 7 Bjarne's new book - anyone done the exercises? 20th Century Boy 2009-05-16T00:28:55Z 2009-11-28T07:26:35Z <p>I'm doing the exercises in Stroustrup's new book <a href="http://www.stroustrup.com/Programming/" rel="nofollow">"Programming Principles and Practice Using C++"</a> and was wondering if anyone on SO has done them and is willing to share the knowledge? Specifically about the calculator that's developed in Chap 6 and 7. Eg the questions about adding the ! operator and sqrt(), pow() etc. I have done these but I don't know if the solution I have is the "good" way of doing things, and there are no published solutions on Bjarne's website. I'd like to know if I am going down the right track. Maybe we can make a wiki for the exercises?</p> <p>Basically I have a token parser. It reads a char at a time from cin. It's meant to tokenise expressions like 5*3+1 and it works great for that. One of the exercises is to add a sqrt() function. So I modified the tokenising code to detect "sqrt(" and then return a Token object representing sqrt. In this case I use the char 's'. Is this how others would do it? What if I need to implement sin()? The case statement would get messy. </p> <pre><code>char ch; cin &gt;&gt; ch; // note that &gt;&gt; skips whitespace (space, newline, tab, etc.) switch (ch) { case ';': // for "print" case 'q': // for "quit" case '(': case ')': case '+': case '-': case '*': case '/': case '!': return Token(ch); // let each character represent itself case '.': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { cin.putback(ch); // put digit back into the input stream double val; cin &gt;&gt; val; // read a floating-point number return Token('8',val); // let '8' represent "a number" } case 's': { char q, r, t, br; cin &gt;&gt; q &gt;&gt; r &gt;&gt; t &gt;&gt; br; if (q == 'q' &amp;&amp; r == 'r' &amp;&amp; t == 't' &amp;&amp; br == '(') { cin.putback('('); // put back the bracket return Token('s'); // let 's' represent sqrt } } default: error("Bad token"); } </code></pre> http://stackoverflow.com/questions/880559/algorithm-to-get-a-list-of-all-words-that-are-anagrams-of-all-substrings-scrabbl 2 Algorithm to get a list of all words that are anagrams of all substrings (scrabble)? 20th Century Boy 2009-05-19T01:16:41Z 2009-11-05T01:38:58Z <p>Eg if input string is helloworld I want the output to be like:</p> <pre><code>do he we low hell hold roll well word hello lower world ... </code></pre> <p>all the way up to the longest word that is an anagram of a substring of helloworld. Like in Scrabble for example. The input string can be any length, but rarely more than 16 chars.</p> <p>I've done a search and come up with structures like a trie, but I am still unsure of how to actually do this.</p> http://stackoverflow.com/questions/1135568/conditions-of-use-dialog-for-windows-logins 1 Conditions of Use dialog for Windows logins 20th Century Boy 2009-07-16T05:36:26Z 2009-07-16T07:09:34Z <p>I need to design a "Conditions of Use" dialog that is presented to users after they logon to Windows XP. It must not allow the user to proceed until they check an "I agree" box. It must not be possible to shut it using Task Manager or any other method. And it should be fullscreen and modal. The "I agree" will remain checked automatically during subsequent logins for the duration of 1 month, after which the user will need to check it again. Also HR want to track who has checked the checkbox.</p> <p>Is such a thing possible using .Net? I can use C# to design it but I'm not sure about how to prevent users from bypassing the dialog. </p> <p>I know Windows Group Policy allows a dialog to be presented before login, but that does not allow a checkbox or any customization.</p> <p>Any thoughts?</p> http://stackoverflow.com/questions/1110448/how-do-i-import-a-visual-c-project-into-qt-creator/1135362#1135362 2 Answer by 20th Century Boy for How do I import a Visual C++ project into QT Creator? 20th Century Boy 2009-07-16T04:19:57Z 2009-07-16T04:19:57Z <p>You can export to a pro file (or maybe a pri file, can't remember) from the Qt menu in VS. </p> http://stackoverflow.com/questions/1113082/beginners-guide-to-setting-up-qt-for-c/1113161#1113161 1 Answer by 20th Century Boy for Beginner's Guide to Setting Up Qt for C++ 20th Century Boy 2009-07-11T07:32:10Z 2009-07-11T07:32:10Z <p>Hi there, I have covered Qt and VS 2008 integration in my blog. Have a look at it here... <a href="http://cplusplus-mortals.blogspot.com/2009/04/qt-part-3-configuration-for-visual.html" rel="nofollow">http://cplusplus-mortals.blogspot.com/2009/04/qt-part-3-configuration-for-visual.html</a></p> http://stackoverflow.com/questions/1025077/visual-studio-release-build/1025092#1025092 1 Answer by 20th Century Boy for Visual studio release build 20th Century Boy 2009-06-22T00:06:16Z 2009-06-22T00:06:16Z <p>Are you loading external resources? If you are check that your relative paths are correct in the C++ program.</p> http://stackoverflow.com/questions/972299/best-practices-for-alt-tab-support-in-a-directx-app/999312#999312 1 Answer by 20th Century Boy for Best practices for Alt-Tab support in a DirectX app? 20th Century Boy 2009-06-16T02:09:59Z 2009-06-16T02:09:59Z <p>In DX8 and 9 (and 10?) if you create your resources (vertex and index buffers and textures mainly) using D3DPOOL_MANAGED they will persist across lost devices and will not need reloading. This is because they are stored in system memory and the DX runtime copies to video memory automatically. However there is a performance cost due to the copying and this is not recommended for rapidly changing vertex data. Of course you would profile first to determine if there is a speed issue :-)</p> http://stackoverflow.com/questions/944516/what-are-the-most-used-string-types-in-c-and-how-to-convert-between-them/944534#944534 0 Answer by 20th Century Boy for What are the most-used string types in C++ and how to convert between them? 20th Century Boy 2009-06-03T12:45:57Z 2009-06-03T12:45:57Z <p>Welcome to C++ ;-)</p> <p>You can just create a wrapper function that accepts a <code>std::string</code>. Then in the function extract the c-style string and pass to <code>OutputDebugStringW</code>.</p> http://stackoverflow.com/questions/934358/what-type-to-use-for-integers-larger-than-232-in-c/934492#934492 0 Answer by 20th Century Boy for What type to use for integers larger than 2^32 in C++? 20th Century Boy 2009-06-01T11:44:39Z 2009-06-01T11:44:39Z <p>Try <a href="http://www.ttmath.org/ttmath" rel="nofollow">TTMath</a>. All you need to do is include a single header and then declare a bignum type such as:</p> <pre><code>typedef ttmath::UInt&lt;100&gt; BigInt; </code></pre> <p>which creates a type that can hold unsigned integers between 0 and 2 ^ (32*100)-1. Then just use <code>BigInt</code> wherever you would use <code>int</code>.</p> <p>Of course you can choose whatever size you like for the template parameter. 100 might be overkill ;-)</p> <p>Just realised, the lib only works on x86 and x64, but is OS cross-platform on those processors.</p> http://stackoverflow.com/questions/926752/why-should-i-prefer-to-use-member-initialization-list/929693#929693 1 Answer by 20th Century Boy for Why should I prefer to use member initialization list? 20th Century Boy 2009-05-30T12:51:11Z 2009-05-30T12:51:11Z <p>But remember that the order of initialization is the order that the members are declared in the class, not the order of the initialization list.</p> http://stackoverflow.com/questions/921757/teaching-an-old-dog-new-tricks/921812#921812 2 Answer by 20th Century Boy for Teaching an old dog new tricks 20th Century Boy 2009-05-28T16:21:40Z 2009-05-28T16:21:40Z <p>I've never understood why people talk about OOP or procedural as if they are mutually exclusive. I mean, in OOP you have your classes etc but the class methods are usually procedural in style. They are just fancy function calls. I used C/Pascal for years and most of that stuff is still applicable in OOP languages. Any intro Java or .NET book will have enough examples to bring him up to speed on basic OOP terminology.</p> http://stackoverflow.com/questions/910528/how-to-change-the-acls-from-c/910605#910605 1 Answer by 20th Century Boy for how to change the ACLs from c++? 20th Century Boy 2009-05-26T13:13:36Z 2009-05-26T13:13:36Z <p>I assume you mean on a Windows system? You need to use the NTFS part of the Win32 API, which is what cacls uses. Browse through MSDN, it'll be in there somewhere. Eg <a href="http://msdn.microsoft.com/en-us/library/aa379588%28VS.85%29.aspx" rel="nofollow">SetSecurityInfo</a></p> http://stackoverflow.com/questions/910020/what-is-the-advantage-of-having-this-self-pointer-mandatory-explicit/910029#910029 3 Answer by 20th Century Boy for What is the advantage of having this/self pointer mandatory explicit? 20th Century Boy 2009-05-26T10:35:40Z 2009-05-26T10:42:46Z <p>What if the arguments to a method have the same name as the member variables? Then you can use <code>this.x = x</code> for example. Where <code>this.x</code> is the member variable and <code>x</code> is the method argument. That's just one (trivial) example.</p> http://stackoverflow.com/questions/861424/too-old-for-sysadmin-to-change-to-a-programming-career 5 Too old for sysadmin to change to a programming career? 20th Century Boy 2009-05-14T03:32:15Z 2009-05-25T19:32:54Z <p>I'm 41, currently a sys admin for a large-ish company. I graduated in 1989 with a Comp Sci degree, but never took a programming job. What would your advice be if I said I wanted to move into a programming career now? Too old? Naive? I have kept reasonably up to date over the years and know a fair bit of C++ and Java but only used for hobby projects. I use SQL Server regularly but more from an admin perspective. I have written a few internal utilities in scripting languages. Any thoughts? </p> http://stackoverflow.com/questions/905765/allocating-and-freeing-a-char-in-c/905782#905782 3 Answer by 20th Century Boy for allocating and freeing a char * in c++ 20th Century Boy 2009-05-25T07:44:02Z 2009-05-25T07:44:02Z <p>Why do you need to use the heap? If all you need is space for 1 char can't you just use a local variable:</p> <pre><code>char c; _gcvt_s(&amp;c... </code></pre> <p>?</p> http://stackoverflow.com/questions/896290/recursively-generate-ordered-substrings-from-an-ordered-sequence-of-chars 3 Recursively generate ordered substrings from an ordered sequence of chars? 20th Century Boy 2009-05-22T04:03:56Z 2009-05-22T13:00:27Z <p><strong><em>Edited after getting answers</em></strong><p> Some excellent answers here. I like Josh's because it is so clever and uses C++. However I decided to accept Dave's answer because of it's simplicity and recursion. I tested them both and they both produced identical correct results (although in a different order). So thanks again everyone.</p> <p><hr /></p> <p>Say I have a string s of chars s[0]:s[N] and where each char s[i] &lt;= s[i+1] For example the string</p> <pre><code>aaacdddghzz </code></pre> <p>I want to generate all combinations of substrings while keeping the same relationship between chars.</p> <p>So for example I would get</p> <pre><code>a aa aaa ad aad aaad add aadd aaadd addd aaddd aaaddd d dd ddd . . . ac aac . . . acdddghzz aacdddghzz aaacdddghzz </code></pre> <p>But not</p> <pre><code>ca hdz ...etc </code></pre> <p>Now I know how to work out how many combinations there are. You create a histogram of the frequency of letters in the string. So in the above example the that would be</p> <p>For string aaacdddghzz</p> <pre><code>a=3 d=3 c=1 g=1 h=1 z=2 </code></pre> <p>and the formula is <code>(a+1)(c+1)(d+1)(g+1)(h+1)(z+1) = 4*4*2*2*2*3 = 384</code>. There are 384 substrings that keep the s[i] &lt;=s [i+1] relationship.</p> <p>So the question is how do I generate those 384 substrings recursively? Actually an iterative method would be just as good, maybe better as large strings with many unique chars might cause the stack to overflow. This sounds like homework but it isn't. I'm just useless at coming up with algorithms like this. I use C++ but pseudocode would be fine.</p> http://stackoverflow.com/questions/896968/decrease-qt-gui-application-size/897452#897452 1 Answer by 20th Century Boy for Decrease Qt GUI application size 20th Century Boy 2009-05-22T11:41:50Z 2009-05-22T11:41:50Z <p>If you link statically you end up with a 1.5GB exe and you sacrifice some functionality like plug-ins. So it's not really worth it unless you don't want to distribute the dlls. But yeah, you could try Henrik's suggestion and also exclude Webkit which is probably the biggest chunk of code.</p> http://stackoverflow.com/questions/109684/what-are-some-examples-of-exceptional-c-open-source-code/896730#896730 1 Answer by 20th Century Boy for What are some examples of exceptional C++ open-source code? 20th Century Boy 2009-05-22T07:32:40Z 2009-05-22T07:32:40Z <p>You could check out <a href="http://www.cryptopp.com/" rel="nofollow">Crypto++</a>, a C++ encryption library. I've used it for simple MD5 hashing but it's hugely powerful.</p> <p>From the <a href="http://www.cryptopp.com/fom-serve/cache/1.html" rel="nofollow">FAQ</a>:</p> <blockquote> <p>The library is an powerful and elegant tool for performing complex cryptography. It uses advanced C++ features such as templates, multiple inheritance, and exceptions to achieve that power and elegance.</p> <p>For people who are familiar with C++, the library will appear intuitive and easy to use. Others may need to view it as a learning opportunity. If you are a C++ beginner and you are under a very tight schedule, or if you are "afraid" of the more advanced features of C++, this library may not be for you.</p> </blockquote> http://stackoverflow.com/questions/896654/cout-or-printf-which-of-the-two-has-a-faster-execution-speed-c/896679#896679 1 Answer by 20th Century Boy for cout or printf which of the two has a faster execution speed C++? 20th Century Boy 2009-05-22T07:08:44Z 2009-05-22T07:08:44Z <p>In practical terms I have always found printf to be faster than cout. But then again, cout does a lot more for you in terms of type safety. Also remember printf is a simple function whereas cout is an object based on a complex streams hierarchy, so it's not really fair to compare execution times.</p> http://stackoverflow.com/questions/883644/educational-ide-to-start-programming-in-c/883686#883686 2 Answer by 20th Century Boy for Educational IDE to start programming in C++? 20th Century Boy 2009-05-19T16:11:15Z 2009-05-19T16:11:15Z <p>Until the last point I would have said Microsoft Visual C++ Express Edition, which is free and fits your first 4 criteria. Cross platform you'd be looking at something like emacs or vim, neither of which are particularly friendly. On Windows I actually use Notepad++ for small C++ programs as it has good syntax highlighting and a (limited) intellisense.</p> http://stackoverflow.com/questions/871354/bjarnes-new-book-anyone-done-the-exercises/880473#880473 5 Answer by 20th Century Boy for Bjarne's new book - anyone done the exercises? 20th Century Boy 2009-05-19T00:41:14Z 2009-05-19T00:41:14Z <p>I thought a map of strings to function pointers might be a concise way to represent things like sqrt, sin, cos etc that take a single double and return a double:</p> <pre><code>map&lt;std::string, double (*)(double)&gt; funcs; funcs["sqrt"] = &amp;sqrt; funcs["sin"] = &amp;sin; funcs["cos"] = &amp;cos; </code></pre> <p>Then when the parser detects a correct string (str) it can call the function with an argument (arg) like so:</p> <pre><code>double result = funcs[str](arg); </code></pre> <p>With this method a single call can handle all cases of functions (of that type).</p> <p>Actually I'm not sure if that's the correct syntax, can anyone confirm? </p> <p>Does this seem like a useable method?</p> http://stackoverflow.com/questions/875686/advice-for-c-gui-programming/875952#875952 1 Answer by 20th Century Boy for Advice for C++ GUI programming. 20th Century Boy 2009-05-18T01:47:56Z 2009-05-18T01:47:56Z <p>+1 for Qt. I would put documentation at the top of my list of requirements for a GUI system. Qt has great docs and there's a huge community behind it. Also there are several books about it. Good docs are extremely important if you are working alone with no other team members to rely on. Alternatives are wxWidgets, MFC, WTL, FLTK and many more. They all have pros and cons. Eg FLTK is small and only provides GUI whereas Qt and wxWidgets also include networking, database access etc. Qt seems to have the most momentum at the moment after the Nokia buyout eg the release of Qt Creator which enables you to develop apps outside of Visual Studio. </p> http://stackoverflow.com/questions/871336/is-there-a-way-to-combine-qt-creator-boost-library/871363#871363 3 Answer by 20th Century Boy for is there a way to combine Qt-Creator + Boost Library? 20th Century Boy 2009-05-16T00:32:09Z 2009-05-16T00:32:09Z <p>Boost is not just one library, it's a collection of them. Some are just header files, in those cases you just need to #include them in your source as normal. Which Boost functionality do you require?</p> http://stackoverflow.com/questions/279996/what-is-the-worst-software-idea-youve-had/845027#845027 2 Answer by 20th Century Boy for What is the worst software idea you've had? 20th Century Boy 2009-05-10T09:54:25Z 2009-05-10T09:54:25Z <p>POP3 client. In Java. Just what the world needed!</p> http://stackoverflow.com/questions/838721/c-iterators-considered-harmful/838829#838829 1 Answer by 20th Century Boy for C++ Iterators Considered Harmful? 20th Century Boy 2009-05-08T08:37:56Z 2009-05-08T08:37:56Z <ol> <li>Sometimes</li> <li>Probably</li> <li>Not likely, at least not for many years</li> </ol> http://stackoverflow.com/questions/835717/the-directory-name-is-invalid-error-on-process-start/835761#835761 0 Answer by 20th Century Boy for "The directory name is invalid" error on Process.Start? 20th Century Boy 2009-05-07T16:38:44Z 2009-05-07T16:38:44Z <p>Sounds like the process can't see the Z: drive or doesn't have security access. What user context does the app run under? Perhaps the Z: drive is not available in that context.</p> http://stackoverflow.com/questions/834448/is-it-possible-to-ldap-query-users-common-to-a-set-of-groups/834524#834524 1 Answer by 20th Century Boy for Is it possible to LDAP query users common to a set of groups 20th Century Boy 2009-05-07T13:01:40Z 2009-05-07T13:07:16Z <p>Try this:</p> <pre><code>(&amp;(objectCategory=Person) (&amp; (memberOf=CN=group1,dc=company,dc=local) (memberOf=CN=group2,dc=company,dc=local) (memberOf=CN=group3,dc=company,dc=local) ) ) </code></pre> <p>This is similar to <a href="http://stackoverflow.com/questions/823069/active-directory-a-script-to-find-all-users-that-arent-in-a-set-of-groups">my question</a>, except there I wanted all users who were NOT members of groups. You'll need to delete all the whitespace for most query tools to work.</p> http://stackoverflow.com/questions/823069/active-directory-a-script-to-find-all-users-that-arent-in-a-set-of-groups 1 Active Directory - a script to find all users that aren't in a set of groups? 20th Century Boy 2009-05-05T02:35:14Z 2009-05-06T05:39:02Z <p>I have a set of 10 AD groups. What I'd like is to programmatically find out which users in the AD domain are NOT members of those 10 groups. There is only one domain. I know it's possible to perform ADO SQL queries in a vbscript but I was wondering (hoping, praying) if someone had a canned script? </p> <p>I suppose a hacky way might be:</p> <ol> <li>Dump all users from the 10 groups</li> <li>Dump all users from the domain</li> <li>Run a windiff on the 2 dumps</li> </ol> <p>Any ideas?</p> http://stackoverflow.com/questions/823069/active-directory-a-script-to-find-all-users-that-arent-in-a-set-of-groups/828177#828177 1 Answer by 20th Century Boy for Active Directory - a script to find all users that aren't in a set of groups? 20th Century Boy 2009-05-06T05:39:02Z 2009-05-06T05:39:02Z <p>For anyone interested, this worked:</p> <pre><code>(&amp;(objectCategory=Person) (&amp; (!memberOf=CN=group1,dc=company,dc=local) (!memberOf=CN=group2,dc=company,dc=local) (!memberOf=CN=group3,dc=company,dc=local) ) ) </code></pre> http://stackoverflow.com/questions/828127/what-are-the-options-to-replace-java-swing-gui/828157#828157 1 Answer by 20th Century Boy for What are the options to replace Java Swing GUI? 20th Century Boy 2009-05-06T05:32:05Z 2009-05-06T05:32:05Z <p>You know Swing can run in a web page! There are many other options including PHP, ASP, Ajax etc etc. How "heavy" is the Swing app i.e. are there lots of widgets? This is a very open ended question!</p> http://stackoverflow.com/questions/880559/algorithm-to-get-a-list-of-all-words-that-are-anagrams-of-all-substrings-scrabbl/1677830#1677830 Comment by 20th Century Boy on Algorithm to get a list of all words that are anagrams of all substrings (scrabble)? 20th Century Boy 2009-11-19T01:25:51Z 2009-11-19T01:25:51Z Yes I did. I wrapped it up in a Qt GUI so it's a nice little standalone app. I'll post a link up shortly when I find some web space. http://stackoverflow.com/questions/1141408/runtime-error-possible-input-problem Comment by 20th Century Boy on Runtime error, possible input problem? 20th Century Boy 2009-07-17T04:26:42Z 2009-07-17T04:26:42Z What is the Operating System? http://stackoverflow.com/questions/1135594/backup-through-lan-network Comment by 20th Century Boy on Backup Through LAN network 20th Century Boy 2009-07-16T05:49:33Z 2009-07-16T05:49:33Z Try asking in ServerFault.com, this is more of a sysadmin question. http://stackoverflow.com/questions/1113082/beginners-guide-to-setting-up-qt-for-c/1113161#1113161 Comment by 20th Century Boy on Beginner's Guide to Setting Up Qt for C++ 20th Century Boy 2009-07-12T09:23:13Z 2009-07-12T09:23:13Z I tried compiling without mingw and it failed during the configure phase. I could only get it to work by installing mingw. http://stackoverflow.com/questions/1007840/i-feel-a-bit-lost-with-programming Comment by 20th Century Boy on I feel a bit lost with programming... 20th Century Boy 2009-06-17T15:57:55Z 2009-06-17T15:57:55Z I'm 41 and I still don't get the big picture. I'm pretty good at the small pictures though. http://stackoverflow.com/questions/58640/great-programming-quotes/59848#59848 Comment by 20th Century Boy on Great programming quotes 20th Century Boy 2009-06-02T08:31:35Z 2009-06-02T08:31:35Z @Hoffmann - I saw this elsewhere on SO - &quot;In order to understand recursion, one must first understand recursion, until one understands it.&quot; How's that for an exit?! http://stackoverflow.com/questions/251007/how-difficult-is-it-to-turn-a-java-school-programmer-into-a-c-or-c-programmer/930988#930988 Comment by 20th Century Boy on How difficult is it to turn a "Java School" programmer into a C or C++ programmer? 20th Century Boy 2009-05-31T01:11:35Z 2009-05-31T01:11:35Z You were doing ok until your final 3 paragraphs. http://stackoverflow.com/questions/921757/teaching-an-old-dog-new-tricks/921837#921837 Comment by 20th Century Boy on Teaching an old dog new tricks 20th Century Boy 2009-05-28T22:58:05Z 2009-05-28T22:58:05Z Community Wiki methinks. http://stackoverflow.com/questions/329289/really-wow-them-in-the-interview/329299#329299 Comment by 20th Century Boy on Really "wow" them in the interview 20th Century Boy 2009-05-28T16:39:02Z 2009-05-28T16:39:02Z Completely disagree with item 1. It's forced humour and way too familiar/cutesy. I would be cringing if I interviewed someone who said that. http://stackoverflow.com/questions/212669/do-the-concepts-in-accelerated-c-practical-programming-by-example-still-hold-up Comment by 20th Century Boy on Do the concepts in Accelerated C++ Practical Programming by Example still hold up today? 20th Century Boy 2009-05-28T16:30:11Z 2009-05-28T16:30:11Z What a bizarre question. I have read Accelerated C++ a couple of times now and you are 100% incorrect in your first statement. The whole book is designed to show you how to program in modern C++, including OOP, templates and procedural. Nowhere does it state &quot;Object Oriented Programming is highly wasteful memory-wise&quot;. http://stackoverflow.com/questions/361363/how-to-measure-time-in-milliseconds-using-ansi-c/380446#380446 Comment by 20th Century Boy on How to measure time in milliseconds using ANSI C? 20th Century Boy 2009-05-27T03:25:17Z 2009-05-27T03:25:17Z clock_gettime() is not ANSI C. http://stackoverflow.com/questions/861424/too-old-for-sysadmin-to-change-to-a-programming-career/907807#907807 Comment by 20th Century Boy on Too old for sysadmin to change to a programming career? 20th Century Boy 2009-05-26T00:33:17Z 2009-05-26T00:33:17Z Thanks for the input, very interesting! http://stackoverflow.com/questions/905765/allocating-and-freeing-a-char-in-c/905782#905782 Comment by 20th Century Boy on allocating and freeing a char * in c++ 20th Century Boy 2009-05-25T09:07:21Z 2009-05-25T09:07:21Z Well, that will happen if _gcvt_s writes more than 1 char using the pointer. In that case you need to pass a bigger buffer. http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/405959#405959 Comment by 20th Century Boy on Worst UI You've Ever Used 20th Century Boy 2009-05-25T07:38:54Z 2009-05-25T07:38:54Z Wow, so cool man, he's got like music in his head or something. Rad! http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/343740#343740 Comment by 20th Century Boy on Worst UI You've Ever Used 20th Century Boy 2009-05-25T07:37:09Z 2009-05-25T07:37:09Z What on earth were they thinking?!