User mouviciel - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T16:13:51Zhttp://stackoverflow.com/feeds/user/45249http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1808554/how-can-i-change-spaces-to-underscores-and-lowercase-everything/1808998#18089985Answer by mouviciel for How can I change spaces to underscores and lowercase everything?mouviciel2009-11-27T14:09:33Z2009-11-27T14:09:33Z<p><code>tr</code> alone works:</p>
<pre><code>tr ' [:upper:]' '_[:lower:]' < file
</code></pre>
http://stackoverflow.com/questions/1798118/what-do-you-do-to-write-better-code/1798176#179817610Answer by mouviciel for What do you do to write better code?mouviciel2009-11-25T16:30:42Z2009-11-25T16:30:42Z<p>Read code from others, always questioning why did they write that way.</p>
<p>Try to find the simplest way to do things, remove everything that does not solve your specific problem.</p>
<p>Write tests, they provide a safety net when rewriting code.</p>
http://stackoverflow.com/questions/1797640/disadvantages-of-first-class-functions/1797698#1797698-1Answer by mouviciel for Disadvantages of First-class functionsmouviciel2009-11-25T15:29:03Z2009-11-25T15:29:03Z<p>Why do you want that all languages support first class functions? Many programming fields simply don't need it.</p>
http://stackoverflow.com/questions/1797328/programming-languages-that-compile-to-native-code-and-have-the-batteries-included/1797538#17975380Answer by mouviciel for Programming languages that compile to native code and have the batteries includedmouviciel2009-11-25T15:06:55Z2009-11-25T15:06:55Z<p>Is <strong>Objective-C</strong> with <strong>Cocoa/CocoaTouch</strong> an acceptable answer?</p>
<p>You can use this pair for programming applications running on devices with restrictive constraints on batteries (laptops and mobile phones).</p>
http://stackoverflow.com/questions/1782267/doxygen-comments-on-declarations-or-on-definitions/1782677#17826771Answer by mouviciel for Doxygen comments on declarations or on definitions?mouviciel2009-11-23T11:52:22Z2009-11-23T11:52:22Z<p>You may want to check out these related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/487114/c-c-header-file-documentation">C/C++ Header file documentation</a></li>
<li><a href="http://stackoverflow.com/questions/1272039/using-doxygen-with-c-do-you-comment-the-function-prototype-or-the-definition-or">Using Doxygen with C, do you comment the function prototype or the definition? Or both?</a></li>
<li><a href="http://stackoverflow.com/questions/758045/how-to-be-able-to-extract-comments-from-inside-a-function-in-doxygen">How to be able to extract comments from inside a function in doxygen?</a></li>
</ul>
http://stackoverflow.com/questions/1779694/what-is-the-shortest-source-code-you-have-seen-to-do-a-complex-task/1779834#17798342Answer by mouviciel for What is the shortest source code you have seen to do a complex task?mouviciel2009-11-22T20:14:53Z2009-11-22T20:14:53Z<p><a href="http://www.ioccc.org/" rel="nofollow">IOCCC</a> has a full featured spreadsheet in about 30 lines of 80 characters of C code. It is named <a href="http://www.de.ioccc.org/years.html#2000%5Fjarijyrki" rel="nofollow">Jarijyrki</a>.</p>
http://stackoverflow.com/questions/1133265/why-arent-more-applications-written-in-multiple-languages/1771497#17714970Answer by mouviciel for Why aren't more applications written in multiple languages?mouviciel2009-11-20T16:08:12Z2009-11-20T16:08:12Z<p>I would say that many more applications than you think are written using several languages. Just an example:</p>
<ul>
<li>how many recent internet applications are written in C? almost none.</li>
<li>how many IP stacks are written with another language than C? almost none.</li>
</ul>
http://stackoverflow.com/questions/1751564/want-some-ideas-on-how-to-develop-a-image-retrieval-system/1770073#17700730Answer by mouviciel for Want some ideas on how to develop a image retrieval systemmouviciel2009-11-20T12:08:06Z2009-11-20T12:08:06Z<p>Together with other suggestions, you may want to check out <a href="http://en.wikipedia.org/wiki/Facial%5Frecognition%5Fsystem" rel="nofollow">facial recognition</a>.</p>
<p>A commercial example of such techniques is <a href="http://www.apple.com/ilife/iphoto/" rel="nofollow">Apple's iPhoto</a>.</p>
http://stackoverflow.com/questions/1769542/what-is-the-easiest-way-to-write-code-in-ms-word/1769606#17696061Answer by mouviciel for What is the easiest way to write code in MS Word?mouviciel2009-11-20T10:29:51Z2009-11-20T10:29:51Z<p>I hate when a program tries to be smarter than me, so I always disable all those upsetting "intelligent" formatters and spell checkers. That way I have no problem with code on MSWord (I just define a paragraph style with Courier font).</p>
http://stackoverflow.com/questions/1762904/what-will-happen-if-a-application-is-large-enough-to-be-loaded-into-the-available/1762939#17629391Answer by mouviciel for What will happen if a application is large enough to be loaded into the available RAM memory?mouviciel2009-11-19T12:25:01Z2009-11-19T12:25:01Z<p>Some keywords for search engines are: paging, swapping, virtual memory.</p>
<p>Wikipedia has an article called <a href="http://en.wikipedia.org/wiki/Swap%5Fspace" rel="nofollow">Paging (Redirected from Swap space)</a>.</p>
http://stackoverflow.com/questions/1762299/question-about-the-nsarray/1762330#17623304Answer by mouviciel for Question about the NSArraymouviciel2009-11-19T10:30:53Z2009-11-19T10:30:53Z<p>You can retrieve a string representing <code>NSArray</code> contents with <code>-description</code> method. This is implicitely used with:</p>
<pre><code>NSLog(@"%@", groupContentList);
</code></pre>
<p>It will in turn invoque <code>-description</code> method on each of its elements (which defaults to printing address of object as defined in <code>NSObject</code>).</p>
<p>So if you want it to be usable, you have to define a <code>-description</code> method for your <code>Product</code> class.</p>
http://stackoverflow.com/questions/1753007/help-with-tdd-approach-to-a-real-world-problem-linker/1756245#17562450Answer by mouviciel for Help with TDD approach to a real world problem: linkermouviciel2009-11-18T14:07:04Z2009-11-18T14:07:04Z<p>TDD is about specification, not test.</p>
<p>From your simplest spec of a linker, your TDD test has just to check whether an executable file has been created during the linker magic if you feed it with an object file.</p>
<p>Then you write a linker that makes your test succeed, e.g.:</p>
<ul>
<li>check whether input file is an object file</li>
<li>if so, generate a "Hello World!" executable (note that your spec didn't specify that different object files would produce different executables)</li>
</ul>
<p>Then you refine your spec and your TDD (these are your four bullets).</p>
<p>As long as you can write a specification you can write TDD test cases.</p>
http://stackoverflow.com/questions/1756078/while-executing-a-shell-script-in-unix-bash-shell-how-is-a-file-location-resolve/1756129#17561294Answer by mouviciel for while executing a shell script in Unix Bash Shell, how is a file location resolved for relative paths? rel. to the script.sh folder or the referenced file's folder.mouviciel2009-11-18T13:51:07Z2009-11-18T13:51:07Z<p>Relative paths are resolved in reference to the current working directory, as given by <code>$(pwd)</code>.</p>
<p>Each time a resolution takes place, <code>$(pwd)</code> is evaluated. This means that the same <code>../myfile</code> path string represents a different file before and after a <code>cd</code> command in your script. </p>
http://stackoverflow.com/questions/1733692/how-to-use-sed-awk-or-gawk-to-print-only-what-is-matched/1733727#17337273Answer by mouviciel for how to use sed, awk, or gawk to print only what is matched?mouviciel2009-11-14T08:50:20Z2009-11-14T08:50:20Z<p>My <code>sed</code> (Mac OS X) didn't work with <code>+</code>. I tried <code>*</code> instead and I added <code>p</code> tag for printing match:</p>
<pre><code>sed -n 's/^.*abc\([0-9]*\)xyz.*$/\1/p' example.txt
</code></pre>
<p>For matching at least one numeric character without <code>+</code>, I would use:</p>
<pre><code>sed -n 's/^.*abc\([0-9][0-9]*\)xyz.*$/\1/p' example.txt
</code></pre>
http://stackoverflow.com/questions/1707725/find-name-of-company-at-url/1707775#17077750Answer by mouviciel for find name of company at URLmouviciel2009-11-10T12:56:51Z2009-11-10T12:56:51Z<p><a href="http://whois.org/" rel="nofollow">Whois</a> database may be of some help, though there are always edge cases that you will have to handle with more effort.</p>
http://stackoverflow.com/questions/1706475/how-to-know-what-all-software-are-there-in-system-in-os-x-using-objective-c/1706527#17065270Answer by mouviciel for How to know what all software are there in system in os x using objective cmouviciel2009-11-10T09:04:16Z2009-11-10T09:04:16Z<p><a href="http://developer.apple.com/mac/library/documentation/cocoa/Reference/ApplicationKit/Classes/NSWorkspace%5FClass/DeprecationAppendix/AppendixADeprecatedAPI.html#//apple%5Fref/occ/instm/NSWorkspace/findApplications" rel="nofollow"><code>-findApplications</code></a> method of <a href="http://developer.apple.com/mac/library/documentation/cocoa/Reference/ApplicationKit/Classes/NSWorkspace%5FClass/Reference/Reference.html" rel="nofollow"><code>NSWorkspace</code></a> class is what you are looking for. This method is deprecated in Mac OS X 10.6.</p>
<p>You may also want to look at <a href="http://developer.apple.com/Mac/library/documentation/Carbon/Reference/LaunchServicesReference/Reference/reference.html" rel="nofollow">Launch Services</a>.</p>
http://stackoverflow.com/questions/1705724/for-c-c-when-is-it-beneficial-not-to-use-object-oriented-programming/1705875#17058751Answer by mouviciel for For C/C++, When is it beneficial not to use Object Oriented Programming?mouviciel2009-11-10T05:49:19Z2009-11-10T05:49:19Z<p>Having an Ada background, I develop in C in terms of packages containing data and their associated functions. This gives a code very modular with pieces of code that can be taken apart and reused on other projects. I don't feel the need to use OOP.</p>
<p>When I develop in Objective-C, objects are the natural container for data and code. I still develop with more or less the package concept in mind with some new cool features.</p>
http://stackoverflow.com/questions/1700478/how-to-determine-the-tipping-point-especially-when-programming-regexs/1701818#17018181Answer by mouviciel for How to determine the "tipping point" especially when programming regex's?mouviciel2009-11-09T15:38:55Z2009-11-09T15:38:55Z<p>Whenever I feel that my regex or shell script crafting task takes about the same time that I would spend doing things manually, I know that I have reached the "tipping point".</p>
<p>Then if it's a quick and dirty tool for a bigger task, I proceed as you describe: most of the work with regex/script and edge cases flagged and manually handled.</p>
<p>If this is something which may be reused (e.g. in automatic regression tests) I take time for enhancing my tool (splitting tasks or switching to perl) and/or making sure that inputs conform to some assumptions.</p>
http://stackoverflow.com/questions/1687275/what-is-the-difference-between-read-and-pread-in-unix/1687315#16873152Answer by mouviciel for What is the difference between read and pread in unix?mouviciel2009-11-06T12:37:29Z2009-11-06T12:37:29Z<p>Google gave me <a href="http://www.manpagez.com/man/2/pread/" rel="nofollow"><code>man pread</code></a>.</p>
<p>If you <code>read()</code> twice, you get two different results, which shows that <code>read()</code> advances in the file.</p>
<p>If you <code>pread(</code>) twice, you get the same result, which shows that <code>pread()</code> stays at the same point in the file.</p>
http://stackoverflow.com/questions/968036/what-are-the-popular-contemporary-uses-for-perl/1680340#16803400Answer by mouviciel for What are the popular, contemporary uses for Perl?mouviciel2009-11-05T12:46:09Z2009-11-05T12:46:09Z<p>I use Perl for what it has been designed: a <strong>P</strong>ractical way for <strong>E</strong>xtracting useful information from raw data and presenting them in human-readable <strong>R</strong>eports. This is a very nice <strong>L</strong>anguage for this task.</p>
http://stackoverflow.com/questions/1675073/how-can-i-keep-doxygen-from-documenting-defines-in-a-c-file/1675115#16751150Answer by mouviciel for How can I keep doxygen from documenting #defines in a C file?mouviciel2009-11-04T16:46:35Z2009-11-04T16:52:26Z<p>You can exclude any part of code from Doxygen parsing with <code>\cond</code> <code>...</code> <code>\endcond</code> tags.</p>
<p><strong>edit:</strong> Some related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1619577/how-can-doxygen-exclude-a-c-class">How can Doxygen exclude a C++ class?</a></li>
<li><a href="http://stackoverflow.com/questions/1434553/exclude-some-classes-from-doxygen-documentation">Exclude some classes from doxygen documentation</a></li>
</ul>
http://stackoverflow.com/questions/1672588/funniest-code-names-for-software-projects/1672659#167265912Answer by mouviciel for Funniest code names for software projectsmouviciel2009-11-04T09:36:50Z2009-11-04T09:36:50Z<p>Eclipse, written in Java, a language created by Sun.</p>
http://stackoverflow.com/questions/1672267/should-every-test-method-have-at-least-one-assert/1672441#16724412Answer by mouviciel for Should every test method have at least one assert?mouviciel2009-11-04T08:46:51Z2009-11-04T09:04:54Z<blockquote>
<p><em>When I'm testing a void method there is nothing to assert</em>.</p>
</blockquote>
<p>So, what is the purpose of the method?</p>
<p>Answering this question helps to find what is to be asserted. If the anwser is actually <em>nothing</em>, you should be able to remove that method from your code with no impact.</p>
<p>Implementing the test code for covering this assertion is another problem which may or may not be easy or relevant given your development environment or the constraints of the project.</p>
http://stackoverflow.com/questions/1671970/keeping-skills-up-to-date-is-more-important-to-programmers-than-any-other-job/1672012#16720122Answer by mouviciel for Keeping skills up to date is more important to programmers than any other job?mouviciel2009-11-04T06:29:18Z2009-11-04T06:29:18Z<p>I don't know for other countries, but in France laws are constantly changing. Lawyers must follow these changes and I believe this is more challenging than learning yet another C-based programming language or yet another boxes-and-arrows modelling method.</p>
http://stackoverflow.com/questions/1671981/generating-xcode-projects-by-hand/1671996#16719960Answer by mouviciel for Generating Xcode projects by hand.mouviciel2009-11-04T06:24:45Z2009-11-04T06:24:45Z<p>One possible way is to generate a project with Xcode and recreate the file hierarchy with your script.</p>
http://stackoverflow.com/questions/1668731/software-project-time-estimation/1668784#16687843Answer by mouviciel for Software Project - Time Estimationmouviciel2009-11-03T17:10:14Z2009-11-03T18:53:12Z<p>Agile processes use the concept of <a href="http://www.agile-software-development.com/2008/01/understanding-your-velocity.html" rel="nofollow">velocity</a>.</p>
<p>Other processes use the <a href="http://stackoverflow.com/questions/58640/great-programming-quotes/58692#58692">Hofstadter's law</a>.</p>
http://stackoverflow.com/questions/1668649/how-to-keep-quotes-in-args/1668717#16687170Answer by mouviciel for How to keep quotes in args?mouviciel2009-11-03T17:03:06Z2009-11-03T17:03:06Z<p>Quotes are interpreted by bash and are not stored in command line arguments or variable values.</p>
<p>If you want to use quoted arguments, you have to quote them each time you use them:</p>
<pre><code>val="$3"
echo "Hello World" > "$val"
</code></pre>
http://stackoverflow.com/questions/1668284/bash-script-to-find-the-most-recently-modified-file/1668370#16683702Answer by mouviciel for Bash Script to find the most recently modified filemouviciel2009-11-03T16:15:12Z2009-11-03T16:39:36Z<p>Finding files is done with: <code>find /Volumes/[AB] -name '*.bkf'</code></p>
<p>Sorting files by modification time is done with: <code>ls -t</code></p>
<p>if <em>load of files</em> is not that much, you can simply use:</p>
<pre><code>ls -lrt `find /Volumes/[AB] -name '*.bkf'`
</code></pre>
<p>The last displayed file is the most recently modified.</p>
<p><strong>edit</strong></p>
<p>A more robust solution (thanks ephemient) is:</p>
<pre><code>find /Volumes/[AB] -type f -name '*.bkf' -print0 | xargs -0 ls -lrt
</code></pre>
http://stackoverflow.com/questions/1667222/whats-the-easiest-approach-for-a-calculator-keypad-algorithm/1667252#16672520Answer by mouviciel for What's the easiest approach for a calculator keypad algorithm?mouviciel2009-11-03T13:09:21Z2009-11-03T13:09:21Z<p>Why converting from int to string when you could just pass directly a string? Everything else looks ok for me.</p>
http://stackoverflow.com/questions/1667029/what-was-the-biggest-mental-leap-hurdle-you-had-to-overcome-in-your-career/1667065#16670650Answer by mouviciel for What was the biggest mental leap/hurdle you had to overcome in your career?mouviciel2009-11-03T12:32:46Z2009-11-03T12:32:46Z<p>I used to think it was OOP, but when I discovered Objective-C I understood that it actually was C++.</p>
http://stackoverflow.com/questions/1809868/is-there-a-better-way-to-erase-a-line-than-echo/1810210#1810210Comment by mouviciel on Is there a better way to erase a line than echo " "?mouviciel2009-11-27T19:02:36Z2009-11-27T19:02:36ZI didn't know tput. Thanks!http://stackoverflow.com/questions/1751564/want-some-ideas-on-how-to-develop-a-image-retrieval-systemComment by mouviciel on Want some ideas on how to develop a image retrieval systemmouviciel2009-11-20T11:59:28Z2009-11-20T11:59:28ZGoogle image search analyzes not only image name but also text near image.http://stackoverflow.com/questions/1753007/help-with-tdd-approach-to-a-real-world-problem-linker/1756245#1756245Comment by mouviciel on Help with TDD approach to a real world problem: linkermouviciel2009-11-19T15:12:24Z2009-11-19T15:12:24ZI tend to associate TDD with agile methods, where big projects are divided in small incremental steps. At the end of each step a new feature has been specified (including TDD test cases), developed and tested with TDD tests cases.http://stackoverflow.com/questions/1762869/c-syntactic-errorsComment by mouviciel on [C] Syntactic errorsmouviciel2009-11-19T12:27:16Z2009-11-19T12:27:16ZShouldn't division have a left operand?http://stackoverflow.com/questions/1761513/multiple-svn-repositories-or-single-company-repository/1761540#1761540Comment by mouviciel on Multiple SVN Repositories or single company repositorymouviciel2009-11-19T08:28:04Z2009-11-19T08:28:04ZTransparency can be seen either as an advantage or as a drawback. I think of projects that customers require confidentiality.http://stackoverflow.com/questions/1543107/what-is-the-cleverest-ui-feature-you-have-seen-in-a-website/1543649#1543649Comment by mouviciel on What is the cleverest UI feature you have seen in a website?mouviciel2009-11-16T20:18:22Z2009-11-16T20:18:22Z<i>Perfection is finally attained not when there is no longer anything to add but when there is no longer anything to take away, when a body has been stripped down to its nakedness</i> — Antoine de Saint-Exupéryhttp://stackoverflow.com/questions/1706431/the-easiest-way-to-replace-white-spaces-with-underscores-in-bashComment by mouviciel on The easiest way to replace white spaces with (underscores) _ in bashmouviciel2009-11-10T08:53:51Z2009-11-10T08:53:51ZHi latz, Stackoverflow is a questions and answers site. You ask questions and others answer it, or you can answer questions from others. If you want to share your knowledge, you can ask a question, then answer it yourself (after leaving some time for others to answer as well).http://stackoverflow.com/questions/1695278/is-34kb-or-34-kb-more-correct/1695348#1695348Comment by mouviciel on Is "34KB" or "34 KB" more correct?mouviciel2009-11-09T16:52:39Z2009-11-09T16:52:39Z+1 for non breaking spacehttp://stackoverflow.com/questions/1701221/are-there-faster-algorithms-than-dijkstra/1701362#1701362Comment by mouviciel on Are there faster algorithms than Dijkstra?mouviciel2009-11-09T14:41:53Z2009-11-09T14:41:53ZIs is O(1) if you don't consider the graph building step.http://stackoverflow.com/questions/1687616/is-it-possible-to-execute-a-c-statement-without-a-semicolon/1687643#1687643Comment by mouviciel on Is it possible to execute a "C" statement without a semicolonmouviciel2009-11-06T14:06:30Z2009-11-06T14:06:30Z+1 This answer provides a statement and a placeholder for doing things.http://stackoverflow.com/questions/163628/making-email-addresses-safe-from-bots-on-a-webpage/163672#163672Comment by mouviciel on Making email addresses safe from bots on a webpage?mouviciel2009-11-06T12:27:14Z2009-11-06T12:27:14ZCAPTCHA is not a 100% reliable solution. See e.g., <a href="http://www.blackhat-seo.com/2009/captcha-farms/" rel="nofollow">blackhat-seo.com/2009/captcha-farms</a>http://stackoverflow.com/questions/1659111/how-to-test-function-that-produce-binary-fileComment by mouviciel on How to test function that produce binary file?mouviciel2009-11-05T08:32:48Z2009-11-05T08:32:48Z@NawaMan: Agreed. Unit testing didn't wait for OOP to exist.http://stackoverflow.com/questions/1644273/what-is-the-difference-between-aggregation-composition-and-dependency/1644302#1644302Comment by mouviciel on What is the difference between aggregation, composition and dependency?mouviciel2009-11-04T21:23:22Z2009-11-04T21:23:22ZYes, indeed I understood aggregation and composition not with such analogies but with actual code.http://stackoverflow.com/questions/1675073/how-can-i-keep-doxygen-from-documenting-defines-in-a-c-file/1675115#1675115Comment by mouviciel on How can I keep doxygen from documenting #defines in a C file?mouviciel2009-11-04T19:28:27Z2009-11-04T19:28:27ZUnfortunately, I share your misunderstanding of @internal. Many aspects of Doxygen are still obscure for me. The learning curve is slow but worth.http://stackoverflow.com/questions/1675073/how-can-i-keep-doxygen-from-documenting-defines-in-a-c-file/1675115#1675115Comment by mouviciel on How can I keep doxygen from documenting #defines in a C file?mouviciel2009-11-04T16:56:34Z2009-11-04T16:56:34ZI don't know how to reveal a define constant without revealing its value.