User justinhj - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:51:06Z http://stackoverflow.com/feeds/user/53120 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1808035/emacs-zen-coding-mode-and-putty/1809261#1809261 0 Answer by justinhj for Emacs, Zen-Coding mode, and Putty. justinhj 2009-11-27T15:05:10Z 2009-11-27T16:29:11Z <p>You can bind the key to a function that tests the buffer name against a regexp and does something different depending on if it matches. You'd need to modify the regexp to match the name of the zen preview, and replace my insert command with the zen command you need.</p> <pre><code>(global-set-key "\M-\r" 'cond-buffer) (defun cond-buffer() (interactive) (if (string-match ".*preview.*" (buffer-name)) (insert "you're in a preview buffer") nil)) </code></pre> http://stackoverflow.com/questions/1791578/how-do-i-convert-a-char-string-to-a-wchart-string 0 How do I convert a char string to a wchar_t string? justinhj 2009-11-24T17:17:32Z 2009-11-24T19:11:40Z <p>I have a string in <code>char*</code> format and would like to convert it to <code>wchar_t*</code>, to pass to a Windows function.</p> http://stackoverflow.com/questions/1766258/how-do-you-set-a-date-in-a-mysql-update-from-a-milliseconds-since-epoch-value 0 How do you set a date in a mysql update from a milliseconds since epoch value? justinhj 2009-11-19T20:22:39Z 2009-11-19T20:53:40Z <p>I want to fill out some null dates with default dates, which should be the epoch date. </p> <p>eg set updateDate = somethingtoconvertEpochDateToDateTime(numberofMillisSinceEpoch)</p> http://stackoverflow.com/questions/1750950/setting-up-an-emacs-environment-in-windows/1754056#1754056 0 Answer by justinhj for Setting up an emacs environment in windows? justinhj 2009-11-18T06:32:48Z 2009-11-18T06:32:48Z <p>Eclipse is pretty good on Windows; I'm a big user of emacs but for Java development I spend most of my time in Eclipse. </p> <p>Regarding general use of emacs on windows I highly recommend you install <a href="http://gnuwin32.sourceforge.net/" rel="nofollow">GnuWin32</a>, as it is much faster than Cygwin and integrates very well. Also see my blog post on <a href="http://justinsboringpage.blogspot.com/2007/09/11-visual-studio-tricks-in-emacs.html" rel="nofollow">Visual Studio</a> tricks in emacs and this one on <a href="http://justinsboringpage.blogspot.com/2009/03/using-tags-in-emacs-on-windows.html" rel="nofollow">tags</a>.</p> http://stackoverflow.com/questions/1734481/emacs-c-and-c/1740248#1740248 1 Answer by justinhj for emacs C and C++ justinhj 2009-11-16T05:27:41Z 2009-11-16T05:27:41Z <p>Take a look at this <a href="http://justinsboringpage.blogspot.com/2009/05/writing-quick-c-programs-in-emacs.html" rel="nofollow">blog post</a> I made, which shows you how to write a cpp program in emacs. If you want tab completion you also need to learn to generate and <a href="http://justinsboringpage.blogspot.com/2009/03/using-tags-in-emacs-on-windows.html" rel="nofollow">use tags</a>, and the M-/ button. </p> <p>When programming using emacs however, you do more than emulate Developer Studio or Eclipse. Learning to use keyboard macros, and program in elisp, will empower you to write little utilities that take a few minutes to write and save many times that in drudge work.</p> http://stackoverflow.com/questions/1735386/how-do-you-route-stdin-from-a-file-to-a-function-when-running-ghci 1 How do you route stdin from a file to a function when running GHCI justinhj 2009-11-14T19:48:51Z 2009-11-14T21:42:27Z <p>I'm using ghci 6.10.4 at the dos command line in XP, and also in emacs using haskell-mode-2.4</p> <p>When running programs that operate on stdin, is there a way I can redirect a file to be stdin? For example if I have a function called main that reads from stdin, I can't do:</p> <pre><code>*Main&gt; main &lt; words.txt </code></pre> <p>Is there another way?</p> <p>Also I would like to be able to type stdin into the ghci window, which seems to work, but what is the EOF key? I thought it was Ctrl-D but that doesn't work. </p> http://stackoverflow.com/questions/1712205/current-time-in-microseconds-in-java/1712213#1712213 -2 Answer by justinhj for Current time in microseconds in java justinhj 2009-11-11T00:28:15Z 2009-11-11T01:05:09Z <p>This gives the time accurate in milliseconds.</p> <pre><code>Calendar c = Calendar.getInstance(); // Calendar.getInstance(); c.setTime(date); c.getTimeInMillis(); </code></pre> <p>This one is more accurate, giving a nano second time. </p> <pre><code>long bStart = System.nanoTime(); </code></pre> <p>Unfortunately you cannot get the current time at better than millisecond accuracy. </p> <p>What you can do is grab the current time in milliseconds and then grab the nano time storing both. </p> <p>You can use the stored nanotime as an anchor point representing 'approximately the date and time right now'.</p> <p>You can now grab nanotime and that lets you do nanosecond accuracy time to that anchor point, if that is useful. </p> http://stackoverflow.com/questions/1698942/is-there-a-way-to-list-the-functions-in-a-module-in-ghci 4 Is there a way to list the functions in a module in GHCI? justinhj 2009-11-09T03:23:24Z 2009-11-09T03:49:48Z <p>I find it handy in Python or Common Lisp that you list a libraries contents at runtime. Does Haskell have the same thing, in particular from a GHCI prompt?</p> http://stackoverflow.com/questions/1682894/emacs-text-mode-highlighting/1682976#1682976 5 Answer by justinhj for Emacs text-mode highlighting justinhj 2009-11-05T19:32:11Z 2009-11-06T03:21:12Z <p>Check out `highlight-regexp'. Just type in the word you want to change the face for (although it can be any regular expression).</p> <p><kbd>M-x</kbd> highlight-regexp</p> <pre><code>highlight-regexp is an alias for `hi-lock-face-buffer' in `hi-lock.el'. It is bound to M-s h r. (highlight-regexp regexp &amp;optional face) Set face of each match of regexp to face. Interactively, prompt for regexp then face. Buffer-local history list maintained for regexps, global history maintained for faces. Use M-p to retrieve previous history items, and M-n to retrieve default values. </code></pre> http://stackoverflow.com/questions/1644490/emacs-completions-or-intellisense-the-same-as-on-visual-studio/1655592#1655592 0 Answer by justinhj for emacs completions or IntelliSense the same as on Visual Studio justinhj 2009-10-31T20:49:34Z 2009-10-31T20:49:34Z <p>If you'd like to use stock emacs to do completion from your project and library include files try <a href="http://stackoverflow.com/questions/1515319/emacs-how-to-auto-complete-words-of-include-files-on-c/1515581#1515581">this answer</a></p> http://stackoverflow.com/questions/1634245/yahoo-messenger-sdk/1634256#1634256 0 Answer by justinhj for yahoo messenger sdk justinhj 2009-10-27T23:21:06Z 2009-10-27T23:21:06Z <p>You should be able to find what you need within the open source yahoo client <a href="http://gyachi.sourceforge.net/" rel="nofollow">Gyachi</a></p> http://stackoverflow.com/questions/942251/in-c-c-why-does-the-do-whileexpression-need-a-semi-colon 6 In C/C++ why does the do while(expression); need a semi colon? justinhj 2009-06-02T22:31:17Z 2009-10-25T21:00:37Z <p>My guess is it just made parsing easier, but I can't see exactly why.</p> <p>So what does this have ...</p> <pre><code>do { some stuff } while(test); more stuff </code></pre> <p>that's better than ...</p> <pre><code>do { some stuff } while(test) more stuff </code></pre> http://stackoverflow.com/questions/1620135/how-to-use-money-to-become-a-better-programmer/1620145#1620145 5 Answer by justinhj for How to use money to become a better programmer? justinhj 2009-10-25T06:04:45Z 2009-10-25T06:04:45Z <p>I'm paraphrasing the Beatles but money can't buy you <a href="http://www.youtube.com/watch?v=waewnX3UKzw" rel="nofollow">programming skill</a>. Only programming can make you a better programmer. What you are working on, and whether you enjoy doing it, are far more important than who is teaching you. </p> http://stackoverflow.com/questions/1598854/hidden-features-of-emacs-lisp/1616930#1616930 2 Answer by justinhj for Hidden features of Emacs Lisp? justinhj 2009-10-24T04:07:36Z 2009-10-24T04:18:10Z <pre><code>(run-at-time time repeat function &amp;rest args) </code></pre> <p>Perform an action at time time. Repeat the action every repeat seconds</p> <p>todochiku for example uses this to 'growl' a set number of minutes in the future. I use that feature to set a reminder say 20 minutes into the future. See function todochiku-in, and my blog post about using <a href="http://justinsboringpage.blogspot.com/2009/09/making-emacs-growl.html" rel="nofollow">growl from emacs</a>. </p> <p>The time can be specified in a flexible number of ways for example:</p> <pre><code> (run-at-time "2:30pm" nil 'todochiku-message "Todochiku Timer" "Make coffee" (todochiku-icon 'bell))) (run-at-time "30 seconds" nil 'todochiku-message "Todochiku Timer" "Do some work" (todochiku-icon 'bell)) </code></pre> <p>Change the nil to a number of seconds to have it repeat. Then when you want to disable:</p> <pre><code>(cancel-function-timers 'todochiku-message) </code></pre> http://stackoverflow.com/questions/1573318/run-emacs-command-in-other-window/1573411#1573411 2 Answer by justinhj for Run Emacs Command in Other Window justinhj 2009-10-15T16:12:37Z 2009-10-15T16:12:37Z <p>Have you tried setting this variable to t, it sounds like the behaviour you want.</p> <p>sql-pop-to-buffer-after-send-region</p> <p>After a call to <code>sql-send-region' or </code>sql-send-buffer', the window is split and the SQLi buffer is shown. If this variable is not nil, that buffer's window will be selected by calling <code>pop-to-buffer'. If this variable is nil, that buffer is shown using </code>display-buffer'.</p> http://stackoverflow.com/questions/1286463/how-do-i-get-the-number-of-days-in-the-month-specified-by-an-elisp-time 1 How do I get the number of days in the month specified by an elisp time? justinhj 2009-08-17T06:38:39Z 2009-10-08T18:22:44Z <p>In elisp I have a time in the (form of three integers), and I can get the month using decode-time. What I'd like to get is the number of days in that month (and year), using elisp functions (rather than write my own).</p> <p>i.e:</p> <pre><code>(defun days-in-month-at-time(t) ; Figure out month and year with decode-time ; return number of days in that month ) </code></pre> http://stackoverflow.com/questions/1286463/how-do-i-get-the-number-of-days-in-the-month-specified-by-an-elisp-time/1337267#1337267 0 Answer by justinhj for How do I get the number of days in the month specified by an elisp time? justinhj 2009-08-26T20:26:27Z 2009-10-08T18:22:44Z <p>Looks like this is better since time-zone doesn't seem to be in all recent emacs versions edit: Sorry you just need to require timezone, or calendar depending on whether you use this or the other answer.</p> <pre><code>(defun days-in-month-at-time (time) "Return number of days in month at TIME." (let ((datetime (decode-time time))) (calendar-last-day-of-month (nth 4 datetime) (nth 5 datetime)))) </code></pre> http://stackoverflow.com/questions/1532803/what-do-i-do-when-my-company-asks-me-to-call-customers-and-do-market-research/1533002#1533002 0 Answer by justinhj for What do I do when my company asks me to call customers and do market research? justinhj 2009-10-07T17:16:23Z 2009-10-07T17:16:23Z <p>Working in a small company I once had to pick up technical support calls one afternoon a week, and I found it a pretty refreshing change. Depending on the type of software you develop I think it could be extremely valuable to talk to real customers. I'd rather be a software developer (someone making usable products for people) than a programmer (someone typing lines of code).</p> http://stackoverflow.com/questions/1521123/snap-open-for-emacs/1523333#1523333 4 Answer by justinhj for Snap Open for Emacs? justinhj 2009-10-06T02:33:12Z 2009-10-06T18:18:32Z <p>You can do this in standard dired too. </p> <p>First do </p> <pre><code>C-u s </code></pre> <p>which let's you change the dired ls command to <b>-lR</b>. Now you will have subdirectories in the dired buffer.</p> <pre><code>% m </code></pre> <p>Let's you mark all files matching a regexp.</p> <p>To open the files use the command</p> <pre><code>`dired-do-find-marked-files' </code></pre> <p>you need (require 'dired-x) for this one.</p> http://stackoverflow.com/questions/1493225/eclipse-how-to-close-multiple-windows 0 Eclipse: How to close multiple windows justinhj 2009-09-29T15:15:38Z 2009-10-04T18:45:52Z <p>Once you have a bunch (20+) source windows open in Eclipse is there way to close them with clicking all the close buttons on the tabs? It takes a long time and if you double click the middle button it maximises the window instead. </p> <p>I guess worst case I'll learn to write a plugin that just closes them all, but ideally I want a little list box that I can easily close them in, like the buffer list in emacs or the window list in devstudio. </p> http://stackoverflow.com/questions/1515319/emacs-how-to-auto-complete-words-of-include-files-on-c/1515581#1515581 4 Answer by justinhj for Emacs how to auto-complete words of include files on C ? justinhj 2009-10-04T04:19:41Z 2009-10-04T04:19:41Z <p>First generate tags for the source and include files you'd like to be able to autocomplete for. See my blogpost for tips on <a href="http://justinsboringpage.blogspot.com/2009/03/using-tags-in-emacs-on-windows.html" rel="nofollow">using tags</a> if you didn't use tag tables before.</p> <p>Now if you have a TAGS table that includes the stdio.h, then you can autocomplete 'printf' using the command `complete-tag'.</p> <p>Perhaps bind `complete-tag' to a key:</p> <pre><code>(global-set-key [f3] 'complete-tag) </code></pre> http://stackoverflow.com/questions/1498994/free-memory-not-clears-the-memory-block/1499053#1499053 0 Answer by justinhj for free memory not clears the memory block justinhj 2009-09-30T15:56:14Z 2009-09-30T15:56:14Z <p>Although memory is allocated by the DLL in the same heap as your application, it MAY be using a different memory manager, depending on the library it was linked with. You need to either make sure you're using the same exact library, or add code to release the memory that the DLL allocates, in the DLL code itself.</p> http://stackoverflow.com/questions/956658/can-you-use-c-templates-to-specify-a-collection-type-and-the-specialization-of 2 Can you use C++ templates to specify a collection type and the specialization of that type? justinhj 2009-06-05T15:54:13Z 2009-09-24T07:31:04Z <p>Example, I want to specialize a class to have a member variable that is an stl container, say a vector or a list, so I need something like:</p> <pre><code>template &lt;class CollectionType, class ItemType&gt; class Test { public: CollectionType&lt;ItemType&gt; m_collection; }; </code></pre> <p>So I can do:</p> <pre><code>Test t = Test&lt;vector, int&gt;(); t.m_collection&lt;vector&lt;int&gt;&gt; = vector&lt;int&gt;(); </code></pre> <p>But this generates </p> <pre><code>test.cpp:12: error: `CollectionType' is not a template </code></pre> http://stackoverflow.com/questions/1303680/do-you-have-a-mnemonic-for-remembering-the-meaning-of-car-and-cdr/1316241#1316241 0 Answer by justinhj for Do you have a mnemonic for remembering the meaning of car and cdr? justinhj 2009-08-22T15:43:16Z 2009-08-23T17:24:35Z <p>If you don't care about being idiomatic, use first and rest. car and cdr do have the advantage of being able to be composed into combinations like caddr cddr and so on, if you find that useful. </p> <p>Otherwise, car is first and it's alphabetically first of the two.</p> http://stackoverflow.com/questions/1302608/is-there-a-mature-implementation-of-the-fnv-hashing-algorithm-in-java 1 Is there a mature implementation of the FNV hashing algorithm in Java? justinhj 2009-08-19T21:01:46Z 2009-08-19T22:08:10Z <p>I've seen the Fowler-Noll-Vo (FNV) recommended as a good choice for a fast hashing algorithm for use in our implementation of a consistent hashing system. </p> <p>Can't seem to locate a good Java source for it though. </p> http://stackoverflow.com/questions/1264869/fatal-error-in-jni-code-presumably-in-jdic-library/1278637#1278637 0 Answer by justinhj for FATAL ERROR in JNI code - presumably in JDIC library justinhj 2009-08-14T15:48:35Z 2009-08-14T15:48:35Z <p>See if you can call functions that don't take arguments without problems, compared to ones that do. </p> <p>You may find that the interface no longer matches the library. If you are using SWIG to generate the interface files for example, different versions of SWIG generate different numbers of arguments. </p> <p>Unfortunately mismatching the java interface code and the library code does not generate an error, it just crashes. </p> http://stackoverflow.com/questions/1275287/it-works-dont-touch-it-and-continues-engineering/1275343#1275343 1 Answer by justinhj for "it works-don't touch it" and continues engineering justinhj 2009-08-14T00:01:59Z 2009-08-14T00:01:59Z <p>You need to pick your battles. Personally I dislike bad spelling and grammar in comments, and sometimes I fix it, but mostly I don't because:</p> <p>a) The guy you fix it for may take it badly; like you're trying to get one over on him b) Risk of accidentally breaking code and the time it takes for someone to review my changes</p> <p>And that's just comments. If you're changing someones code you better make damn sure there's a sufficient number of unit tests to run on it. Even then, there's nothing like field tested code in terms of solidity. Any change to a live system, however minor, could break things you don't understand. </p> <p>IMHO you should only fix up code if there's a specific project goal involved. </p> <p>If you're revisiting some code to improve performance, add functionality or perhaps integrate it into another project, you're effectively losing the value of a lot of the field testing it's had already. So yes, refactor, clean up, run a code formatter, whatever you need to. </p> <p>Some of the things on your list are more serious than others though. Messy formatting makes me think the programmer is careless, but I may be wrong about that. On the other hand when a large block of code has lots of redundancy or a collection of classes are tightly coupled, that has a real nagative affect on the quality of the system as a whole. </p> <p>So yeah, pick your battles, avoid changes that don't win you anything, and don't step on toes is the summary of my answer. </p> http://stackoverflow.com/questions/1273770/a-great-tutorial-of-mysql-to-jump-right-in/1273789#1273789 1 Answer by justinhj for A great tutorial of mysql to jump right in? justinhj 2009-08-13T18:34:18Z 2009-08-13T19:00:58Z <p>Mysqls own web site is very good. Even their command reference is filled with good examples and user comments such as gotchas under each page (every site should have that IMHO). For example check out the <a href="http://dev.mysql.com/doc/refman/6.0/en/insert.html" rel="nofollow">insert</a> command documentation.</p> <p>Here's a <a href="http://dev.mysql.com/doc/refman/5.0/en/tutorial.html" rel="nofollow">good beginner tutorial</a> also on that site.</p> <p>Finally for Java connectivity use <a href="http://dev.mysql.com/doc/refman/5.0/en/connector-j-reference.html" rel="nofollow">this</a> as a reference.</p> <p>I've been using HeidiSQL to view and edit my tables in testing, but it's also cool to get good with the command line initially. </p> http://stackoverflow.com/questions/1138776/quit-my-job-because-i-dont-evolve/1138801#1138801 1 Answer by justinhj for quit my job because I don't evolve justinhj 2009-07-16T16:35:07Z 2009-07-16T16:35:07Z <p>In biological evolution, new species tend to evolve when a group gets isolated and evolves separately. </p> <p>You've done all you can in your genepool, but I'll stop this analogy before I suggest you stop copulating with your co-workers!</p> <p>The important point is, you're not happy, you've made efforts to get what you want from your boss, he hasn't played ball, so you have to find a new job. </p> http://stackoverflow.com/questions/1007250/which-dialect-of-lisp-should-i-learn/1020708#1020708 2 Answer by justinhj for Which dialect of Lisp should I learn? justinhj 2009-06-20T01:26:01Z 2009-06-20T01:26:01Z <p>I would say all of them, at least at first. Eventually you will probably develop a preference for Scheme or Common Lisp, but they both have enough differences that it's best to get a handle on everything that's out there.</p> <p>Scheme has continuations for example, and it's good to learn about those in Scheme, even though they can be implemented in Common Lisp. </p> <p>Learning the difference between lexical and dynamic scope is important, and if you learn both Common Lisp and elisp you'll come across the implications of both.</p> http://stackoverflow.com/questions/1809595/what-should-table-structure-look-like-when-adding-open-auth-login-to-user-model/1810284#1810284 Comment by justinhj on What should table structure look like when adding open auth login to User model justinhj 2009-11-27T19:12:51Z 2009-11-27T19:12:51Z What did you make the diagram in? That's very nice. http://stackoverflow.com/questions/1789064/trying-to-get-a-terminal-to-work-in-emacs/1790863#1790863 Comment by justinhj on Trying to get a terminal to work in Emacs... justinhj 2009-11-25T10:00:10Z 2009-11-25T10:00:10Z Do you mean the cygwin version of emacs or the win32 native? Seems like the cygwin version is the best if you're using cygwin, whilst a combination of the win32 native and Gnuutils is much more solid windows experience IMHO <a href="http://ftp.gnu.org/pub/gnu/emacs/windows/" rel="nofollow">ftp.gnu.org/pub/gnu/emacs/windows</a> <a href="http://gnuwin32.sourceforge.net/" rel="nofollow">gnuwin32.sourceforge.net</a> http://stackoverflow.com/questions/1766258/how-do-you-set-a-date-in-a-mysql-update-from-a-milliseconds-since-epoch-value/1766451#1766451 Comment by justinhj on How do you set a date in a mysql update from a milliseconds since epoch value? justinhj 2009-11-19T21:02:12Z 2009-11-19T21:02:12Z Perfect, it works thanks. http://stackoverflow.com/questions/1754004/how-to-mask-password-in-c Comment by justinhj on how to mask password in c? justinhj 2009-11-18T06:18:35Z 2009-11-18T06:18:35Z Do you mean just at a command line or in a particular gui? For example in windows a native edit box can do this automatically. http://stackoverflow.com/questions/1734481/emacs-c-and-c/1734508#1734508 Comment by justinhj on emacs C and C++ justinhj 2009-11-17T08:55:50Z 2009-11-17T08:55:50Z @kastuauyra Not all software tools can to be learned in 5 minutes, nor should they be necessarily. Professional programmers will be using tools potentially their whole working lives, so it's worth investing time learning ones that have the flexibility and power to endure. http://stackoverflow.com/questions/1736601/do-you-use-vim-emacs-terminals-to-develop-c-c-what-kind-of-projects-is-this-pr Comment by justinhj on Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for? justinhj 2009-11-16T05:19:17Z 2009-11-16T05:19:17Z One of the reasons emacs/vim are useful is because they are available on all platforms. If you think all editors pretty much have the same features I'd do some research on them and see what they can do. http://stackoverflow.com/questions/1735386/how-do-you-route-stdin-from-a-file-to-a-function-when-running-ghci/1735706#1735706 Comment by justinhj on How do you route stdin from a file to a function when running GHCI justinhj 2009-11-14T22:59:04Z 2009-11-14T22:59:04Z That's handy but you can't redirect stdin like this: :main &lt; words.txt http://stackoverflow.com/questions/1735386/how-do-you-route-stdin-from-a-file-to-a-function-when-running-ghci/1735616#1735616 Comment by justinhj on How do you route stdin from a file to a function when running GHCI justinhj 2009-11-14T22:56:29Z 2009-11-14T22:56:29Z Thanks, that is helpful. http://stackoverflow.com/questions/1735386/how-do-you-route-stdin-from-a-file-to-a-function-when-running-ghci Comment by justinhj on How do you route stdin from a file to a function when running GHCI justinhj 2009-11-14T22:54:43Z 2009-11-14T22:54:43Z Ah yeah. I tried that and thought it failed, but does in fact work, but then as the answer below states, it also closes stdin and you get an error message like : *Main&gt; &lt;stdin&gt;: hLookAhead: invalid argument (Bad file descriptor) http://stackoverflow.com/questions/1698942/is-there-a-way-to-list-the-functions-in-a-module-in-ghci/1698952#1698952 Comment by justinhj on Is there a way to list the functions in a module in GHCI? justinhj 2009-11-09T05:13:28Z 2009-11-09T05:13:28Z That's cool thanks http://stackoverflow.com/questions/942251/in-c-c-why-does-the-do-whileexpression-need-a-semi-colon/1622001#1622001 Comment by justinhj on In C/C++ why does the do while(expression); need a semi colon? justinhj 2009-11-03T00:26:25Z 2009-11-03T00:26:25Z @AndreyT &quot;Someone told you so and you just accepted it rigth away without a single doubt.&quot; That is not the case, I spent some time satisfying myself that this is true. http://stackoverflow.com/questions/942251/in-c-c-why-does-the-do-whileexpression-need-a-semi-colon/942261#942261 Comment by justinhj on In C/C++ why does the do while(expression); need a semi colon? justinhj 2009-10-31T07:24:18Z 2009-10-31T07:24:18Z @Martin Yes I understand the need for a delimiter between statements in general, but my question is why you need it in this case. This answer merely states that you need it by definition. That's not really what I was looking for. The accepted answer gives a clear example of how you can not write a valid statement if the grammar were different. http://stackoverflow.com/questions/942251/in-c-c-why-does-the-do-whileexpression-need-a-semi-colon/1622001#1622001 Comment by justinhj on In C/C++ why does the do while(expression); need a semi colon? justinhj 2009-10-31T07:22:03Z 2009-10-31T07:22:03Z The different behaviour is quite clear to me. Without the semi-colon requirement you simply cannot nest a while loop inside a do-while, and this seems wrong. http://stackoverflow.com/questions/942251/in-c-c-why-does-the-do-whileexpression-need-a-semi-colon/1622001#1622001 Comment by justinhj on In C/C++ why does the do while(expression); need a semi colon? justinhj 2009-10-26T02:58:09Z 2009-10-26T02:58:09Z You can see that the question hasn't been edited, the number of edits is shown when there are any. The question seems straightforward enough that I hope it means what I intend. The accepted answer seems superior to yours, since it shows that without the semi-colon, valid uses of the grammar become ambiguous. In your example it is merely confusing to the user. http://stackoverflow.com/questions/58640/great-programming-quotes/58780#58780 Comment by justinhj on Great programming quotes justinhj 2009-10-21T15:26:36Z 2009-10-21T15:26:36Z Usually this one comes with &quot;I haven't touched that code in weeks&quot;