User Daren Thomas - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:08:32Z http://stackoverflow.com/feeds/user/2260 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1802757/remove-first-line-in-text-file-without-allocating-memory-for-entire-text-file/1802772#1802772 0 Answer by Daren Thomas for Remove first line in text file without allocating memory for entire text file Daren Thomas 2009-11-26T10:10:17Z 2009-11-26T10:10:17Z <p>I'm a bit rusty on perl, but this might do the trick:</p> <pre><code>#!/usr/bin/perl $first = true; while (&lt;&gt;) { if ($first) { # skip first line $first = false; } else { print; } } </code></pre> <p>and use this script as a filter:</p> <pre><code>cat myfile.txt | removefirstline.pl &gt; myfile_2.txt </code></pre> http://stackoverflow.com/questions/82365/smooth-progressbar-in-wpf 3 Smooth ProgressBar in WPF Daren Thomas 2008-09-17T12:06:05Z 2009-11-26T09:58:14Z <p>I'm using the ProgressBar control in a WPF application and I'm getting this old, Windows 3.1 Progress*Blocks* thing. In VB6, there was a property to show a <em>smooth</em> ProgressBar. Is there such a thing for WPF?</p> http://stackoverflow.com/questions/1797611/how-to-convert-an-18-character-string-into-a-unique-id/1797704#1797704 4 Answer by Daren Thomas for How to convert an 18 Character String into a Unique ID ? Daren Thomas 2009-11-25T15:30:04Z 2009-11-25T15:35:34Z <p>Just create a map (dictionary / hashtable) that maps ROWID strings to an (incremented) long. If you keep two such dictionaries and wrap them up in a nice class, you will have a bidirectional lookup between the strings and the long IDs.</p> <p>Pseudocode:</p> <pre><code>class BidirectionalLookup: dict&lt;string, long&gt; stringToLong dict&lt;long, string&gt; longToString long lastId addString(string): long newId = atomic(++lastId) stringToLong[string] = newId longToString[newId] = string return newId lookUp(string): long return stringToLong[string] lookUp(long): string return longToString[long] </code></pre> http://stackoverflow.com/questions/1464697/stripout-comments-from-xml/1464710#1464710 4 Answer by Daren Thomas for stripout comments from xml Daren Thomas 2009-09-23T08:29:12Z 2009-11-24T08:02:51Z <p>You might want to look at the <code>xmllint</code> tool. It has several options (one of which <code>--format</code> will do a pretty print), but I can't figure out how to remove the comments using this tool.</p> <p>Also, check out <a href="http://xmlstar.sourceforge.net/" rel="nofollow">XMLStarlet</a>, a bunch of command line tools to do anything you would want to with xml. Then do:</p> <pre><code>xml c14n --without-comments # XML file canonicalization w/o comments </code></pre> <p><strong>EDIT</strong>: OP eventually used this line:</p> <pre><code>xmlstarlet c14n --without-comments old.xml &gt; new.xml </code></pre> http://stackoverflow.com/questions/1761601/is-the-usage-of-stored-procedures-a-bad-practice/1761644#1761644 0 Answer by Daren Thomas for Is the usage of stored procedures a bad practice? Daren Thomas 2009-11-19T07:59:53Z 2009-11-19T07:59:53Z <p>I have worked on projects that used stored procedures a lot. Basically, the business layer was moved to the database, because the team leader was impressed by some oracle guru he met in his previous job.</p> <p>Stored procedure code is harder to maintain than C# (in Visual Studio), since the tools are worse, debugging is harder etc.</p> <p>At the same time, having clear interfaces to your data rules. Thinking about which queries will be done on the database can be a good thing.</p> <p>Try to keep the database generation and migration (update) code in source control. Include stored procedures there if you really want them. Keep stored procedure logic as simple as possible (don't do any business logic, just consistency style stuff). Maybe even generate them from a more abstract representation (along with the C# code to call them).</p> http://stackoverflow.com/questions/1526352/how-to-intersect-two-polygons 6 How to intersect two polygons? Daren Thomas 2009-10-06T15:29:48Z 2009-11-11T07:35:44Z <p>This seems non-trivial (it gets asked quite a lot on various forums), but I absolutely need this as a building block for a more complex algorithm.</p> <p><em>Input</em>: 2 polygons (A and B) in 2D, given as a list of edges <code>[(x0, y0, x1, y2), ...]</code> each. The points are represented by pairs of <code>double</code>s. I do not know if they are given clockwise, counter-clockwise or in any direction at all. I <em>do</em> know that they are not necessarily convex.</p> <p><em>Output</em>: 3 polygons representing A, B and the intersecting polygon AB. Either of which may be an empty (?) polygon, e.g. <code>null</code>.</p> <p><em>Hint for optimization</em>: These polygons represent room and floor boundaries. So the room boundary will normally fully intersect with the floor boundary, unless it belongs to another floor on the same plane (argh!).</p> <p>I'm kind of hoping someone has already done this in c# and will let me use their strategy/code, as what I have found so far on this problem is rather daunting.</p> <p><strong>EDIT</strong>: So it seems I'm not entirely chicken for feiling faint at the prospect of doing this. I would like to restate the desired output here, as this is a special case and might make computation simpler:</p> <p><em>Output</em>: First polygon minus all the intersecting bits, intersection polygons (plural is ok). I'm not really interested in the second polygon, just its intersection with the first.</p> <p><strong>EDIT2</strong>: I am currently using the <a href="http://www.cs.manchester.ac.uk/~toby/alan/software/" rel="nofollow">GPC (General Polygon Clipper)</a> library that makes this really easy!</p> http://stackoverflow.com/questions/43580/how-to-find-the-mime-type-of-a-file-in-python 3 How to find the mime type of a file in python? Daren Thomas 2008-09-04T12:07:27Z 2009-11-02T15:48:09Z <p>Let's say you want to save a bunch of files somewhere, for instance in BLOBs. Let's say you want to dish these files out via a web page and have the client automatically open the correct application/viewer.</p> <p>Assumption: The browser figures out which application/viewer to use by the mime-type (content-type?) header in the HTTP response.</p> <p>Based on that assumption, in addition to the bytes of the file, you also want to save the MIME type.</p> <p>How would you find the MIME type of a file? I'm currently on a Mac, but this should also work on Windows. </p> <p>Does the browser add this information when posting the file to the web page?</p> <p>Is there a neat python library for finding this information? A WebService or (even better) a downloadable database?</p> <p><strong>Edit:</strong> Thank you, Dave Webb.</p> http://stackoverflow.com/questions/1636086/how-to-force-visual-studio-2008-to-regenerate-code-from-t4-templates-when-an-xml 0 How to force Visual Studio 2008 to regenerate code from T4 templates when an XML file changes? Daren Thomas 2009-10-28T09:29:04Z 2009-10-28T10:40:24Z <p>I'm generating quite a bit of code from a single XML file, but the templates are organized in two different T4 templates. Whenever I change the XML file, I have to remember to open the two <code>*.tt</code> files, change them trivially (add / delete a space) and save them again to make sure the code is generated.</p> <p>This can't be the right way to do it!</p> <p>Ideally, I would like Visual Studio 2008 to do a text transfor on the T4 files if the XML file has changed. I'm a bit lost since I don't really know how Visual Studio builds C# projects, so pointers in that direction would also be of help (I could then try to figure it out myself).</p> http://stackoverflow.com/questions/298069/automate-download-of-businessobjecs-web-intelligence-reports 0 Automate download of BusinessObjecs Web Intelligence reports Daren Thomas 2008-11-18T07:40:17Z 2009-10-27T17:25:22Z <p>I'm tasked with automating the retrieval of a couple of <a href="http://www.businessobjects.com/product/catalog/web_intelligence/" rel="nofollow">BusinessObjects Web Intelligence</a> reports and further processing thereof.</p> <p>I have no other means of access to this data (this was the first avenue I followed), so I <em>will</em> have to do some screen scraping. Alas, the interface seems <em>user-only</em>. Grr!</p> <p>Has anyone done this before? Like to share?</p> <p>Also, does anyone know of a good library for automating the web browser? I know there is a python thingy out there that can be used for testing web applications - I need something in .NET though... What is your favorite?</p> <p>PS: I have also checked this <a href="http://stackoverflow.com/questions/189288/automate-getting-report-from-webpage">thread (automate getting report from webpage)</a>, but am hoping for a Web Intelligence specific sollution.</p> http://stackoverflow.com/questions/1409735/our-subversion-server-has-a-new-ip-address-now-what 1 Our subversion server has a new IP address - now what? Daren Thomas 2009-09-11T08:37:10Z 2009-10-23T19:31:34Z <p>We connect to the repository by ip address - a quick hack introduced by the guy before me, since we don't have a <em>real</em> server, just an old pc running apache, svn etc. We recently moved offices and it seems the "server" is using DHCP - it booted to a new IP address this morning. Logging into trac (also running on that server) is easy: Just change the bookmark in the browser.</p> <p>But what do I do about my working copy? How can I tell that where to find the server?</p> http://stackoverflow.com/questions/1409392/how-to-move-a-subproject-to-a-new-folder-in-visual-studio-2008-without-breaking 0 How to move a subproject to a new folder in Visual Studio 2008 without breaking (ankhsvn) subversion revision history? Daren Thomas 2009-09-11T07:00:44Z 2009-10-23T19:24:36Z <p>I have a c# solution with a bunch of projects. One of them resides in a folder that does not match the project name (for reasons I can't know since the guy who did it left before I arrived). My beloved ReSharper plugin goes all grumpy on me and draws blue swiggly lines under the namespace declarations and groans: <em>"Namespace does not correspond to file location, should be..."</em> And I agree. But the file location is wrong, not the namespace.</p> <p>How can do I change the folder name of the project without breaking subversion integration and whatnot? I'm using the AnkhSvn pluging, but also have TortoiseSVN installed and would be comfortable to use either as long as the solution stays sane.</p> <p>Any tips?</p> http://stackoverflow.com/questions/51782/how-do-i-export-the-code-documentation-in-c-visualstudio-2008 3 How do I export the code documentation in C# / VisualStudio 2008? Daren Thomas 2008-09-09T12:53:47Z 2009-10-23T13:31:12Z <p>I have allways made a point of writing nice code comments for classes and methods with the C# xml syntax. I allways expected to easily be able to export them later on.</p> <p>Today I actually have to do so, but am having trouble finding out how. Is there something I'm missing? I want to go <em>Menu->Build->Build Code Documentation</em>...</p> <p><strong>EDIT:</strong> This is quite a daunting task, the NDoc and Sandcastle links are probably really the way to go, but it still is a big mess, especially if all you want to do is a quick export to html :(</p> <p><strong>EDIT2:</strong> This link has an easy xslt for quick-and-dirty exports: <a href="http://www.codeproject.com/KB/XML/XMLDocStylesheet.aspx" rel="nofollow">http://www.codeproject.com/KB/XML/XMLDocStylesheet.aspx</a></p> http://stackoverflow.com/questions/1613042/parsing-xml-right-scripting-languages-packages-for-the-job/1613402#1613402 0 Answer by Daren Thomas for Parsing XML - right scripting languages / packages for the job? Daren Thomas 2009-10-23T13:23:22Z 2009-10-23T13:23:22Z <p>Reading Data out of XML files is dead easy with C# and LINQ to XML!</p> <p>Somehow, although I really love python, I found it hard to parse XML with the standard libraries.</p> http://stackoverflow.com/questions/59825/how-to-retrieve-an-element-from-a-set-without-removing-it 4 How to retrieve an element from a set without removing it? Daren Thomas 2008-09-12T19:58:33Z 2009-10-23T10:47:49Z <p>Suppose the following:</p> <pre><code>&gt;&gt;&gt;s = set([1, 2, 3]) </code></pre> <p>How do I get a value (any value) out of s without doing s.pop()? I want to leave the item in the set until I am sure I can remove it - something I can only be sure of after an asynchronous call to another host.</p> <p>Quick and dirty:</p> <pre><code>&gt;&gt;&gt;elem = s.pop() &gt;&gt;&gt;s.add(elem) </code></pre> <p>But do you know of a better way? Ideally in constant time.</p> http://stackoverflow.com/questions/1612225/what-is-the-expected-period-of-a-repeating-event-that-has-a-random-but-limited/1612236#1612236 2 Answer by Daren Thomas for What is the expected period of a repeating event that has a random (but limited) interval between each occurrence? Daren Thomas 2009-10-23T09:06:05Z 2009-10-23T09:10:20Z <p>I think you are right: 0.5 * maximum duration of the timer.</p> <p>Reasoning: The maximum period at all with the given setup would be the maximum duration of the timer.</p> <p>The average duration selected will be ahlf the maximum period of the timer, if they all have an equal probability: Add them up, divide by count and see for yourself:</p> <p>Example: values 1, 2, 3, 4, 5, 6</p> <p>Since each have the same probability of being chosen, for N is large: 1 will be chosen N / 6 times, 2 will be chosen N / 6 times etc.</p> <p>We add them all up: N/6 * (1 + 2 + 3 + 4 + 5 + 6) = N/6 * (21) = N * 21/6 = N * 3.5 ==> the average period for N events firing was 3.5, which is more or less the maximum duration of the timer. </p> http://stackoverflow.com/questions/1572455/how-to-execute-a-callback-method-instead-of-an-anonymous-method/1572498#1572498 1 Answer by Daren Thomas for How to execute a callback method instead of an anonymous method? Daren Thomas 2009-10-15T13:47:10Z 2009-10-15T13:47:10Z <p>The problem is that you are calling CreateOffer from a static method (OnCreateOfferComplete is an instance method).</p> <p>In this case, just declare your <code>OnCreateOfferComplete</code> method static.</p> http://stackoverflow.com/questions/1565164/what-is-the-rationale-for-all-comparisons-returning-false-for-ieee754-nan-values/1565195#1565195 0 Answer by Daren Thomas for What is the rationale for all comparisons returning false for IEEE754 NaN values? Daren Thomas 2009-10-14T09:26:04Z 2009-10-14T09:26:04Z <p>I'm guessing that NaN (Not A Number) means exactly that: This is not a number and thus comparing it does not really make sense.</p> <p>It's a bit like arithmetic in SQL with <code>null</code> operands: They all result in <code>null</code>.</p> <p>The comparisons for floating point numbers compare numeric values. Thus, they can't be used for non numeric values. NaN therefore cannot be compared in a numeric sense.</p> http://stackoverflow.com/questions/1564808/subclassing-array/1564826#1564826 1 Answer by Daren Thomas for Subclassing Array Daren Thomas 2009-10-14T07:45:07Z 2009-10-14T07:45:07Z <p>As far as I recall, you really can't subclass an Array in Java (it is a special type). The VM makes some assumptions about arrays that subclassing might mess up.</p> <p>Normally, I would just try to stay away from arrays. Use ArrayLists instead.</p> http://stackoverflow.com/questions/1564527/is-there-an-equivalent-to-cut-c-in-windows-cmd-exe-or-other-xp-standard-tools/1564557#1564557 2 Answer by Daren Thomas for Is there an equivalent to 'cut -c' in Windows cmd.exe (or other XP-standard tools)? Daren Thomas 2009-10-14T06:25:08Z 2009-10-14T06:36:31Z <p>This site has some pointers on how to extract substrings in cmd.exe: <a href="http://www.dostips.com/DtTipsStringManipulation.php" rel="nofollow">http://www.dostips.com/DtTipsStringManipulation.php</a></p> <p>That site suggests that you can use</p> <pre><code>%varname:~2,3% </code></pre> <p>to subscript a variable. This seems to fill your needs, except you now have to get each line into a variable.</p> <p>Next you want to look at the ghastly <code>for</code> loop syntax and <code>if</code> and branching (you can goto <code>:labels</code> in batch).</p> <p>This stuff is all rather ugly, but if you really have to go there...</p> <p>Here is a page in SO on looping through files and doing stuff to them: <a href="http://stackoverflow.com/questions/155932/how-do-you-loop-through-each-line-in-a-text-file-using-a-windows-batch-file">http://stackoverflow.com/questions/155932/how-do-you-loop-through-each-line-in-a-text-file-using-a-windows-batch-file</a></p> http://stackoverflow.com/questions/1560741/can-i-avoid-exceptions-in-c-continuing-code-execution/1560814#1560814 6 Answer by Daren Thomas for Can I avoid exceptions in C#, continuing code execution? Daren Thomas 2009-10-13T15:02:37Z 2009-10-14T06:10:15Z <p>You could create a SkipOnError method like this:</p> <pre><code>private SkipOnError(Action action) { try { action(); } catch { } } </code></pre> <p>Then you could call it like so:</p> <pre><code>try { SkipOnError(() =&gt; /*line1*/); line2; line3; } catch {} </code></pre> <p><strong>Edit:</strong> This should make it easier to skip a given exception:</p> <pre><code>private SkipOnError(Action action, Type exceptionToSkip) { try { action(); } catch (Exception e) { if (e.GetType() != exceptionToSkip) throw; } } </code></pre> <p><strong>NOTE:</strong> I'm not actually suggesting you do this - at least not on a regular basis, as I find it rather hacky myself. But it does sort of show off some of the functional things we can now do in C#, yay!</p> <p>What I would really do is this: Refactor <code>line1</code> into a method (<em>Extract Method</em>). That new method should handle any foreseeable exceptions (if they can be handled) and thus leave the caller in a known state. Because sometimes you really want to do <code>line1</code>, except, maybe it's ok if an error happens... </p> http://stackoverflow.com/questions/1560852/php-ternary-operator-short-if-statement-help/1560892#1560892 0 Answer by Daren Thomas for PHP ternary operator (short if statement) help Daren Thomas 2009-10-13T15:15:41Z 2009-10-13T15:15:41Z <p>If these are only ever used in a statement context, you can use a dummy value for the else expression:</p> <pre><code>($this-&gt;left_eye_sph &gt;= 0) ? $this-&gt;transpose_left_eye() : 0 </code></pre> <p>I forgot what PHP uses for null/nothing/None - use that.</p> http://stackoverflow.com/questions/1543098/i-need-a-c-compiler/1543109#1543109 17 Answer by Daren Thomas for I need a C++ Compiler Daren Thomas 2009-10-09T10:55:01Z 2009-10-09T10:55:01Z <p>I guess you want the GNU C++ Compiler from the <a href="http://gcc.gnu.org/" rel="nofollow">GNU Compiler Collection</a>.</p> http://stackoverflow.com/questions/1492756/how-to-set-the-value-of-a-shared-parameter-with-type-binding-in-autodesk-revit-ar 0 How to set the value of a shared parameter with type binding in Autodesk Revit Architecture 2010? Daren Thomas 2009-09-29T14:03:32Z 2009-10-08T07:05:20Z <p>I have a shared parameter <em>UValue</em> bound to the <code>Wall</code> type with <code>TypeBinding</code> in Autodesk Revit Architecture 2010.</p> <p>I can easily access the parameter with:</p> <pre><code>Definition d = DefinitionFile.Groups.get_Item("groupname").Definitions.get_Item("UValue"); Parameter parameter = self.get_Parameter("UValue"); </code></pre> <p>The value of this parameter can be looked at with</p> <pre><code>var u = parameter.AsDouble(); </code></pre> <p>But when I do</p> <pre><code>parameter.Set(0.8); </code></pre> <p>I get an Error:</p> <blockquote> <p>InvalidOperationException: Operation is not valid due to the current state of the object.</p> </blockquote> <p>On inspection, the parameters <code>ReadOnly</code> property is set to <code>false</code>.</p> http://stackoverflow.com/questions/1492756/how-to-set-the-value-of-a-shared-parameter-with-type-binding-in-autodesk-revit-ar/1536068#1536068 0 Answer by Daren Thomas for How to set the value of a shared parameter with type binding in Autodesk Revit Architecture 2010? Daren Thomas 2009-10-08T07:05:20Z 2009-10-08T07:05:20Z <p>Ok, I have found the problem:</p> <p>When using <code>TypeBinding</code>, the parameter is not in the <code>Wall</code> object itself, but in its <code>WallType</code> property. If you are doing this in a polymorphic way (not just walls, but also floors, roofs etc.), then you can use the <code>Element.ObjectType</code> property.</p> <p>The code in the OP should thus have been:</p> <pre><code>Definition d = DefinitionFile.Groups.get_Item("groupname").Definitions.get_Item("UValue"); Parameter parameter = self.ObjectType.get_Parameter("UValue"); </code></pre> <p>This is being called from an extension method, a rather neat technique for adding parameters to Revit objects.</p> <p>Setting the parameter can thus be done like this:</p> <pre><code>public static void SetUValue(this Wall self, double uvalue) { Parameter parameter = self.ObjectType.get_Parameter("UValue"); if (parameter != null) { parameter.Set(uvalue); } else { throw new InvalidOperationException( "Wall does not contain the parameter 'UValue'"); } } </code></pre> http://stackoverflow.com/questions/1525622/whats-an-elegant-way-to-unify-x-y-with-1-2-1-2-1-2-1-2-2-1/1525785#1525785 2 Answer by Daren Thomas for What's an elegant way to unify X,Y with (1,2), (1,-2), (-1,2), (-1,-2), (2,1), (2,-1) , (-2,1), (-2,-1)? Daren Thomas 2009-10-06T14:00:45Z 2009-10-06T14:00:45Z <pre><code>foo(1, 2). foo(2, 1). foo(X, Y) :- foo(-X, Y). foo(X, Y) :- foo(X, -Y). </code></pre> http://stackoverflow.com/questions/1508572/converting-xdocument-to-xmldocument-and-vice-versa/1508603#1508603 2 Answer by Daren Thomas for Converting XDocument to XmlDocument and vice versa. Daren Thomas 2009-10-02T09:37:10Z 2009-10-02T09:37:10Z <p>You could try writing the XDocument to an XmlWriter piped to an XmlReader for an XmlDocument.</p> <p>If I understand the concepts properly, a direct conversion is not possible (the internal structure is different / simplified with XDocument). But then, I might be wrong...</p> http://stackoverflow.com/questions/1497974/funky-square-replaces-tab-space-in-label-control/1498039#1498039 2 Answer by Daren Thomas for Funky Square replaces Tab-Space in Label Control Daren Thomas 2009-09-30T13:14:11Z 2009-09-30T13:14:11Z <p>I'm just guessing here:</p> <p>A tab is a control character. I assume the Label control replaces all characters it doesn't have a font glyph for with the funky square.</p> <p>The TextBox however will have code to display a tab (e.g. 4 spaces).</p> http://stackoverflow.com/questions/1497766/rebase-a-1-based-array-in-c/1497793#1497793 4 Answer by Daren Thomas for Rebase a 1-based array in c# Daren Thomas 2009-09-30T12:24:42Z 2009-09-30T12:37:24Z <p>Create a wrapper for the <code>ExcelData</code> array with a <code>this[,]</code> indexer and do rebasing logic there. Something like:</p> <pre><code>class ExcelDataWrapper { private object[,] _excelData; public ExcelDataWrapper(object[,] excelData) { _excelData = excelData; } public object this[int x, int y] { return _excelData[x+1, y+1]; } } </code></pre> http://stackoverflow.com/questions/27610/how-to-add-simple-tracing-in-c 7 How to add (simple) tracing in C#? Daren Thomas 2008-08-26T09:12:56Z 2009-09-30T10:45:17Z <p>I want to introduce some tracing to a C# application I am writing. Sadly, I can never really remember how it works and would like a tutorial with reference qualities to check up on every now and then. It should include:</p> <ul> <li>App.config / Web.config stuff to add for registering TraceListeners</li> <li>how to set it up in the calling application</li> </ul> <p>Do you know the uber tutorial that we should link to?</p> <p><strong>EDIT:</strong> Glenn Slaven pointed me in the right direction. Add this to your App.config/Web.config inside <code>&lt;configuration/&gt;</code>:</p> <pre><code>&lt;system.diagnostics&gt; &lt;trace autoflush="true"&gt; &lt;listeners&gt; &lt;add type="System.Diagnostics.TextWriterTraceListener" name="TextWriter" initializeData="trace.log" /&gt; &lt;/listeners&gt; &lt;/trace&gt; &lt;/system.diagnostics&gt; </code></pre> <p>This will add a <code>TextWriterTraceListener</code> that will catch everything you send to with <code>Trace.WriteLine</code> etc.</p> <p><strong>Tip:</strong> If you don't add any listeners, then you can still see the trace output with the SysInternals program DebugView (<code>Dbgview.exe</code>): <a href="http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx" rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx</a></p> http://stackoverflow.com/questions/1496576/design-pattern-managing-a-limited-number-of-a-resource/1496718#1496718 2 Answer by Daren Thomas for Design Pattern: managing a limited number of a resource Daren Thomas 2009-09-30T08:07:48Z 2009-09-30T08:07:48Z <p>You could also swap the logic around (it might result in cleaner code):</p> <p>Assign each group a resource from the start. Keep the rest of the resources in a list of "free" resources. Any consumer that asks for a resource does so through a group resource allocator that either just gives out the default group resource or queries for a free resource. On returning the resources, first fill group resource hole, then start filling free resource list.</p> <p>So you end up with a pool of free resources. One resource allocator per group with access to the free resource pool and a default resource. Consumers interact with the group allocator.</p> http://stackoverflow.com/questions/1802757/remove-first-line-in-text-file-without-allocating-memory-for-entire-text-file/1802772#1802772 Comment by Daren Thomas on Remove first line in text file without allocating memory for entire text file Daren Thomas 2009-11-27T08:09:26Z 2009-11-27T08:09:26Z wow. perl one-liners allways freak me out. Love it! http://stackoverflow.com/questions/1797611/how-to-convert-an-18-character-string-into-a-unique-id/1797704#1797704 Comment by Daren Thomas on How to convert an 18 Character String into a Unique ID ? Daren Thomas 2009-11-26T07:30:34Z 2009-11-26T07:30:34Z why not use a table in your database for this? http://stackoverflow.com/questions/43598/suggestions-for-a-good-commit-message-format-guideline/43613#43613 Comment by Daren Thomas on Suggestions for a good commit message: format/guideline? Daren Thomas 2009-11-10T08:27:20Z 2009-11-10T08:27:20Z No, because the tracker can be consulted whenever you really need to find out. Also, this emphasises keeping commit granularity at bug/task level. http://stackoverflow.com/questions/298069/automate-download-of-businessobjecs-web-intelligence-reports/548870#548870 Comment by Daren Thomas on Automate download of BusinessObjecs Web Intelligence reports Daren Thomas 2009-10-28T07:40:17Z 2009-10-28T07:40:17Z Yup. This was a fun track to pursue - alas I couldn't get it to work. Bugger :) http://stackoverflow.com/questions/1612225/what-is-the-expected-period-of-a-repeating-event-that-has-a-random-but-limited/1612236#1612236 Comment by Daren Thomas on What is the expected period of a repeating event that has a random (but limited) interval between each occurrence? Daren Thomas 2009-10-23T11:07:39Z 2009-10-23T11:07:39Z Yes, I saw that, but got fed up with my answer (its a mess, I like yours better) - also, for expected timer values, the error gets a lot smaller. I'm not sure if a timer value of 0 would really work... http://stackoverflow.com/questions/1599176/what-are-first-class-objects-in-java-and-c/1599264#1599264 Comment by Daren Thomas on What are first-class objects in Java and C#? Daren Thomas 2009-10-21T07:35:53Z 2009-10-21T07:35:53Z Right, functions are a good example: First-Class means here &quot;you can store them in a List&quot;. You can't store ints in a Java list (at least you couldn't in earlier versions, because an int is not an object - you can now, but there is some magic involved). http://stackoverflow.com/questions/1565164/what-is-the-rationale-for-all-comparisons-returning-false-for-ieee754-nan-values/1565195#1565195 Comment by Daren Thomas on What is the rationale for all comparisons returning false for IEEE754 NaN values? Daren Thomas 2009-10-16T09:24:29Z 2009-10-16T09:24:29Z yes, comparing a string to a string makes sense. But comparing a string to, say, apples, does not make much sense. Since apples and pears are not numbers, does it make sense to compare them? Which is greater? http://stackoverflow.com/questions/1572357/how-do-i-validate-a-text-box-to-only-allow-letters-and-numbers-using-a-regular-ex/1572372#1572372 Comment by Daren Thomas on How do I validate a text box to only allow letters and numbers using a regular expression? Daren Thomas 2009-10-15T13:38:47Z 2009-10-15T13:38:47Z Thomas, this assumes English alphabet only. http://stackoverflow.com/questions/1564527/is-there-an-equivalent-to-cut-c-in-windows-cmd-exe-or-other-xp-standard-tools/1564557#1564557 Comment by Daren Thomas on Is there an equivalent to 'cut -c' in Windows cmd.exe (or other XP-standard tools)? Daren Thomas 2009-10-14T20:39:57Z 2009-10-14T20:39:57Z @Johannes: A language can be both useful (to get things done) and ghastly at the same time. These are orthogonal concepts. As to fun... there are a lot of really weird people out there (about one in twenty). http://stackoverflow.com/questions/1565483/creating-a-byte-from-a-listbyte Comment by Daren Thomas on Creating a byte[] from a List<Byte> Daren Thomas 2009-10-14T12:37:23Z 2009-10-14T12:37:23Z +1 Because sometimes you have done your homework (profiling) and really need to do this optimization. Question is generally relevant, even not necessarily in OPs case. http://stackoverflow.com/questions/1564953/c-looping-without-using-looping-statements-or-recursion/1565133#1565133 Comment by Daren Thomas on C: Looping without using looping statements or recursion Daren Thomas 2009-10-14T09:35:07Z 2009-10-14T09:35:07Z please add a comment &quot;/* magic happens here... */&quot; somewhere in the code. http://stackoverflow.com/questions/1564953/c-looping-without-using-looping-statements-or-recursion/1565099#1565099 Comment by Daren Thomas on C: Looping without using looping statements or recursion Daren Thomas 2009-10-14T09:34:20Z 2009-10-14T09:34:20Z wow. that blew my mind. sneaky: use somebody else's loop... http://stackoverflow.com/questions/1565095/python-expression-for-this-maxvalue-maxfirstarray-that-is-not-in-secondarra/1565105#1565105 Comment by Daren Thomas on python expression for this: max_value = max(firstArray) that is not in secondArray Daren Thomas 2009-10-14T09:07:01Z 2009-10-14T09:07:01Z set() has to be one of my favorite types in python! Perl taught us to think in dictionaries, Python to think in sets. http://stackoverflow.com/questions/1564527/is-there-an-equivalent-to-cut-c-in-windows-cmd-exe-or-other-xp-standard-tools/1564557#1564557 Comment by Daren Thomas on Is there an equivalent to 'cut -c' in Windows cmd.exe (or other XP-standard tools)? Daren Thomas 2009-10-14T08:32:49Z 2009-10-14T08:32:49Z yup. I would avoid cmd.exe wherever possible (I was tempted to see if I could post some source, but then... it's just plain ghastly!) http://stackoverflow.com/questions/1561049/how-to-create-a-proper-database-layer/1561093#1561093 Comment by Daren Thomas on How to create a proper database layer? Daren Thomas 2009-10-13T15:58:33Z 2009-10-13T15:58:33Z Uh, Joh W, I think Meeh is trying to tell you, that he would <i>love</i> to upvote you, but that would spoil the special number 1337.