User Bart - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:51:24Z http://stackoverflow.com/feeds/user/4343 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60540#60540 6 Answer by Bart for The single most useful Emacs feature Bart 2008-09-13T13:36:25Z 2009-12-13T18:58:05Z <p><strong>dired</strong> (M-x dired) let me navigate folders by touch-typing, much faster than browsing in a GUI.</p> http://stackoverflow.com/questions/275944/how-do-i-count-the-number-of-occurrences-of-a-char-in-a-string 3 How do I count the number of occurrences of a char in a String? Bart 2008-11-09T14:07:09Z 2009-11-29T22:23:07Z <p>I have the string </p> <pre><code>a.b.c.d </code></pre> <p>I want to count the occurrences of '.' in an idiomatic way, preferably a one-liner.</p> <p>(Previously I had expressed this constraint as "without a loop", in case you're wondering why everyone's trying to answer without using a loop).</p> http://stackoverflow.com/questions/91890/reading-quicken-data-files 1 Reading quicken data files Bart 2008-09-18T12:02:19Z 2009-10-08T10:26:46Z <p>Looking for an open source library, for C++, Java, C# or Python, for reading the data from Quicken <strong>.qdf</strong> files.</p> <p>@<a href="#91941" rel="nofollow">Swati</a>: Quicken <strong>.qif</strong> format is for transfer only and is not kept up to date by the application like the .qdf file is.</p> http://stackoverflow.com/questions/255147/how-do-i-keep-python-print-from-adding-spaces 7 How do I keep Python print from adding spaces ? Bart 2008-10-31T22:33:21Z 2009-06-24T04:26:03Z <p>In python, if I say</p> <pre><code>print 'h' </code></pre> <p>I get the letter h and a newline. If I say </p> <pre><code>print 'h', </code></pre> <p>I get the letter h and no newline. If I say</p> <pre><code>print 'h', print 'm', </code></pre> <p>I get the letter h, a space, and the letter m. How can I prevent Python from printing the space?</p> <p>The print statements are different iterations of the same loop so I can't just use the + operator.</p> http://stackoverflow.com/questions/684139/program-to-list-all-windows-files-in-order-by-size/684235#684235 0 Answer by Bart for Program to list all windows files in order by size Bart 2009-03-26T01:49:08Z 2009-03-26T01:49:08Z <p>WinDirStat is what I use, but it's Windows-only:</p> <p><a href="http://windirstat.info/images/windirstat.jpg" rel="nofollow">http://windirstat.info/images/windirstat.jpg</a></p> <p><a href="http://windirstat.info/" rel="nofollow">http://windirstat.info/</a></p> <p>It's based on Kdirstat, for X11:</p> <p><a href="http://kdirstat.sourceforge.net/" rel="nofollow">http://kdirstat.sourceforge.net/</a></p> http://stackoverflow.com/questions/683905/regular-expression-extraction-in-text-editors/683939#683939 1 Answer by Bart for Regular expression extraction in text editors... Bart 2009-03-25T23:31:30Z 2009-03-26T01:31:07Z <p>Have you tried nregex.com ?</p> <p><a href="http://www.nregex.com/nregex/default.aspx" rel="nofollow">http://www.nregex.com/nregex/default.aspx</a></p> <p>There's a plugin for Netbeans here, but development looks stalled:</p> <p><a href="http://wiki.netbeans.org/Regex" rel="nofollow">http://wiki.netbeans.org/Regex</a></p> <p><a href="http://wiki.netbeans.org/RegularExpressionsModuleProposal" rel="nofollow">http://wiki.netbeans.org/RegularExpressionsModuleProposal</a></p> <p>You might also try The Regulator:</p> <p><a href="http://sourceforge.net/projects/regulator/" rel="nofollow">http://sourceforge.net/projects/regulator/</a></p> http://stackoverflow.com/questions/398224/how-to-mix-colors-naturally-with-c/398293#398293 2 Answer by Bart for How to mix colors "naturally" with C#? Bart 2008-12-29T18:37:15Z 2008-12-29T18:37:15Z <p>You get cmyk&lt;->rgb conversion for free with <a href="http://en.wikipedia.org/wiki/Windows_Imaging_Component" rel="nofollow">WIC</a>, but it's .NET 3.0 only</p> http://stackoverflow.com/questions/323604/what-are-important-points-when-designing-a-binary-file-format/398184#398184 2 Answer by Bart for What are important points when designing a (binary) file format? Bart 2008-12-29T17:35:42Z 2008-12-29T17:44:28Z <p>I agree that these are good ideas:</p> <ol> <li><p>Magic numbers at the beginning. Pretty much <a href="http://en.wikipedia.org/wiki/File_format#Magic_number" rel="nofollow">required</a> in *nix: </p></li> <li><p>File version number for backwards compatibility.</p></li> <li><p>Endianness specification.</p></li> </ol> <p>But your fourth one is overkill, because #2 lets you add fields as long as you change the version number (and as long as you don't need <a href="http://en.wikipedia.org/wiki/Forward_compatibility" rel="nofollow">forward compatibility</a>).</p> <ul> <li>possibly reserve some space for further per-file attributes that might be necessary in the future?</li> </ul> <p>Also, the idea of imposing a block-structure on your file, expressed in many other answers, seems less like a universal requirement for binary files than a solution to a problem with certain kinds of payloads.</p> <p>In addition to 1-3 above, I'd add these:</p> <ul> <li><p>simple checksum or other way of detecting that the contents are intact. Otherwise you can't trust magic bytes or version numbers. Be careful to spec which bytes are included in the checksum. Typically you would include all bytes in the file that don't already have error detection.</p></li> <li><p>version of your software (including the most granular number you have, e.g. build number) that wrote the file. You're going to get a bug report with an attached file from someone who can't open it and they will have no clue when they wrote the file because the error didn't occur then. But the bug is in the version that wrote it, not in the one trying to read it.</p></li> <li><p>Make it clear in the spec that this is a <em>binary</em> format, i.e. all values 0-255 are allowed for all bytes (except the magic numbers). </p></li> </ul> <p>And here are some optional ones:</p> <ul> <li><p>If you do need forward compatibility, you need some way of expressing which "chunks" are "optional" (like png does), so that a previous version of your software can skip over them gracefully. </p></li> <li><p>If you expect these files to be found "in the wild", you might consider embedding some clue to find the spec. Imagine how helpful it would be to find the string <em><a href="http://www.w3.org/TR/PNG/" rel="nofollow">http://www.w3.org/TR/PNG/</a></em> in a png file.</p></li> </ul> http://stackoverflow.com/questions/15187/writing-emacs-extensions-in-languages-other-than-lisp/196617#196617 0 Answer by Bart for Writing Emacs extensions in languages other than Lisp Bart 2008-10-13T03:11:11Z 2008-10-13T03:11:11Z <p>Someday you may be able to use <a href="http://steve-yegge.blogspot.com/2007/12/boring-stevey-status-update.html" rel="nofollow">JavaScript</a>.</p> http://stackoverflow.com/questions/41522/tips-for-learning-elisp/196601#196601 7 Answer by Bart for Tips for Learning Elisp? Bart 2008-10-13T02:58:48Z 2008-10-13T02:58:48Z <p>This <a href="http://steve-yegge.blogspot.com/2008_01_01_archive.html" rel="nofollow">post by Steve Yegge</a> is a great primer.</p> http://stackoverflow.com/questions/48249/is-there-a-way-to-embed-a-browser-in-java/48260#48260 1 Answer by Bart for Is there a way to embed a browser in Java? Bart 2008-09-07T08:47:25Z 2008-09-22T15:31:32Z <p>You can try <a href="http://www.webrenderer.com/products/swing/product/" rel="nofollow">Webrenderer</a> or <a href="http://www.icesoft.com/products/icebrowser.html" rel="nofollow">Ice Browser</a></p> http://stackoverflow.com/questions/96501/perks-for-new-programmers/99209#99209 2 Answer by Bart for Perks for new programmers Bart 2008-09-19T03:12:39Z 2008-09-19T03:12:39Z <p>Working with people who can explain why they do things the way they do.</p> http://stackoverflow.com/questions/96501/perks-for-new-programmers/99198#99198 1 Answer by Bart for Perks for new programmers Bart 2008-09-19T03:11:10Z 2008-09-19T03:11:10Z <p>A chance to be part of a successful team.</p> http://stackoverflow.com/questions/79677/whats-the-best-way-to-do-fixed-point-math/79701#79701 2 Answer by Bart for What's the best way to do fixed-point math? Bart 2008-09-17T03:37:32Z 2008-09-17T04:47:15Z <p>Chaning fixed point representations is commonly called 'scaling'.</p> <p>If you can do this with a class with no performance penalty, then that's the way to go. Depends heavily on the compiler and how it inlines. If not, then you need a more traditional C-style approach. The oo approach will give you compiler-enforced type safety which the traditional implementation only approximates. </p> <p>@<a href="#79763" rel="nofollow">cibyr</a>: has a good oo implementation. Now for the more traditional one.</p> <p>To keep track of which variables are scale, you need to use a consistent convention. Make a notation at the end of each variable name to indicate whether the value is scaled or not, and write macros SCALE() and UNSCALE() that expand to x>>8 and x&lt;&lt;8. </p> <pre><code>#define SCALE(x) (x&gt;&gt;8) #define UNSCALE(x) (x&lt;&lt;8) xPositionUnscaled = UNSCALE( 10); xPositionScaled = SCALE( xPositionUnscaled); </code></pre> <p>It may seem like extra work to use so much notation, but notice how you can tell at a glance that any line is correct without looking at other lines. For example:</p> <pre><code>xPositionScaled = SCALE( xPositionScaled); </code></pre> <p>is obviously wrong, by inspection.</p> <p>This is a variation of the <strong>Apps Hungarian</strong> idea that <a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">Joel mentions in this post</a>.</p> http://stackoverflow.com/questions/60464/changing-the-default-folder-in-emacs/60482#60482 12 Answer by Bart for Changing the default folder in emacs Bart 2008-09-13T11:22:44Z 2008-09-15T16:11:08Z <p>You didn't say so, but it sounds like you're starting emacs from a Windows shortcut.</p> <p>The directory that you see with c-x c-f is the cwd, which for a Windows shortcut is specified in the "Start In" field in the properties. Right click on the shortcut, select properties, and type the path to your desktop in the "Start In" field.</p> <p>If you're using emacs from the command line, c-x c-f would browse to the directory that you were in when you started emacs (the cwd).</p> <p>This approach is better than editing your .emacs file since it will allow you to have more than one shortcuts with more than one starting directory, and it lets you have the normal command line behavior of emacs if you need it.</p> <p><strong>CWD</strong> = <a href="http://linux.die.net/man/3/cwd" rel="nofollow">current working directory</a>. It makes a lot more sense at the command line than in a GUI. Another common name for this is PWD = print working directory, which refers to the name of a <a href="http://en.wikipedia.org/wiki/Pwd" rel="nofollow">unix command that prints this information</a>. Thanks to @[jf-sebastian] for the clarification.</p> http://stackoverflow.com/questions/56500/cant-access-variable-in-c-dll-from-a-c-app/57055#57055 1 Answer by Bart for Can't access variable in C++ DLL from a C app Bart 2008-09-11T16:37:08Z 2008-09-11T16:37:08Z <p>In the <strong>dll source code</strong> you should have this implementation so that the .lib file <em>exports</em> the symbol:</p> <pre><code>extern "C" _declspec(dllexport) char* MyNewVariable = 0; </code></pre> <p>The c client should use a <strong>header</strong> with this declaration so that the client code will <em>import</em> the symbol:</p> <pre><code>extern "C" _declspec(dllimport) char* MyNewVariable; </code></pre> <p>This header will cause a compile error if #include-ed in the dll source code, so it is usually put in an export header that is used only for exported functions and only by clients.</p> <p>If you need to, you can also create a "universal" header that can be included anywhere that looks like this:</p> <pre><code>#ifdef __cplusplus extern "C" { #endif #ifdef dll_source_file #define EXPORTED declspec(dllexport) #else #define EXPORTED declspec(dllimport) #endif dll_source_file #ifdef __cplusplus } #endif EXPORTED char* MyNewVariable; </code></pre> <p>Then the dll source code looks like this:</p> <pre><code>#define dll_source_code #include "universal_header.h" EXPORTED char* MyNewVariable = 0; </code></pre> <p>And the client looks like this:</p> <pre><code>#include "universal_header.h" ... MyNewVariable = "Hello, world"; </code></pre> <p>If you do this a lot, the monster #ifdef at the top can go in export_magic.h and universal_header.h becomes:</p> <pre><code>#include "export_magic.h" EXPORTED char *MyNewVariable; </code></pre> http://stackoverflow.com/questions/51530/how-do-you-treat-legacy-code-and-data/51576#51576 1 Answer by Bart for How do you treat legacy code (and data)? Bart 2008-09-09T10:49:09Z 2008-09-09T10:49:09Z <p>Use <a href="http://svnbook.red-bean.com/en/1.4/svn.advanced.externals.html" rel="nofollow">svn:externals</a> to reference your legacy code as you would a third-party repository. </p> <p>Then you can separate your refactoring work from your dependent projects and (using fixed revision references i.e. -r1234) be very explicit about which revision of the legacy code the dependent project depends on.</p> http://stackoverflow.com/questions/48315/c-practice-problems/48324#48324 3 Answer by Bart for C++ Practice Problems Bart 2008-09-07T11:11:02Z 2008-09-07T11:11:02Z <p>Try <a href="http://www.topcoder.com" rel="nofollow">Topcoder</a>. You can skip the competition aspect and just try old problems. The benefit is that you can solve a problem on your own, then look at lots of other solutions in many different languages when you're done.</p> http://stackoverflow.com/questions/48310/becoming-a-programmer-while-working-in-quality-assurance/48317#48317 0 Answer by Bart for Becoming a programmer while working in Quality Assurance Bart 2008-09-07T11:06:08Z 2008-09-07T11:06:08Z <p><strong>Test Driven Design</strong></p> <p>If you're in QE, you've got a good appreciation of the value of testing early. Some of the best developers at my company have come up through QE.</p> <p>Don't learn a new language. Any employer worth working for will assume that you can learn a new language quickly. </p> <p>Learn how to write well tested software in whatever stack your company already uses and you will be in demand.</p> <p>Here's a <a href="http://rads.stackoverflow.com/amzn/click/0321146530" rel="nofollow">good reference</a> to start with, I'm sure there are many more.</p> http://stackoverflow.com/questions/34977/byte-level-length-description/41051#41051 0 Answer by Bart for Byte level length description Bart 2008-09-03T02:14:08Z 2008-09-04T22:03:00Z <p>Really you're only doing four calculations, so <strong><em>readability seems way more important</em></strong> here than efficiency. My approach to make something like this more readable is to </p> <ol> <li>Extract common code to a function</li> <li>Put similar calculations together to make the patterns more obvious</li> <li>Get rid of the intermediate variable print_zeroes and be explicit about the cases in which you output bytes even if they're zero (i.e. the preceding byte was non-zero)</li> </ol> <p>I've changed the random code block into a function and changed a few variables (underscores are giving me trouble in the markdown preview screen). I've also assumed that <em>bytes</em> is being passed in, and that whoever is passing it in will pass us a pointer so we can modify it.</p> <p>Here's the code:</p> <pre><code>/* append byte b to stream, increment index */ /* really needs to check length of stream before appending */ void output( int i, unsigned char b, char stream[], int *index ) { printf("byte %d: 0x%02x\n", i, b); stream[(*index)++] = b; } void answer( char bytestream[], unsigned int *bytes, unsigned int n) { /* mask out four bytes from word n */ first = (n &amp; 0xFF000000) &gt;&gt; 24; second = (n &amp; 0x00FF0000) &gt;&gt; 16; third = (n &amp; 0x0000FF00) &gt;&gt; 8; fourth = (n &amp; 0x000000FF) &gt;&gt; 0; /* conditionally output each byte starting with the */ /* first non-zero byte */ if (first) output( 1, first, bytestream, bytes); if (first || second) output( 2, second, bytestream, bytes); if (first || second || third) output( 3, third, bytestream, bytes); if (first || second || third || fourth) output( 4, fourth, bytestream, bytes); } </code></pre> <p>Ever so slightly more efficient, and <strong><em>maybe</em></strong> easier to understand would be this modification to the last four if statements:</p> <pre><code> if (n&gt;0x00FFFFFF) output( 1, first, bytestream, bytes); if (n&gt;0x0000FFFF) output( 2, second, bytestream, bytes); if (n&gt;0x000000FF) output( 3, third, bytestream, bytes); if (1) output( 4, fourth, bytestream, bytes); </code></pre> <p>I agree, however, that compressing this field makes the receiving state machine overly complicated. But if you can't change the protocol, this code is much easier to read.</p> http://stackoverflow.com/questions/41522/tips-for-learning-elisp/41575#41575 3 Answer by Bart for Tips for Learning Elisp? Bart 2008-09-03T12:43:11Z 2008-09-03T12:43:11Z <p>Here's a book that I've found helpful for learning practical elisp:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0761524460" rel="nofollow">http://www.amazon.com/GNU-Emacs-XEmacs-CD-ROM-Linux/dp/0761524460</a></p> http://stackoverflow.com/questions/16969/net-solution-subversion-best-practices/41119#41119 0 Answer by Bart for .net solution subversion best practices? Bart 2008-09-03T03:11:23Z 2008-09-03T03:11:23Z <p>Sounds like you're trying to do configuration control with a source code control system.</p> <p>Subversion my not be the right choice, since it's really for source code (ascii files) and build dependencies, not executable files (binary) and run-time dependencies.</p> <p>My guess is you really need an installer: <a href="http://en.wikipedia.org/wiki/List_of_installation_software" rel="nofollow">http://en.wikipedia.org/wiki/List_of_installation_software</a></p> <p>Or maybe just a script to launch the correct configuration from a network drive.</p> http://stackoverflow.com/questions/41056/best-java-tools-for-emacs 5 Best java tools for emacs Bart 2008-09-03T02:18:15Z 2008-09-03T02:22:04Z <p>I'm a long-time emacs user, and I'm now working about 1/2 time in Java.</p> <p>What are the best emacs libraries for</p> <ol> <li>Debugging Java</li> <li>Code Completion/Intellisense</li> <li>Javadoc browsing</li> </ol> <p>?</p> http://stackoverflow.com/questions/275944/how-do-i-count-the-number-of-occurrences-of-a-char-in-a-string Comment by Bart on How do I count the number of occurrences of a char in a String? Bart 2008-11-17T14:28:02Z 2008-11-17T14:28:02Z Not averse to a loop so much as looking for an idiomatic one-liner. http://stackoverflow.com/questions/60464/changing-the-default-folder-in-emacs/60482#60482 Comment by Bart on Changing the default folder in emacs Bart 2008-09-14T20:20:33Z 2008-09-14T20:20:33Z Which of course is what the wikipedia article I linked to explains :-). http://stackoverflow.com/questions/60464/changing-the-default-folder-in-emacs/60473#60473 Comment by Bart on Changing the default folder in emacs Bart 2008-09-13T13:28:45Z 2008-09-13T13:28:45Z The load-path is the ordered list of directories emacs will search when resolving function names. It won't affect C-x C-f. You need to follow one of the suggestions below to either tell Windows to start emacs in a different directory or do a cd inside of your .emacs file.