User steamer25 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T12:55:21Z http://stackoverflow.com/feeds/user/93345 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1599725/which-mobile-programming-environment-do-you-recommend-for-a-startup-to-target/1627071#1627071 1 Answer by steamer25 for Which mobile programming environment do you recommend for a startup to target? steamer25 2009-10-26T20:11:12Z 2009-10-26T20:11:12Z <p>Depending on your timeline, you might also consider Flash as a cross-platform option. Here's a list of heavy-hitter companies working to make mobile Flash happen in the near future (includes Google, RIM, Nokia, Sony Ericcson, Palm, Motorola, Samsung, etc.):<br /> <a href="http://www.openscreenproject.org/partners/current%5Fpartners.html" rel="nofollow">http://www.openscreenproject.org/partners/current%5Fpartners.html</a></p> <p>...a video of some of their CEOs...<br /> <a href="http://www.openscreenproject.org/about/" rel="nofollow">http://www.openscreenproject.org/about/</a></p> <p>...and how to apply for some of the $10MM that Adobe's seeding into the market: <a href="http://www.openscreenproject.org/developers/get%5Fstarted.html" rel="nofollow">http://www.openscreenproject.org/developers/get%5Fstarted.html</a></p> http://stackoverflow.com/questions/1560523/onlogn-algorithm-find-three-evenly-spaced-ones-within-binary-string/1575367#1575367 0 Answer by steamer25 for O(nlogn) Algorithm - Find three evenly spaced ones within binary string steamer25 2009-10-15T22:02:24Z 2009-10-16T22:20:41Z <p>While scanning 1s, add their positions to a List. When adding the second and successive 1s, compare them to each position in the list so far. Spacing equals currentOne (center) - previousOne (left). The right-side bit is currentOne + spacing. If it's 1, the end.</p> <p>The list of ones grows inversely with the space between them. Simply stated, if you've got a lot of 0s between the 1s (as in a worst case), your list of known 1s will grow quite slowly.</p> <pre><code>using System; using System.Collections.Generic; namespace spacedOnes { class Program { static int[] _bits = new int[8] {128, 64, 32, 16, 8, 4, 2, 1}; static void Main(string[] args) { var bytes = new byte[4]; var r = new Random(); r.NextBytes(bytes); foreach (var b in bytes) { Console.Write(getByteString(b)); } Console.WriteLine(); var bitCount = bytes.Length * 8; var done = false; var onePositions = new List&lt;int&gt;(); for (var i = 0; i &lt; bitCount; i++) { if (isOne(bytes, i)) { if (onePositions.Count &gt; 0) { foreach (var knownOne in onePositions) { var spacing = i - knownOne; var k = i + spacing; if (k &lt; bitCount &amp;&amp; isOne(bytes, k)) { Console.WriteLine("^".PadLeft(knownOne + 1) + "^".PadLeft(spacing) + "^".PadLeft(spacing)); done = true; break; } } } if (done) { break; } onePositions.Add(i); } } Console.ReadKey(); } static String getByteString(byte b) { var s = new char[8]; for (var i=0; i&lt;s.Length; i++) { s[i] = ((b &amp; _bits[i]) &gt; 0 ? '1' : '0'); } return new String(s); } static bool isOne(byte[] bytes, int i) { var byteIndex = i / 8; var bitIndex = i % 8; return (bytes[byteIndex] &amp; _bits[bitIndex]) &gt; 0; } } } </code></pre> http://stackoverflow.com/questions/1578334/can-a-flash-application-read-the-host-pages-dom/1578349#1578349 2 Answer by steamer25 for Can a Flash Application read the host page's DOM? steamer25 2009-10-16T14:19:47Z 2009-10-16T14:19:47Z <p>At the least, you could use the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/external/ExternalInterface.html" rel="nofollow">ExternalInterface</a> to get stuff via JavaScript.</p> http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1546271#1546271 0 Answer by steamer25 for How to become a "faster" programmer? steamer25 2009-10-09T21:57:44Z 2009-10-09T21:57:44Z <p>Re: How to estimate and stick to it:</p> <p>When estimating, remember <a href="http://en.wikipedia.org/wiki/Hofstadter%27s%5Flaw" rel="nofollow">Hofstadter's law</a> as well as this quip: "Everything takes longer than it does". Take a reasonable guess as to how long something should take, then double or triple it before it comes out your mouth. There will be complications, setbacks, distractions, things you forget, etc. Better to under-promise and over-deliver than vice-versa.</p> <p>On sticking to estimations, do your best to complete your work efficiently. When problems come up, communicate the delays early. This gives everybody time to adjust their expectations. If your explanation is reasonable, you may be given more time or assistance or have distractions (like a noisy neighbor) removed from your path.</p> http://stackoverflow.com/questions/1525107/one-massive-css-or-lots-of-little-ones/1546129#1546129 1 Answer by steamer25 for One massive CSS - or lots of little ones? steamer25 2009-10-09T21:29:38Z 2009-10-09T21:29:38Z <p>Check out the <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">Yahoo performance rules</a>. They are backed by lots of empirical research.</p> <p>Rule #1 is minimize HTTP requests (don't split the file--you could for maintenance purposes but for performance you should concat them back together as part of a build process). #5 is place CSS references at the top (in &lt; head>). You can also use the <a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">YUI compressor</a> to reduce the file size of CSS by stripping whitespace etc.</p> <p>More stuff (CDNs, gzipping, cache-control, etc.) in <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">the rules</a>.</p> http://stackoverflow.com/questions/1522186/using-xpath-to-find-the-value-of-an-attribute-in-a-node-based-on-another-attribut/1522277#1522277 1 Answer by steamer25 for Using XPath to find the value of an attribute in a node based on another attribute in the same node? steamer25 2009-10-05T20:39:37Z 2009-10-05T20:39:37Z <pre><code>/makes/option[@make='FORD']/@year_start </code></pre> <p>...will get you all year_start attributes under options where the make is "FORD". Attributes are generally preferable to child elements if there's a 1-to-1 relationship--they don't require a verbose closing tag.</p> <p>You might also consider linq to XML.</p> http://stackoverflow.com/questions/1303408/thrift-erlang-string 2 Thrift/Erlang string steamer25 2009-08-20T00:49:09Z 2009-08-20T22:26:53Z <p>I'm trying to write a simple Thrift server in Erlang that takes a string and returns a string.</p> <p>Everything seems to be working up to the point of calling my function:</p> <pre><code>handle_function(Function, Args) when is_atom(Function), is_tuple(Args) -&gt; case apply(?MODULE, Function, tuple_to_list(Args)) of ok -&gt; ok; Reply -&gt; {reply, Reply} end. test([X]) -&gt; "You sent: " ++ X. </code></pre> <p>I'm getting a function_clause. The stack trace shows the following:</p> <blockquote> <p>{function_clause, [{server, test, [&lt;&lt;"w00t">>]},<br /> {server,handle_function, 2}, ...</p> </blockquote> <p>My handle_function is copied from the tutorial file so I won't be surprised if I need to tweak it. Any ideas?</p> http://stackoverflow.com/questions/1174792/how-can-i-update-a-specific-xelement/1174943#1174943 0 Answer by steamer25 for How can I update a specific XElement? steamer25 2009-07-23T22:53:19Z 2009-07-23T22:53:19Z <p>Using XPath (which will be familiar to most XML devs):</p> <pre><code>var xml = @"&lt;?xml version=""1.0"" encoding=""utf-8""?&gt; &lt;MyStore&gt; &lt;Category&gt; &lt;itemName&gt;Pen&lt;/itemName&gt; &lt;itemNumber&gt;12&lt;/itemNumber&gt; &lt;/Category&gt; &lt;Category&gt; &lt;itemName&gt;Paper&lt;/itemName&gt; &lt;itemNumber&gt;23&lt;/itemNumber&gt; &lt;/Category&gt; &lt;/MyStore&gt;"; var doc = new XmlDocument(); doc.LoadXml(xml); var nav = doc.CreateNavigator(); var iter = nav.Select("/MyStore/Category[itemName='Pen']/itemNumber"); iter.MoveNext(); iter.Current.SetValue("42"); </code></pre> http://stackoverflow.com/questions/1168660/javascript-regex-for-whitespace-or-nbsp/1168739#1168739 1 Answer by steamer25 for javascript regex for whitespace or &nbsp; steamer25 2009-07-22T22:56:16Z 2009-07-22T22:56:16Z <p>For this specific question, Yogi is correct--you don't need regex and you're probably better off without it.</p> <p>For future reference, if anyone else comes looking, regex has a special character for whitespace:</p> <pre><code>\s </code></pre> <p>In JS parlance (where regex literals may be enclosed in forward slashes) if you're looking for 20 spaces (not tabs, line feeds, etc.) you can do this:</p> <pre><code>/ {20}/ </code></pre> <p>Combined, looking for 20 whitespace characters (including tabs, etc.):</p> <pre><code>/\s{20}/ </code></pre> http://stackoverflow.com/questions/1127588/why-are-some-functions-extremely-long-ideas-needed-for-an-academic-research/1127736#1127736 1 Answer by steamer25 for Why are some functions extremely long? (ideas needed for an academic research!) steamer25 2009-07-14T20:15:31Z 2009-07-14T20:15:31Z <p>One point that I think has a bearing is that different languages and tools have different lexical scoping associated with functions.</p> <p>For example, Java allows you to suppress warnings with an annotation. It may be desirable to limit the scope of the annotation and so you keep the function short for that purpose. In another language, breaking that section out into it's own function might be completely arbitrary.</p> <p>Controversial: In JavaScript, I tend to only create functions for the purpose of reusing code. If a snippet is only executed in one place, I find it burdensome to jump around the file(s) following the spaghetti of function references. I think closures facilitate and therefore reinforce longer [parent] functions. Since JS is an interpreted language and the actual code gets sent over the wire, it's good to keep the length of the code small--creating matching declarations and references doesn't help (this could be considered a premature optimization). A function has to get pretty long in JS before I decide to chop it up for the express purpose of "keeping functions short".</p> <p>Again in JS, sometimes the entire 'class' is technically a function with many enclosed sub-functions but there are tools to help deal with it.</p> <p>On the other hand in JS, variables have scope for the length of the function and so that's a factor that may limit the length of a given function.</p> http://stackoverflow.com/questions/1121171/xslt-question-how-to-pair-field-tags-with-data-when-original-xml-has-them-in-se/1121257#1121257 1 Answer by steamer25 for XSLT question. How to pair field tags with data when original XML has them in separate sections? steamer25 2009-07-13T18:34:07Z 2009-07-13T18:50:57Z <p>This should get you started:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:fm="http://www.filemaker.com/fmpxmlresult"&gt; &lt;xsl:template match="/fm:FMPXMLRESULT"&gt; &lt;PRODUCTRECS&gt; &lt;xsl:apply-templates select="fm:RESULTSET/fm:ROW"/&gt; &lt;/PRODUCTRECS&gt; &lt;/xsl:template&gt; &lt;xsl:template match="fm:ROW"&gt; &lt;PRODUCT&gt; &lt;!-- Use this if the element containing the NAME="FileMaker Pro" attribute is the one you want to use for each row name. &lt;xsl:element name="{name(/fm:FMPXMLRESULT/*[@NAME='FileMaker Pro'])}"&gt;--&gt; &lt;xsl:for-each select="fm:COL/fm:DATA"&gt; &lt;xsl:variable name="currentPos" select="position()"/&gt; &lt;xsl:element name="{/fm:FMPXMLRESULT/fm:METADATA/fm:FIELD[position()=$currentPos]/@NAME}"&gt; &lt;xsl:value-of select="."/&gt; &lt;/xsl:element&gt; &lt;/xsl:for-each&gt; &lt;!--&lt;/xsl:element&gt;--&gt; &lt;/PRODUCT&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>Also, take a look at <a href="http://www.w3schools.com/Xsl/el%5Fnumber.asp" rel="nofollow">xsl:number</a> for the other part or possibly just the <a href="http://www.w3schools.com/xpath/xpath%5Ffunctions.asp#numeric" rel="nofollow">number() function</a>.</p> http://stackoverflow.com/questions/1106812/xslt-remove-duplicate-nodes-based-on-name-attribute/1106878#1106878 1 Answer by steamer25 for XSLT: Remove duplicate nodes based on name attribute steamer25 2009-07-09T23:01:04Z 2009-07-09T23:01:04Z <p>This copies the first distinct simpleType of any name but is a bit more explicit with the 'NameType' complexType:</p> <pre><code>&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt; &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-result-prefixes="core AcRec" xmlns:core="foo" xmlns:AcRec="bar"&gt; &lt;xsl:key name="simpleTypes" match="xs:simpleType" use="@name"/&gt; &lt;xsl:template match="/xs:schema"&gt; &lt;xsl:copy&gt; &lt;xsl:copy-of select="xs:complexType[@name='NameType'][1]"/&gt; &lt;xsl:apply-templates /&gt; &lt;xsl:copy-of select="//xs:simpleType[generate-id(.) = generate-id(key('simpleTypes', @name)[1])]" /&gt; &lt;/xsl:copy&gt; &lt;/xsl:template&gt; &lt;xsl:template match="*[name()!='xs:simpleType' and name()!='xs:schema' and @name!='NameType']"&gt; &lt;xsl:copy&gt; &lt;xsl:apply-templates select="*|@*"/&gt; &lt;/xsl:copy&gt; &lt;/xsl:template&gt; &lt;xsl:template match="@*"&gt; &lt;xsl:copy-of select="." /&gt; &lt;/xsl:template&gt; &lt;xsl:template match="*"/&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>Note that the default template is overridden so that you don't get the undesired children of 'NameType'.</p> http://stackoverflow.com/questions/1106684/what-does-this-regular-expression-mean/1106745#1106745 0 Answer by steamer25 for What does this regular expression mean? steamer25 2009-07-09T22:20:39Z 2009-07-09T22:20:39Z <p>[^ is a negated character class--match things that are NOT these characters.</p> <p>This matches the first:<br /> &lt;&lt;SWE.*?&gt;&gt;</p> <p>This matches one or more:<br /> (?:&lt;&lt;SWE.*?&gt;&gt;)+</p> <p>This matches everything between &lt;&lt; and the last &gt;&gt; (including more &gt;&gt;'s):<br /> &lt;&lt;SWE.*&gt;&gt;</p> http://stackoverflow.com/questions/1106237/xslt-specific-element-always-added-to-root/1106340#1106340 1 Answer by steamer25 for XSLT: Specific Element Always Added to root? steamer25 2009-07-09T20:43:59Z 2009-07-09T20:43:59Z <p>Something like this should work:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema"&gt; &lt;xsl:template match="/xs:schema"&gt; &lt;xsl:copy&gt; &lt;xsl:apply-templates/&gt; &lt;xsl:copy-of select="//xs:simpleType"/&gt; &lt;/xsl:copy&gt; &lt;/xsl:template&gt; &lt;xsl:template match="*[name()!='xs:simpleType' and name()!='xs:schema']"&gt; &lt;xsl:copy&gt; &lt;xsl:apply-templates select="*|@*"/&gt; &lt;/xsl:copy&gt; &lt;/xsl:template&gt; &lt;xsl:template match="@*"&gt; &lt;xsl:copy-of select="."/&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> http://stackoverflow.com/questions/1100737/how-to-design-a-program-to-perform-complex-financial-calculations-with-net/1101133#1101133 0 Answer by steamer25 for How to Design a Program to Perform Complex financial calculations with .NET steamer25 2009-07-08T23:42:59Z 2009-07-08T23:42:59Z <p>To add some specifics:</p> <ul> <li><p>Cell values become variables or entries in a database. E.g., Instead of the formula for B1 being = A1 + 2 (where A1 contains the number of widgets for a given policy), you have:</p> <p><code>var widgets = (from policy in db.Policies select new {policy.widgets}).First().widgets;<br /> var moreWidgets = widgets + 2;</code></p></li> <li><p>Functions and Macros get ported--E.g., Round(B1, 0) becomes Math.Round(moreWidgets, 0, MidpointRounding.AwayFromZero)</p></li> <li>Related data and functionality gets grouped into classes and object instances.</li> <li>Sheets become database tables for storage and tab pages/dialog boxes/web pages, etc. for UI.</li> <li>You might make forms for data that's entered/reviewed one at a time:</li> </ul> <blockquote> <p>First Name: [<strong>____________</strong>]<br /> Last Name: [<strong>____________</strong>]<br /> SSN: [<strong>____________</strong>]</p> </blockquote> <p>The benefits to doing all of this (assuming it's done well) is:</p> <ul> <li>Improved organization so that functionality can be found more easily for re-use/augmentation.</li> <li>Improved performance</li> <li>Shared, real-time access to the data including aggregating data that's currently spread across multiple files.</li> <li>A whole world of new functionality--maybe you want to add speech synthesis or what-have-you.</li> </ul> http://stackoverflow.com/questions/1100842/how-do-i-get-past-vista-security/1100859#1100859 0 Answer by steamer25 for How do I get past vista security steamer25 2009-07-08T22:24:40Z 2009-07-08T22:24:40Z <p>I'm not able to test this since I've only got XP with me at the moment...</p> <p>Try creating a batch file with the <a href="http://technet.microsoft.com/en-us/library/bb490994.aspx" rel="nofollow">runas</a> command in it.</p> <p>Note that the password will still need to be entered but it may save a couple steps.</p> http://stackoverflow.com/questions/1100460/how-does-global-javascript-object-save-state/1100476#1100476 1 Answer by steamer25 for How does global Javascript object save state? steamer25 2009-07-08T20:49:38Z 2009-07-08T20:49:38Z <p>This line saves the state:</p> <pre><code>States[col].IsOpen = !States[col].IsOpen; </code></pre> <p>Yes, it is global and therefore persisted after execution of the function.</p> http://stackoverflow.com/questions/1100166/why-repeaters-in-asp-net/1100234#1100234 3 Answer by steamer25 for Why Repeaters in ASP.NET? steamer25 2009-07-08T19:59:24Z 2009-07-08T19:59:24Z <p>I think the primary aim of repeaters is to keep procedural code out of the view/markup. The idea being that someone who is a graphic/aesthetic designer can come in and change the markup without having to know how to 'code'. Probably of greater concern to you is that lots of people in the .NET world are familiar with the repeater which means it will be easier for them to maintain.</p> http://stackoverflow.com/questions/1034242/looking-for-a-simple-scripting-language-that-can-integrate-with-net-easily/1100192#1100192 0 Answer by steamer25 for Looking for a simple scripting language that can integrate with .net easily. steamer25 2009-07-08T19:49:47Z 2009-07-08T19:49:47Z <p>Don't forget JScript.NET .</p> http://stackoverflow.com/questions/1099677/how-do-i-filter-an-xml-via-an-xslt-with-xml-params/1100022#1100022 0 Answer by steamer25 for How do I Filter an XML via an XSLT with xml params steamer25 2009-07-08T19:13:26Z 2009-07-08T19:21:07Z <p>This works in Saxon 6.5.5...</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1"&gt; &lt;xsl:param name="nodeset"&gt; &lt;BookIDs&gt;&lt;BookID&gt;2&lt;/BookID&gt;&lt;BookID&gt;3&lt;/BookID&gt;&lt;/BookIDs&gt; &lt;/xsl:param&gt; &lt;xsl:template match="/Books"&gt; &lt;Books&gt; &lt;xsl:variable name="Copy"&gt; &lt;wrap&gt; &lt;xsl:copy-of select="Book"/&gt; &lt;/wrap&gt; &lt;/xsl:variable&gt; &lt;xsl:for-each select="$nodeset/BookIDs/BookID"&gt; &lt;xsl:copy-of select="$Copy/wrap/Book[BookId=current()]"/&gt; &lt;/xsl:for-each&gt; &lt;/Books&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>A pure XSLT solution will be pretty brittle though. Sub-query predicates didn't work, neither did a key. It is dependent upon the param being recognized as a node-set--which I was unable to achieve with a dynamic value (as opposed to the default in my example), even with <a href="http://www.exslt.org/exsl/functions/node-set/index.html" rel="nofollow">exsl:node-set</a>. This is also wasteful in that it copies all the Book elements from the source document.</p> <p>There may be a better solution in XSLT 2.0. Alternately, if you are initiating your transform with some other language/tool, there may be better approaches available there. Another possibility could include the use of <a href="http://www.exslt.org/exsl/elements/document/" rel="nofollow">exsl:document</a> to load your source document or params.</p> http://stackoverflow.com/questions/1098928/writing-a-query-to-get-all-records-in-a-group-based-on-an-item-in-the-group/1098992#1098992 1 Answer by steamer25 for Writing a query to get all records in a group based on an item in the group steamer25 2009-07-08T15:57:28Z 2009-07-08T15:57:28Z <p>You could use a sub-query.</p> <pre><code>SELECT DISTINCT i.ItemName FROM GroupItem gi JOIN Item i ON gi.ItemKey = i.ItemKey WHERE gi.GroupKey IN ( SELECT DISTINCT GroupKey FROM GroupItem WHERE ItemKey = @Param ) </code></pre> http://stackoverflow.com/questions/1092942/how-can-i-not-distribute-my-secret-key-facebook-api-while-using-python/1093178#1093178 1 Answer by steamer25 for how can I not distribute my secret key (facebook api) while using python? steamer25 2009-07-07T15:53:07Z 2009-07-08T15:48:53Z <p>EDIT: cmb's session keys approach is better than the proxy described below. Config files and GAE are still applicable. /EDIT</p> <p>You could take a couple approaches. If your code is open-source and will be used by other developers, you could allow the secret key to be set in a configuration file. When you distribute the code, place a dummy key in the file and create some instructions on how to obtain and set the key in the config file.</p> <p>Alternately, if you want to do the server approach, you'll basically be creating a proxy* that will take requests, add the secret key and then forward them on to Facebook. A good, free (unless/until your app gets a lot of users) Python-based service is <a href="http://code.google.com/appengine/" rel="nofollow">Google App Engine</a>. They also have a bunch of tutorial videos to get you started. </p> <p>* E.g., when myservice.appspot.com/getUserInfo?uid=12345 is called, your service will execute something like the following.</p> <pre><code>userinfo = fb.users.getInfo(self.request.get('uid')...) </code></pre> <p>Ideally, you'd want to abstract it enough that you don't have to explicitly implement every FB API call you make.</p> <p>One last thing to keep in mind is that many FB API calls do not require the secret key to be passed.</p> http://stackoverflow.com/questions/1095029/break-away-from-subclipses-old-svn-client/1095079#1095079 1 Answer by steamer25 for Break away from Subclipse's OLD svn client steamer25 2009-07-07T21:51:18Z 2009-07-07T21:51:18Z <p>Install the latest version using this update site: <a href="http://subclipse.tigris.org/update_1.6.x" rel="nofollow">http://subclipse.tigris.org/update_1.6.x</a> . It works fine for me together with Tortoise.</p> http://stackoverflow.com/questions/1095001/xsd-wellformedness/1095033#1095033 1 Answer by steamer25 for xsd wellformedness steamer25 2009-07-07T21:40:59Z 2009-07-07T21:40:59Z <p>I see the same thing as validome.org with Firefox, Chrome and WFetch--that last of which blindly reports the text obtained from the socket similar to curl or wget. Looks like the server responding to <a href="http://45143.com/finance-feed/financial2.xsd" rel="nofollow">http://45143.com/finance-feed/financial2.xsd</a> is actually sending an xsd where line 171 has xs:gr instead of xs:group.</p> http://stackoverflow.com/questions/1093884/python-error/1093931#1093931 0 Answer by steamer25 for Python Error steamer25 2009-07-07T18:19:17Z 2009-07-07T18:19:17Z <p>It looks like this line should be:</p> <pre><code>f = open("%s/%s" % (config['vsftp']['user_dir'], vusername), 'wr') </code></pre> <p>(I moved the closing parenthesis over.)</p> http://stackoverflow.com/questions/1093397/xsl-how-to-tell-if-a-variable-has-been-declared/1093474#1093474 0 Answer by steamer25 for xsl: how to tell if a variable has been declared steamer25 2009-07-07T16:47:24Z 2009-07-07T16:47:24Z <p>Assuming your stylesheet is referencing a second sheet where you are not certain of the contents, try xsl:import (as opposed to xsl:include).</p> http://stackoverflow.com/questions/1009407/dealing-with-phobia-of-ruining-your-own-code/1093298#1093298 0 Answer by steamer25 for Dealing with "phobia" of ruining (your own) code? steamer25 2009-07-07T16:13:15Z 2009-07-07T16:13:15Z <p>Have a <a href="http://thedailywtf.com" rel="nofollow">good laugh</a> at <a href="http://www.google.com/search?hl=en&amp;rlz=1C1GGLS%5FenUS291US304&amp;q=software+horror+stories&amp;aq=f&amp;oq=&amp;aqi=" rel="nofollow">someone else's</a> bad code. It can be humbling and sobering but for the most part it teaches you what not to do (anti-patterns/you don't have to repeat history if you know what to look for) and improves your self esteem (at least my code's not THAT bad).</p> <p>Also, remember that you miss 100% of the shots you don't take. If doctors never operated for fear of the knife slipping, the patients would all die anyway. Take reasonable precautions (you've already got SCM) and let 'er rip--you only live once.</p> http://stackoverflow.com/questions/1087665/ie7-and-xmlfiles-on-file-system/1087907#1087907 1 Answer by steamer25 for IE7 and XMLfiles on file system steamer25 2009-07-06T16:23:46Z 2009-07-06T16:23:46Z <p>You can install a web server (IIS, Apache, etc.) and configure it to serve files from the relevant directory. E.g., <a href="http://localhost/myfile.xml" rel="nofollow">http://localhost/myfile.xml</a> .</p> <p>Alternately, you can use the responseText property and <a href="http://www.w3schools.com/Xml/xml%5Fparser.asp" rel="nofollow">parse it manually</a>.</p> http://stackoverflow.com/questions/1074767/xsl-copy-elements-but-remove-unused-namespaces/1075310#1075310 2 Answer by steamer25 for XSL - copy elements but remove unused namespace(s) steamer25 2009-07-02T16:17:12Z 2009-07-02T16:29:14Z <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:x="http://tempuri.com"&gt; &lt;xsl:template match="/"&gt; &lt;xsl:apply-templates select="/a/b"/&gt; &lt;/xsl:template&gt; &lt;xsl:template match="*"&gt; &lt;xsl:element name="{local-name(.)}"&gt; &lt;xsl:apply-templates/&gt; &lt;/xsl:element&gt; &lt;/xsl:template&gt; &lt;xsl:template match="@*"&gt; &lt;xsl:copy/&gt; &lt;/xsl:template&gt; &lt;!-- This empty template is not needed. Neither is the xmlns declaration above: &lt;xsl:template match="@x:*"/&gt; --&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>I found an explanation <a href="http://www.stylusstudio.com/xsllist/200308/post60880.html" rel="nofollow">here</a>.</p> <blockquote> <p>Michael Kay wrote:<br /> exclude-result-prefixes only affects the namespaces copied from the stylesheet by a literal result element, it doesn't affect copying of namespaces from source documents.</p> </blockquote> http://stackoverflow.com/questions/1064403/when-to-rewrite-a-code-base-from-scratch/1064573#1064573 2 Answer by steamer25 for When to rewrite a code base from scratch steamer25 2009-06-30T16:05:25Z 2009-06-30T16:05:25Z <p>I disagree with that article somewhat. For the most part Joel is correct but there are counter-examples that indicate sometimes (even if rarely) a rewrite is a good idea. E.g.,</p> <ul> <li>Windows NT (Broke away from the old DOS code-base. Upon this foundation was built Win2k, WinXP and the upcoming Win7. Yes, Vista too. The last version of Windows on the old base was the infamous WinME)</li> <li>Mac OS X (Rebuilt their flagship product on FreeBSD)</li> <li>Many cases where a competitor displaces a de facto standard. (e.g., Excel vs. Lotus 123)</li> </ul> <p>I believe Joel's argument is mainly based on fairly well-written code in the existing version that could be improved with hindsight. By all means, if the code you inherited is really that bad, push for a rewrite--there's some scary stuff out there. If it's at all tolerable and works reasonably well, phase in the new stuff at a slower pace.</p> http://stackoverflow.com/questions/1862410/how-do-i-actually-get-somewhere-in-gui-programming Comment by steamer25 on How do I actually get somewhere in GUI programming? steamer25 2009-12-10T22:18:41Z 2009-12-10T22:18:41Z You might also consider HTML + CSS + JQuery (on Django). There's plenty to trudge through if you want but the basics should be no problem for someone with your background. As you progress, you get quite a bit of flexibility and control. Also, the results are cross-platform and don't requiring any special installation (runtimes, etc.). http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query Comment by steamer25 on Can someone copyright a SQL query? steamer25 2009-12-04T22:36:43Z 2009-12-04T22:36:43Z @Thanatos Good point. I hadn't considered that the OP is an employee of the school district and as such is essentially commercially competing with the contractor. In this case non-public, non-commercial fair use as I had described in the scenario of someone marking their own copy of a book is ruled out. On the other hand, the particular change is probably not significant enough to constitute 'new work' and thus not a derivative work either. http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query Comment by steamer25 on Can someone copyright a SQL query? steamer25 2009-12-03T19:41:53Z 2009-12-03T19:41:53Z IANAL: You already have permission to <i>use</i> the code. If you change '2009' to '2010', that part of the code is no longer under his authorship. I believe the consultant is trying to protect against is you selling (or giving) the code to another party. Would you expect to get in trouble for changing the words in a copy of a book that you own? Even if you were somehow prohibited from making the change, I wouldn't expect your liability to be greater than what you've been paying him (i.e., &quot;fair&quot; market value). http://stackoverflow.com/questions/943783/scite-regex-match-expression-between-x-and-y-times-eg-wx-y/943814#943814 Comment by steamer25 on SciTE Regex, Match expression between x and y times eg \w*{x,y} steamer25 2009-11-13T20:04:43Z 2009-11-13T20:04:43Z Actually the question mark doesn't seem to be supported either: <a href="http://www.nabble.com/Regex-search-replace:-%22-%22-does-not-work-td11981373.html" rel="nofollow">nabble.com/Regex-search-replace:-%22-%22-does-not&hellip;</a> http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collection Comment by steamer25 on What's the best name for a non-mutating "add" method on an immutable collection? steamer25 2009-11-03T23:55:43Z 2009-11-03T23:55:43Z At the risk of a little verbosity, perhaps something like: RebuildWith(), RecreateWith() or RemakeWith() http://stackoverflow.com/questions/1586166/career-killer-nhibernate-oop-design-patterns-domain-driven-design-test-driv Comment by steamer25 on Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVC steamer25 2009-10-22T20:37:15Z 2009-10-22T20:37:15Z loC = &quot;lines of code&quot; or ??? http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84609#84609 Comment by steamer25 on What's your favorite "programmer" cartoon? steamer25 2009-10-19T16:04:30Z 2009-10-19T16:04:30Z I like that even the good code has a couple. http://stackoverflow.com/questions/1560523/onlogn-algorithm-find-three-evenly-spaced-ones-within-binary-string/1567324#1567324 Comment by steamer25 on O(nlogn) Algorithm - Find three evenly spaced ones within binary string steamer25 2009-10-15T20:14:06Z 2009-10-15T20:14:06Z What if you update the index in the outer loop with that of the first 1 found in the inner loop i.e., if (ones[m] == ONE) {n = m}? Does that help the big O? http://stackoverflow.com/questions/1568091/why-use-getters-and-setters/1568112#1568112 Comment by steamer25 on Why use getters and setters? steamer25 2009-10-14T19:11:02Z 2009-10-14T19:11:02Z Re: C#. If you add functionality to a get/set wouldn't that require recompilation anyway? http://stackoverflow.com/questions/1546485/where-should-i-store-photos-file-system-or-the-database/1546487#1546487 Comment by steamer25 on Where should I store photos? File system or the database? steamer25 2009-10-13T21:26:30Z 2009-10-13T21:26:30Z A file system IS a database--one that happens to be designed from the outset to store files/documents as opposed to the small, repeated fields relational stores were originally intended for. You CAN make a workable solutions with an RDBMS but you'll find a greater variety of natural and intuitive tools for dealing with files when they're in a file system. http://stackoverflow.com/questions/1554180/why-is-the-if-statement-considered-evil/1554320#1554320 Comment by steamer25 on Why is the 'if' statement considered evil? steamer25 2009-10-13T20:38:47Z 2009-10-13T20:38:47Z Also, could be misheard as one of the words The Knights of Ni cannot hear. Then again, they wouldn't get very far in life not saying the word 'if'. http://stackoverflow.com/questions/1447653/multiple-programmers-in-software-development-how-do-we-work-on-the-same-code-and Comment by steamer25 on Multiple Programmers in Software Development. How do we work on the same code and it always be updated?? steamer25 2009-09-23T19:42:24Z 2009-09-23T19:42:24Z SVN is probably the most common/well-tooled open source SCM for existing projects. However, there's a growing contingent using the new-fangled and dandified 'Git' which is distributed, allowing operations to be performed locally/quickly/off-line. Git was written by Linus Torvalds to help manage very large open source projects like Linux. There is a free online book to help you get started: <a href="http://progit.org/book/" rel="nofollow">progit.org/book</a> http://stackoverflow.com/questions/1456304/how-to-prevent-juniordevelopers-making-the-wrong-decisions-bad-code/1456423#1456423 Comment by steamer25 on How to prevent (junior)developers making the wrong decisions/bad code? steamer25 2009-09-21T22:15:24Z 2009-09-21T22:15:24Z I think reviews can be more cursory for senior staff. However, it's good to keep the reviews up as the code-base matures... E.g., &quot;Did you know that Bill added a function to do this part three weeks ago? You might see if you can re-use it.&quot; http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1411429#1411429 Comment by steamer25 on How to become a "faster" programmer? steamer25 2009-09-11T22:07:58Z 2009-09-11T22:07:58Z More pro maneuvers include: --Learn to search and replace using regular expressions --Use spreadsheets and/or languages with array/list and object/dict literals to massage temp data/strings. E.g., 1) copy HTML table from web page 2) paste into Excel 3) move name and value columns together 4) copy that into text editor 5) replace tab (\t) with colon, space :_ 6) replace newlines with comma, space ,_ 7) add open and close curlys to the start and end of the line 8) process NV pairs as a JSON object. http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1411429#1411429 Comment by steamer25 on How to become a "faster" programmer? steamer25 2009-09-11T22:01:45Z 2009-09-11T22:01:45Z Along same lines: learn general 'hot' keys. E.g., in many Windows programs... Copy: Ctrl + c Cut: Ctrl + x (the 'x' looks like an open pair of scissors) Paste: Ctrl + v (right next to 'c' and 'x' above) Go to start of line: Home Go to End of line: End Move cursor by word (not character): [Shift] + Ctrl + left or right Go to top of doc: Ctrl + Home Go to end of doc: Ctrl + End etc.