User steamer25 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T12:55:21Zhttp://stackoverflow.com/feeds/user/93345http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1599725/which-mobile-programming-environment-do-you-recommend-for-a-startup-to-target/1627071#16270711Answer by steamer25 for Which mobile programming environment do you recommend for a startup to target?steamer252009-10-26T20:11:12Z2009-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#15753670Answer by steamer25 for O(nlogn) Algorithm - Find three evenly spaced ones within binary stringsteamer252009-10-15T22:02:24Z2009-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<int>();
for (var i = 0; i < bitCount; i++)
{
if (isOne(bytes, i)) {
if (onePositions.Count > 0) {
foreach (var knownOne in onePositions) {
var spacing = i - knownOne;
var k = i + spacing;
if (k < bitCount && 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<s.Length; i++) {
s[i] = ((b & _bits[i]) > 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] & _bits[bitIndex]) > 0;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1578334/can-a-flash-application-read-the-host-pages-dom/1578349#15783492Answer by steamer25 for Can a Flash Application read the host page's DOM?steamer252009-10-16T14:19:47Z2009-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#15462710Answer by steamer25 for How to become a "faster" programmer?steamer252009-10-09T21:57:44Z2009-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#15461291Answer by steamer25 for One massive CSS - or lots of little ones?steamer252009-10-09T21:29:38Z2009-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 < 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#15222771Answer by steamer25 for Using XPath to find the value of an attribute in a node based on another attribute in the same node?steamer252009-10-05T20:39:37Z2009-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-string2Thrift/Erlang stringsteamer252009-08-20T00:49:09Z2009-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) ->
case apply(?MODULE, Function, tuple_to_list(Args)) of
ok -> ok;
Reply -> {reply, Reply}
end.
test([X]) ->
"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,
[<<"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#11749430Answer by steamer25 for How can I update a specific XElement?steamer252009-07-23T22:53:19Z2009-07-23T22:53:19Z<p>Using XPath (which will be familiar to most XML devs):</p>
<pre><code>var xml = @"<?xml version=""1.0"" encoding=""utf-8""?>
<MyStore>
<Category>
<itemName>Pen</itemName>
<itemNumber>12</itemNumber>
</Category>
<Category>
<itemName>Paper</itemName>
<itemNumber>23</itemNumber>
</Category>
</MyStore>";
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#11687391Answer by steamer25 for javascript regex for whitespace or steamer252009-07-22T22:56:16Z2009-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#11277361Answer by steamer25 for Why are some functions extremely long? (ideas needed for an academic research!)steamer252009-07-14T20:15:31Z2009-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#11212571Answer by steamer25 for XSLT question. How to pair field tags with data when original XML has them in separate sections?steamer252009-07-13T18:34:07Z2009-07-13T18:50:57Z<p>This should get you started:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:fm="http://www.filemaker.com/fmpxmlresult">
<xsl:template match="/fm:FMPXMLRESULT">
<PRODUCTRECS>
<xsl:apply-templates select="fm:RESULTSET/fm:ROW"/>
</PRODUCTRECS>
</xsl:template>
<xsl:template match="fm:ROW">
<PRODUCT>
<!--
Use this if the element containing the NAME="FileMaker Pro" attribute is the one you want to use
for each row name.
<xsl:element name="{name(/fm:FMPXMLRESULT/*[@NAME='FileMaker Pro'])}">-->
<xsl:for-each select="fm:COL/fm:DATA">
<xsl:variable name="currentPos" select="position()"/>
<xsl:element name="{/fm:FMPXMLRESULT/fm:METADATA/fm:FIELD[position()=$currentPos]/@NAME}">
<xsl:value-of select="."/>
</xsl:element>
</xsl:for-each>
<!--</xsl:element>-->
</PRODUCT>
</xsl:template>
</xsl:stylesheet>
</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#11068781Answer by steamer25 for XSLT: Remove duplicate nodes based on name attributesteamer252009-07-09T23:01:04Z2009-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><?xml version="1.0" encoding="ISO-8859-1"?>
<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">
<xsl:key name="simpleTypes" match="xs:simpleType" use="@name"/>
<xsl:template match="/xs:schema">
<xsl:copy>
<xsl:copy-of select="xs:complexType[@name='NameType'][1]"/>
<xsl:apply-templates />
<xsl:copy-of select="//xs:simpleType[generate-id(.) = generate-id(key('simpleTypes', @name)[1])]" />
</xsl:copy>
</xsl:template>
<xsl:template match="*[name()!='xs:simpleType' and name()!='xs:schema' and @name!='NameType']">
<xsl:copy>
<xsl:apply-templates select="*|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="@*">
<xsl:copy-of select="." />
</xsl:template>
<xsl:template match="*"/>
</xsl:stylesheet>
</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#11067450Answer by steamer25 for What does this regular expression mean?steamer252009-07-09T22:20:39Z2009-07-09T22:20:39Z<p>[^ is a negated character class--match things that are NOT these characters.</p>
<p>This matches the first:<br />
<<SWE.*?>></p>
<p>This matches one or more:<br />
(?:<<SWE.*?>>)+</p>
<p>This matches everything between << and the last >> (including more >>'s):<br />
<<SWE.*>></p>
http://stackoverflow.com/questions/1106237/xslt-specific-element-always-added-to-root/1106340#11063401Answer by steamer25 for XSLT: Specific Element Always Added to root?steamer252009-07-09T20:43:59Z2009-07-09T20:43:59Z<p>Something like this should work:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:template match="/xs:schema">
<xsl:copy>
<xsl:apply-templates/>
<xsl:copy-of select="//xs:simpleType"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*[name()!='xs:simpleType' and name()!='xs:schema']">
<xsl:copy>
<xsl:apply-templates select="*|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="@*">
<xsl:copy-of select="."/>
</xsl:template>
</xsl:stylesheet>
</code></pre>
http://stackoverflow.com/questions/1100737/how-to-design-a-program-to-perform-complex-financial-calculations-with-net/1101133#11011330Answer by steamer25 for How to Design a Program to Perform Complex financial calculations with .NETsteamer252009-07-08T23:42:59Z2009-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#11008590Answer by steamer25 for How do I get past vista security steamer252009-07-08T22:24:40Z2009-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#11004761Answer by steamer25 for How does global Javascript object save state?steamer252009-07-08T20:49:38Z2009-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#11002343Answer by steamer25 for Why Repeaters in ASP.NET?steamer252009-07-08T19:59:24Z2009-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#11001920Answer by steamer25 for Looking for a simple scripting language that can integrate with .net easily.steamer252009-07-08T19:49:47Z2009-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#11000220Answer by steamer25 for How do I Filter an XML via an XSLT with xml params steamer252009-07-08T19:13:26Z2009-07-08T19:21:07Z<p>This works in Saxon 6.5.5...</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1">
<xsl:param name="nodeset">
<BookIDs><BookID>2</BookID><BookID>3</BookID></BookIDs>
</xsl:param>
<xsl:template match="/Books">
<Books>
<xsl:variable name="Copy">
<wrap>
<xsl:copy-of select="Book"/>
</wrap>
</xsl:variable>
<xsl:for-each select="$nodeset/BookIDs/BookID">
<xsl:copy-of select="$Copy/wrap/Book[BookId=current()]"/>
</xsl:for-each>
</Books>
</xsl:template>
</xsl:stylesheet>
</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#10989921Answer by steamer25 for Writing a query to get all records in a group based on an item in the groupsteamer252009-07-08T15:57:28Z2009-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#10931781Answer by steamer25 for how can I not distribute my secret key (facebook api) while using python?steamer252009-07-07T15:53:07Z2009-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#10950791Answer by steamer25 for Break away from Subclipse's OLD svn clientsteamer252009-07-07T21:51:18Z2009-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#10950331Answer by steamer25 for xsd wellformednesssteamer252009-07-07T21:40:59Z2009-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#10939310Answer by steamer25 for Python Errorsteamer252009-07-07T18:19:17Z2009-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#10934740Answer by steamer25 for xsl: how to tell if a variable has been declaredsteamer252009-07-07T16:47:24Z2009-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#10932980Answer by steamer25 for Dealing with "phobia" of ruining (your own) code?steamer252009-07-07T16:13:15Z2009-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&rlz=1C1GGLS%5FenUS291US304&q=software+horror+stories&aq=f&oq=&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#10879071Answer by steamer25 for IE7 and XMLfiles on file systemsteamer252009-07-06T16:23:46Z2009-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#10753102Answer by steamer25 for XSL - copy elements but remove unused namespace(s)steamer252009-07-02T16:17:12Z2009-07-02T16:29:14Z<pre><code><?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:x="http://tempuri.com">
<xsl:template match="/">
<xsl:apply-templates select="/a/b"/>
</xsl:template>
<xsl:template match="*">
<xsl:element name="{local-name(.)}">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="@*">
<xsl:copy/>
</xsl:template>
<!-- This empty template is not needed.
Neither is the xmlns declaration above:
<xsl:template match="@x:*"/> -->
</xsl:stylesheet>
</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#10645732Answer by steamer25 for When to rewrite a code base from scratchsteamer252009-06-30T16:05:25Z2009-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-programmingComment by steamer25 on How do I actually get somewhere in GUI programming?steamer252009-12-10T22:18:41Z2009-12-10T22:18:41ZYou 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-queryComment by steamer25 on Can someone copyright a SQL query?steamer252009-12-04T22:36:43Z2009-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-queryComment by steamer25 on Can someone copyright a SQL query?steamer252009-12-03T19:41:53Z2009-12-03T19:41:53ZIANAL: 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., "fair" market value).http://stackoverflow.com/questions/943783/scite-regex-match-expression-between-x-and-y-times-eg-wx-y/943814#943814Comment by steamer25 on SciTE Regex, Match expression between x and y times eg \w*{x,y}steamer252009-11-13T20:04:43Z2009-11-13T20:04:43ZActually 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…</a> http://stackoverflow.com/questions/521893/whats-the-best-name-for-a-non-mutating-add-method-on-an-immutable-collectionComment by steamer25 on What's the best name for a non-mutating "add" method on an immutable collection?steamer252009-11-03T23:55:43Z2009-11-03T23:55:43ZAt 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-drivComment by steamer25 on Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVCsteamer252009-10-22T20:37:15Z2009-10-22T20:37:15ZloC = "lines of code" or ???http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84609#84609Comment by steamer25 on What's your favorite "programmer" cartoon?steamer252009-10-19T16:04:30Z2009-10-19T16:04:30ZI 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#1567324Comment by steamer25 on O(nlogn) Algorithm - Find three evenly spaced ones within binary stringsteamer252009-10-15T20:14:06Z2009-10-15T20:14:06ZWhat 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#1568112Comment by steamer25 on Why use getters and setters?steamer252009-10-14T19:11:02Z2009-10-14T19:11:02ZRe: 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#1546487Comment by steamer25 on Where should I store photos? File system or the database?steamer252009-10-13T21:26:30Z2009-10-13T21:26:30ZA 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#1554320Comment by steamer25 on Why is the 'if' statement considered evil?steamer252009-10-13T20:38:47Z2009-10-13T20:38:47ZAlso, 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-andComment by steamer25 on Multiple Programmers in Software Development. How do we work on the same code and it always be updated??steamer252009-09-23T19:42:24Z2009-09-23T19:42:24ZSVN 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#1456423Comment by steamer25 on How to prevent (junior)developers making the wrong decisions/bad code?steamer252009-09-21T22:15:24Z2009-09-21T22:15:24ZI 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., "Did you know that Bill added a function to do this part three weeks ago? You might see if you can re-use it."http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1411429#1411429Comment by steamer25 on How to become a "faster" programmer?steamer252009-09-11T22:07:58Z2009-09-11T22:07:58ZMore 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#1411429Comment by steamer25 on How to become a "faster" programmer?steamer252009-09-11T22:01:45Z2009-09-11T22:01:45ZAlong 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.