User Ash Wilson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T10:52:39Zhttp://stackoverflow.com/feeds/user/10556http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1705224/github-how-to-include-files-from-master-in-new-git-branch-gh-pages/1705285#17052851Answer by Ash Wilson for github how to include files from master in new git branch gh-pages Ash Wilson2009-11-10T02:26:46Z2009-11-10T02:26:46Z<p>That's actually the default behavior of the <code>git branch</code> command. The more complicated <code>symbolic-ref</code> and <code>clean</code> commands you see listed in the "pages" writeup are needed to avoid doing exactly this.</p>
<p>So, at your project root, on the master branch:</p>
<pre><code>git branch gh-pages
git checkout gh-pages
</code></pre>
<p>Or just:</p>
<pre><code>git checkout -b gh-pages
</code></pre>
http://stackoverflow.com/questions/1088866/html-ie-specific-code/1088883#10888836Answer by Ash Wilson for HTML IE specific codeAsh Wilson2009-07-06T19:44:58Z2009-07-06T19:44:58Z<p>IE understands "conditional comments," which you can use to selectively show markup even to specific versions. Here's an introduction:</p>
<p><a href="http://www.quirksmode.org/css/condcom.html" rel="nofollow">http://www.quirksmode.org/css/condcom.html</a></p>
http://stackoverflow.com/questions/731907/auto-adjust-container-div-height-to-accomodate-absolutely-positioned-child-div/731926#7319260Answer by Ash Wilson for auto adjust container <DIV> height to accomodate absolutely positioned child <DIV>sAsh Wilson2009-04-08T21:27:19Z2009-04-08T21:27:19Z<p>You could give the <code>.container</code> div a bottom padding that totals the absolutely positioned childrens' heights. I'm not sure if that counts as precalculating the height, but at least you wouldn't have to include any content within <code>.container</code> itself.</p>
http://stackoverflow.com/questions/723410/tinymce-external-toolbar-position/723451#7234512Answer by Ash Wilson for TinyMCE - external toolbar positionAsh Wilson2009-04-06T22:11:15Z2009-04-06T22:11:15Z<p>The CSS selectors in the provided stylesheets are overriding the selectors that you're writing. What you need to do is either target the toolbar element with a selector of greater specificity:</p>
<pre><code>body div.mceExternalToolbar {
position: fixed ;
top: -28px ;
};
</code></pre>
<p>Or use the <code>!important</code> directive to override it:</p>
<pre><code>.mceExternalToolbar {
position: fixed !important ;
top: -28px !important ;
}
</code></pre>
<p>For more detail about both selector specificity and <code>!important</code>, see <a href="http://www.w3.org/TR/CSS21/cascade.html#specificity" rel="nofollow">the W3C's documentation</a>.</p>
http://stackoverflow.com/questions/719959/editing-a-live-website/720006#7200065Answer by Ash Wilson for Editing a live websiteAsh Wilson2009-04-06T01:22:04Z2009-04-06T01:22:04Z<p>I would recommend putting your website code under full version control (git or subversion). Test and maintain your source in a separate, private sandbox server, and just check out the latest stable version at the production site whenever it's ready for release.</p>
<p>For database support, even for small projects I maintain separate development and production databases. You can version the SQL used to generate and maintain your schema and testing or bootstrapping data along with the rest of your site. Manage the database environment used by your site from an easily separated configuration file, and tell your version control solution to ignore it.</p>
<p>Absolute URLs are going to be a problem. If you can't avoid them, you could always store the hostname in the same configuration file and read it as needed... except within stylesheets and Javascript resources, of course. My second choice for that problem would be URL-rewriting magic or its equivalent in the development server, and my last choice would be just messing with the <code>/etc/hosts</code> file when I wanted to test features that depend on them.</p>
http://stackoverflow.com/questions/644246/how-do-you-create-a-function-that-returns-a-function-in-your-language-of-choice/645101#6451016Answer by Ash Wilson for How do you create a function that returns a function in your language of choice?Ash Wilson2009-03-14T00:50:45Z2009-03-14T02:35:19Z<p><strong>Smalltalk</strong></p>
<p>A simple solution using a code block:</p>
<pre>
| quadratic f |
quadratic := [:a :b :c | [:x | (a * x squared) + (b * x) + c]].
</pre>
<p>And to generate the function and call it:</p>
<pre>
f := quadratic value: 1 value: -79 value: 1601.
f value: 42.
</pre>
http://stackoverflow.com/questions/497909/how-and-when-do-you-decide-to-answer-questions-here/497928#4979280Answer by Ash Wilson for How and when do you decide to answer questions here?Ash Wilson2009-01-31T01:08:17Z2009-01-31T01:08:17Z<p>Try browsing questions within a few tags that match your areas of expertise.</p>
http://stackoverflow.com/questions/485451/how-is-smalltalks-whiletrue-message-implemented-behind-the-scenes/489929#4899293Answer by Ash Wilson for How is Smalltalk's whileTrue message implemented behind the scenes?Ash Wilson2009-01-28T23:47:10Z2009-01-28T23:47:10Z<p>In my VisualWorks image, it's done with recursion:</p>
<pre>
<b>whileTrue: aBlock</b>
^self value
ifTrue:
[aBlock value.
[self value] whileTrue: [aBlock value]]
</pre>
<p>However, there's also a note to the effect that the compiler will inline a #whileTrue: call if both the receiver and argument are literal blocks. So in most cases, you can also consider #whileTrue: one of the "magic" messages that looks like a message send syntactically, but is really optimized into different bytecodes under the hood.</p>
http://stackoverflow.com/questions/101145/check-if-xml-element-exists/101169#1011690Answer by Ash Wilson for Check if XML Element existsAsh Wilson2008-09-19T11:20:31Z2009-01-26T20:44:48Z<p>You can validate that and much more by using an XML schema language, like <a href="http://www.w3schools.com/Schema/default.asp" rel="nofollow">XSD</a>.</p>
<p>If you mean conditionally, within code, then <a href="http://www.w3schools.com/XPath/default.asp" rel="nofollow">XPath</a> is worth a look as well.</p>
http://stackoverflow.com/questions/98628/2d-game-physics/98652#9865214Answer by Ash Wilson for 2d game physics?Ash Wilson2008-09-19T01:31:31Z2008-09-19T01:31:31Z<p>It sounds like <a href="http://wiki.slembcke.net/main/published/Chipmunk" rel="nofollow">Chipmunk</a> might meet your needs.</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78963#7896313Answer by Ash Wilson for What do you use to keep notes as a developer?Ash Wilson2008-09-17T01:34:24Z2008-09-17T01:34:24Z<p>Personally? While I'm planning and designing, I'm a big proponent of good old fashioned pencil and paper. I have yet to encounter a diagramming tool that's as natural as sketching out the boxes and arrows myself, and during the design phase my work is equal parts pseudocode, quasi-UML, interface sketches, and checklists.</p>
<p>For notes that I want to share with my team, I prefer to use the wiki that's built in to <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a>. It's integrated with rest of the issue-tracking environment, so you can do things like easily link to tickets, source code, revisions and changelogs. We've found it to be a great place for the kind of notes and discussions that you mention.</p>
http://stackoverflow.com/questions/1623586/installing-git-on-eclipseComment by Ash Wilson on Installing Git on EclipseAsh Wilson2009-11-10T02:59:51Z2009-11-10T02:59:51ZWhat version of Eclipse do you have?http://stackoverflow.com/questions/1705224/github-how-to-include-files-from-master-in-new-git-branch-gh-pages/1705285#1705285Comment by Ash Wilson on github how to include files from master in new git branch gh-pages Ash Wilson2009-11-10T02:41:45Z2009-11-10T02:41:45ZNot automatically, no; you'll have to use <code>git merge</code> to move changes and files from branch to branch.
See <a href="http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html#_managing_branches" rel="nofollow">kernel.org/pub/software/…</a> for a good explanation of how branches are used.http://stackoverflow.com/questions/1490245/generalized-stream-parsing/1490557#1490557Comment by Ash Wilson on Generalized stream parsing?Ash Wilson2009-11-10T02:31:51Z2009-11-10T02:31:51ZActually, I thought the VisualWorks 7.6-packaged Regex parcel does have a few stream-matching methods. I'd verify but I don't have an image handy on this machine.http://stackoverflow.com/questions/438729/smalltalk-singleton-pattern-how-do-i-initialize-the-instance-variables/438774#438774Comment by Ash Wilson on smalltalk singleton pattern: how do I initialize the instance variables?Ash Wilson2009-01-28T23:54:20Z2009-01-28T23:54:20ZAnother syntax trick that I often use is possible because #ifNil: returns the receiver if it's not nil. So you can do the whole method in one line: "^UniqueInstance ifNil: [UniqueInstance := self basicNew initialize]"