User Devrin - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:42:52Z http://stackoverflow.com/feeds/user/5269 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/97371/batch-script-to-copy-newest-file 1 Batch script to copy newest file Devrin 2008-09-18T21:52:05Z 2009-11-04T05:38:39Z <p>I need to copy the newest file in a directory to a new location. So far I've found resources on the <a href="http://www.ss64.com/nt/forfiles.html" rel="nofollow">forfiles</a> command, a <a href="http://stackoverflow.com/questions/51837/open-one-of-a-series-of-files-using-a-batch-file">date-related question</a> here, and another <a href="http://stackoverflow.com/questions/50902/how-do-i-delete-old-files-from-a-directory-while-keeping-the-most-recent-ones-o">related question</a>. I'm just having a bit of trouble putting the pieces together! How do I copy the newest file in that directory to a new place?</p> http://stackoverflow.com/questions/760761/extract-a-string-within-and-pattern/760811#760811 4 Answer by Devrin for Extract a string within "> and </ pattern Devrin 2009-04-17T15:11:41Z 2009-04-17T15:51:20Z <p>Try the following vim search:</p> <pre><code>/"&gt;\(.*\)&lt;\/ </code></pre> <p>That should match any line with that pattern. It'll also store whatever text it grabs in between your start and end markers into <code>\1</code> which you can use if you want to do search and replace in vim. For example:</p> <pre><code>:%s/"&gt;\(.*\)&lt;\//Log message: \1/ </code></pre> <p>If you want to use grep in the command line to search for that string you can use:</p> <pre><code>$ egrep "\"&gt;.*&lt;\/" foo.txt </code></pre> <p>This will print out only the matching lines from <code>foo.txt</code>. If you want to send these to a new file try:</p> <pre><code>$ egrep "\"&gt;.*&lt;\/" foo.txt &gt; new.txt </code></pre> http://stackoverflow.com/questions/730033/c-array-is-displaying-garbage-data-memory-problems/730119#730119 8 Answer by Devrin for C array is displaying garbage data (memory problems?) Devrin 2009-04-08T13:52:15Z 2009-04-08T13:52:15Z <p>I need to look through it more but one problem off the bat is that you're driving an 8x8 LED matrix but using a 7x7 matrix to hold the data. Declare your matrix as:</p> <pre><code>int Mat[8][8]; </code></pre> http://stackoverflow.com/questions/315242/source-control-setup/318827#318827 0 Answer by Devrin for Source control setup Devrin 2008-11-25T20:57:03Z 2008-11-25T20:57:03Z <p>Could you be a bit more clear about what specifically svn is getting confused about? Remember that the <code>svn:ignore</code> property is a per-directory setting; i.e. if you want to ignore <code>.foo</code> files in <code>./bar</code> and in <code>./bar/abc</code>, you need to edit the property for each directory. Yes, it is a pain in the butt.</p> http://stackoverflow.com/questions/318155/subversion-merge-problem-cannot-reintegrate-yet/318747#318747 0 Answer by Devrin for Subversion Merge Problem: Cannot reintegrate yet Devrin 2008-11-25T20:34:47Z 2008-11-25T20:34:47Z <p>I've used svn for a long time and have never seen this; granted I haven't used Tortoise that much. A few points to consider:</p> <ol> <li><p>The log shows you trying to merge <code>../ViM/branches/..</code> into <code>../ViM/</code>. Do you you not have a <code>../ViM/trunk/</code> or is the log just printing out stuff funny? I'd imagine that trying to merge a branch into something other than the code base would mess stuff up.</p></li> <li><p>Did you commit any changes to trunk after creating the branch but before reintegrating it? If so, make sure you merge those changes into the branch before trying to merge it back into the trunk.</p></li> <li><p>Run <code>svn cleanup</code> on your branch and trunk to make sure that any unfinished business there is cleaned up.</p></li> <li><p>I'm not sure it would cause any issues but your working copy of trunk may need to be updated before you can reintegrate changes.</p></li> </ol> http://stackoverflow.com/questions/145838/benefits-of-inline-functions-in-c/146136#146136 0 Answer by Devrin for Benefits of inline functions in C++? Devrin 2008-09-28T15:53:06Z 2008-09-28T15:53:06Z <p>During optimization many compilers will inline functions even if you didn't mark them. You generally only need to mark functions as inline if you know something the compiler doesn't, as it can usually make the correct decision itself.</p> http://stackoverflow.com/questions/61155/what-is-the-best-way-to-position-a-div-in-css/61159#61159 0 Answer by Devrin for What is the best way to position a div in css? Devrin 2008-09-14T06:09:12Z 2008-09-14T06:09:12Z <p>I've always found this A List Apart article useful: <a href="http://www.alistapart.com/articles/taminglists/" rel="nofollow">taming lists</a>.</p> http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60576#60576 8 Answer by Devrin for The single most useful Emacs feature Devrin 2008-09-13T14:46:43Z 2008-09-13T15:00:00Z <p>Though it's not an emacs <em>feature</em>, it's always worthwhile to point out to any newbies to remap their caps lock keys to control. Save those pinkies!</p> http://stackoverflow.com/questions/730033/c-array-is-displaying-garbage-data-memory-problems/730119#730119 Comment by Devrin on C array is displaying garbage data (memory problems?) Devrin 2009-04-08T14:08:45Z 2009-04-08T14:08:45Z See <a href="http://gd.tuwien.ac.at/languages/c/programming-bbrown/c_034.htm" rel="nofollow">gd.tuwien.ac.at/languages/c/&hellip;</a> for clarification. http://stackoverflow.com/questions/730033/c-array-is-displaying-garbage-data-memory-problems/730119#730119 Comment by Devrin on C array is displaying garbage data (memory problems?) Devrin 2009-04-08T14:07:18Z 2009-04-08T14:07:18Z I agree with @sharth. When declaring a matrix you use absolute sizes. http://stackoverflow.com/questions/730033/c-array-is-displaying-garbage-data-memory-problems/730119#730119 Comment by Devrin on C array is displaying garbage data (memory problems?) Devrin 2009-04-08T14:00:30Z 2009-04-08T14:00:30Z Arrays in C are <i>indexed</i> from 0, but declared using absolute sizes. Therefore to get at the last element of an array you declared as <code>array[8]</code> you'd say <code>x = array[7]</code>.