User Sam Hasler - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T01:20:31Zhttp://stackoverflow.com/feeds/user/2541http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/26086/how-do-you-make-wrong-code-look-wrong-what-patterns-do-you-use-to-avoid-semantic24How do you make wrong code look wrong? What patterns do you use to avoid semantic errors?Sam Hasler2008-08-25T14:17:10Z2009-11-13T15:31:30Z
<p>Ever since I first made the mistake of doing an assignment in an <code>if</code> I've always written my ifs like this:</p>
<pre><code>if (CONST == variable) {
</code></pre>
<p>to avoid the common (at least for me) mistake of doing this:</p>
<pre><code>if (variable = CONST) { //WRONG, assigning 0 to variable
</code></pre>
<p>And since I read Joel Spolsky's essay <a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">Making Wrong Code Look Wrong</a> I've been trying to put his advice into practice.</p>
<p>So what other patterns do you use to make wrong code look wrong, or to force syntactic errors if you make a semantic mistake?</p>
http://stackoverflow.com/questions/203278/are-clean-urls-a-backend-or-a-frontend-thing/206941#2069414Answer by Sam Hasler for Are clean URLs a backend or a frontend thingSam Hasler2008-10-15T23:54:39Z2009-11-07T15:44:59Z<p>Now that Firefox's <a href="http://www.mozilla-europe.org/en/firefox/features/#location-bar" rel="nofollow">Awesome bar</a> and Google Chrome's <a href="http://www.youtube.com/watch?v=zdHNhF46Z3g" rel="nofollow">Omnibox</a> address bars can be used to search the browsing history it makes it much easier for users to search their history for previously visited sites, so having clean urls may help the user find sites in their history more easily.</p>
<p>Making sure the page has an appropriate Title is important (as both browsers search the title as well as the url) but by making sure the url has relevant keywords in it as well, when those keywords are typed in the address bar the urls will be more likely to show up higher in the suggestions as the keyword will be matched twice, in the url and the title.</p>
<p>Also, once a user has typed the name of a site they will be presented with example urls from the site which they can then use as a template for narrowing down their search. So using verbs and nouns in the url for different sections or actions of the site will aid the user to narrow their search to just the part of the site they are interested in, e.g. the <em>/questions/</em> or <em>/tag/</em> sections of stackoverflow, or the "/doc" at the end of docs.google.com/doc that can be used to view <em>just</em> document pages on Google docs*.</p>
<p>Since both Firefox and Chrome search for each space separated word typed into the address bar, it could be argued that it isn't necessary for searching that the url be completely human readable, but to allow the user to actually read the keywords they are interested in from the url the amount of "noise" should be kept to a minimum.</p>
<p><hr></p>
<p><i></i>* which are of the form http<i></i>://docs.google.com/Doc?id=gibberish</p>
http://stackoverflow.com/questions/1662113/query-in-a-transaction-with-an-ancestor-filter-in-google-app-engine-java0Query in a transaction with an ancestor filter in Google App Engine (Java)Sam Hasler2009-11-02T15:54:33Z2009-11-02T23:27:54Z
<p>The Java <a href="http://code.google.com/appengine/docs/java/datastore/transactions.html" rel="nofollow">documentation</a> says that an app can perform a query during a transaction, but only if it includes an ancestor filter, but there is no documentation for how to do it. Can anyone provide some example code that shows how to do this in the most concise way possible?</p>
http://stackoverflow.com/questions/1645302/non-obtrusive-version-control/1645355#16453550Answer by Sam Hasler for Non-obtrusive version controlSam Hasler2009-10-29T17:33:23Z2009-10-29T17:33:23Z<p>Mercurial only uses a .hg directory in the top top directory and it has <a href="http://bitbucket.org/tortoisehg/stable/wiki/Home" rel="nofollow">TortoiseHg</a> that makes it easy to use in Windows.</p>
http://stackoverflow.com/questions/1645174/jquery-using-appendto-in-second-to-last-row-of-table/1645261#16452610Answer by Sam Hasler for jquery: using appendTo in second to last row of tableSam Hasler2009-10-29T17:17:15Z2009-10-29T17:17:15Z<p>Note that with before() the elements must already be inserted into the document (you can't insert an element before another if it's not in the page).</p>
<p>So you have to insert someotherblob first:</p>
<pre><code>$('selector to insert someotherblob at')
.append(someotherblob)
.find('table tr:last')
.prev()
.before(myblob);
</code></pre>
http://stackoverflow.com/questions/1584854/how-to-draw-3d-sphere/1590928#15909280Answer by Sam Hasler for how to draw 3d sphere?Sam Hasler2009-10-19T20:25:09Z2009-10-19T20:25:09Z<p>Over ten years ago I wrote a Java applet to render a textured sphere by actually doing the math to work out where the surface of the sphere was in the scene (not using triangles). </p>
<p>I've rewritten it in JavaScript for canvas and I've got a <strong><a href="http://sam.haslers.info/render-sphere/JavaScript+Canvas.html" rel="nofollow">demo rendering the earth as a sphere</a></strong>:</p>
<p><img src="http://sam.haslers.info/render-sphere/JavaScript+Canvas.png" alt="alt text" /></p>
<p>I get around 22 fps on my machine. Which is about as fast as the Java version it was based on renders at, if not a little faster!</p>
<p>Now it's a long time since I wrote the Java code - and it was quite obtuse - so I don't really remember exactly how it works, I've just ported it JavaScript. However this is from a slow version of the code and I'm not sure if the faster version was due to optimisations in the Java methods I used to manipulate pixels or from speedups in the math it does to work out which pixel to render from the texture. I was also corresponding at the time with someone who had a similar applet that was much faster than mine but again I don't know if any of the speed improvements they had would be possible in JavaScript as it may have relied on Java libraries. (I never saw their code so I don't know how they did it.)</p>
<p>So it <em>may</em> be possible to improve on the speed. But this works well as a proof of concept.</p>
<p>If you're interested in comparing the speed, the Java versions are here:</p>
<ul>
<li><a href="http://sam.haslers.info/render-sphere/java-old.html" rel="nofollow">Mine - Instant start, slower to render</a></li>
<li><a href="http://sam.haslers.info/render-sphere/java-new.html" rel="nofollow">Mine - very slow to start, Much faster render</a> - This version also has lighting. Drag the mouse on it rotate the axis.</li>
<li><a href="http://sam.haslers.info/render-sphere/java-not-mine.html" rel="nofollow">Someone else's</a> - faster to start, much faster to render.</li>
</ul>
<p>I'll have a go at converting my faster version some time to see if I can get any speed improvements into the JavaScript version.</p>
http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/24575#245755Answer by Sam Hasler for Recommended Fonts for Programming?Sam Hasler2008-08-23T20:34:59Z2009-10-19T13:49:00Z<p>Two pages where there's a <strong>long list</strong> of programming fonts are these pages on <a href="http://keithdevens.com/wiki/ProgrammerFonts" rel="nofollow">keithdevens.com</a> and <a href="http://www.lowing.org/fonts/" rel="nofollow">lowing.org</a> (dead link, but it's <a href="http://web.archive.org/web/20080317195427rn%5F1/lowing.org/fonts/" rel="nofollow">in the internet archive</a>)</p>
<p>Some other discussions of programming fonts that may have more suggestions are the <a href="http://typographica.org/000744.php" rel="nofollow">comments to this blog post on typographica</a> and <a href="http://www.ultraedit.com/forums/viewtopic.php?f=3&t=246" rel="nofollow">this topic on a text editor's forum</a>.</p>
<p>Personally I like <a href="http://www.netalive.org/tinkering/triskweline/" rel="nofollow">Triskweline</a>:</p>
<p><img src="http://www.netalive.org/tinkering/triskweline/shot.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/1575274/most-efficient-way-of-filtering-an-html-table/1575463#1575463-1Answer by Sam Hasler for Most Efficient way of Filtering an Html Table?Sam Hasler2009-10-15T22:24:18Z2009-10-15T22:24:18Z<p>I'm assuming that by filtering you mean only displaying a subset of the data; and not sorting.</p>
<p>As you are populating the data into the table add classes to each row for everything in that row you want to filter by. e.g.:</p>
<pre><code><tr class="filter1 filter2 filter3">....
<tr class="filter1 filter3">....
<tr class="filter2">....
<tr class="filter3">....
</code></pre>
<p>Then when you want to apply a filter you can do something like:</p>
<pre><code>$('TR:not(.filter1)').hide();
</code></pre>
http://stackoverflow.com/questions/1573930/jquery-programmatically-select-an-option-in-select-box/1573974#15739744Answer by Sam Hasler for jQuery / Programmatically Select an Option in Select BoxSam Hasler2009-10-15T17:44:00Z2009-10-15T17:44:00Z<pre><code>$('option[value=17:00:00]').attr('selected', 'selected');
or
$('option[value='+ data[0].start +']').attr('selected', 'selected');
</code></pre>
http://stackoverflow.com/questions/1474096/using-haml-sass-with-eclipse2Using Haml & Sass with EclipseSam Hasler2009-09-24T20:55:22Z2009-10-09T14:13:20Z
<p>Are there any plugins for eclipse that add syntax highlighting and other niceties for editing <a href="http://haml-lang.com/" rel="nofollow">Haml</a> and <a href="http://sass-lang.com/" rel="nofollow">Sass</a>? Google searches only seem to point to a <a href="http://www.lucky-dip.net/articles/2007/06/21/haml-sass-editor-for-radrails/" rel="nofollow">dead project on lucky-dip.net</a>.</p>
<p>Note: it's Sass I'm most interested in. A solution for using just Sass (or something similar to it like <a href="http://lesscss.org/" rel="nofollow">less</a>) in Eclipse would suit my needs.</p>
<p>Also, I'm developing for Google App Engine (Java), using the App Engine plugin for Eclipse. So switching to another IDE isn't an option.</p>
<p><hr /></p>
<p><strong>Update:</strong> So I've got syntax highlighting now using <a href="http://stackoverflow.com/questions/1474096/haml-sass-editor-plugin-for-eclipse/1509942#1509942">Pascal's answer</a> and I've installed <a href="http://www.ruby-lang.org/en/downloads/" rel="nofollow">Ruby</a> and <a href="http://wiki.github.com/chriseppstein/compass/getting-started" rel="nofollow">Compass</a> to compile sass into css.</p>
<p>However I'm aware that the <a href="http://nex-3.com/posts/83-sass-and-less" rel="nofollow">syntax of sass will be changing with 2.4</a> so I'd still like to get the Haml and Sass Editors that come with Aptana to work. When I tried to use them they threw an exception and wouldn't display the files. I'd be interested to know if that's because I misconfigured Aptana or is an actual bug in the editors.</p>
<p>I'd also be <strong>very</strong> interested in any way of compiling Sass that integrated with Ecplise so that I didn't have to run something separate from it. (or a way of putting Sass/Compass in the Ecplise build process.)</p>
http://stackoverflow.com/questions/1032724/what-libraries-are-there-for-processing-xml-on-google-app-engine-java-servlet2What libraries are there for processing XML on Google App Engine/Java ServletSam Hasler2009-06-23T13:58:59Z2009-09-18T19:09:37Z
<p>I'm writing a Java <a href="http://en.wikipedia.org/wiki/Java%5FServlet" rel="nofollow">servlet</a> in Eclipse (to be hosted on Google App Engine) and need to process an XML document. What libraries are available that are easy to add to an Eclipse project and have good example code?</p>
http://stackoverflow.com/questions/39879/why-doesnt-javascript-support-multithreading/39987#399872Answer by Sam Hasler for Why doesn't JavaScript support multithreading?Sam Hasler2008-09-02T16:37:35Z2009-09-16T10:05:53Z<p>See also the answers to the <a href="http://beta.stackoverflow.com/questions/30036/javascript-and-threads#30197" rel="nofollow">JavaScript and Threads</a> question for information about web workers/worker threads.</p>
http://stackoverflow.com/questions/37684/replace-url-with-html-links-javascript/37687#3768714Answer by Sam Hasler for replace URL with HTML Links javascriptSam Hasler2008-09-01T10:00:52Z2009-09-14T11:57:40Z<p>Add a "g" to the end of the Regex to enable global matching.</p>
<pre><code>/ig;
</code></pre>
<p>e.g:</p>
<pre><code>function replaceURLWithHTMLLinks(text) {
var exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
return text.replace(exp,"<a href='$1'>$1</a>");
}
</code></pre>
http://stackoverflow.com/questions/1282502/is-javascript-an-application-language/1282561#12825610Answer by Sam Hasler for Is JavaScript an application language?Sam Hasler2009-08-15T18:57:43Z2009-08-15T18:57:43Z<p>You can create desktop applications with <a href="http://www.appcelerator.com/products/titanium-desktop/" rel="nofollow">Titanium Desktop</a> using web technologies, including JavaScript, or Python and Ruby if you wish.</p>
http://stackoverflow.com/questions/1279625/problem-with-jquery-ajax-timing/1279881#12798811Answer by Sam Hasler for Problem with jQuery Ajax timingSam Hasler2009-08-14T19:58:56Z2009-08-14T19:58:56Z<p>Your problem is here:</p>
<pre><code>this.returnData = data.d;
</code></pre>
<p><code>this</code> inside the anonymous function refers to the jQuery Options object, not the instance of your object.</p>
<p>Try this:</p>
<pre><code>function testClass(){
this.returnData = "";
var that = this;
this.FireAjax = function(){
$.getJSON("http://localhost/mywebapp/webservices/service.asmx/Initialize?userID=12&jsoncallback=?",
function(data){
that.returnData = data.d;
alert(data.d);
}
);
}
}
</code></pre>
http://stackoverflow.com/questions/1248598/greasemonkey-like-firefox-plugin-for-automatic-browsing/1248811#12488111Answer by Sam Hasler for Greasemonkey-like Firefox plugin for automatic browsingSam Hasler2009-08-08T12:53:34Z2009-08-08T13:06:42Z<p><a href="http://seleniumhq.org/" rel="nofollow">Selenium</a> - which has an interface for recording and running tests inside the browser but can also export tests in many languages including Python for running as a suite in the SeleniumRC tool.</p>
<p>Or </p>
<p><a href="http://groups.csail.mit.edu/uid/chickenfoot/index.php" rel="nofollow">Chickenfoot</a> (You'll probably need to use setTimeout for the repeating requests.)</p>
<p><img src="http://groups.csail.mit.edu/uid/chickenfoot/images/simple%5Fscreenshot.png" alt="alt text" /></p>
http://stackoverflow.com/questions/1246528/importing-comma-separated-data-into-excel/1246557#12465575Answer by Sam Hasler for Importing comma separated data into Excel.Sam Hasler2009-08-07T19:28:03Z2009-08-07T19:47:47Z<p>Save it in a text file with a .csv extension and open it in Excel. That will give you each comma separated item in its own cell.</p>
http://stackoverflow.com/questions/1246599/custom-javascript-class-and-private-variable-scope-issue/1246656#12466562Answer by Sam Hasler for Custom javascript class and private variable scope issueSam Hasler2009-08-07T19:46:11Z2009-08-07T19:46:11Z<p>I don't think this is anything to do with scope.</p>
<p>Remember that the AJAX call is asynchronous so func3 is being called before the JSON has been returned and your anonymous function has had a chance to set this.z to anything.</p>
http://stackoverflow.com/questions/1221347/detect-mouseover-of-certain-points-within-an-html-canvas/1221514#12215141Answer by Sam Hasler for Detect mouseover of certain points within an HTML canvas?Sam Hasler2009-08-03T09:59:34Z2009-08-03T10:07:59Z<p>You could handle the mousemove event and get the x,y coordinates from the event. Then you'll probably have to iterate over all your paths to test if the point is over the path. I had a <a href="http://stackoverflow.com/questions/1148424/registering-clicks-on-an-element-that-is-under-another-element">similar problem</a> that might have some code you could use.</p>
<p>Looping over things in this way can be slow, especially on IE. One way you could potentially speed it up - and this is a hack, but it would be quite effective - would be to change the color that each path is drawn with so that it is not noticeable by humans but so that each path is drawn in a different color. Have a table to look up colors to paths and just look up the color of the pixel under the mouse.</p>
http://stackoverflow.com/questions/1221413/what-tools-are-available-for-documenting-javascript/1221481#12214814Answer by Sam Hasler for What tools are available for documenting JavaScript?Sam Hasler2009-08-03T09:52:16Z2009-08-03T09:52:16Z<p><a href="http://code.google.com/p/code-illuminated/" rel="nofollow">Code Illuminated</a>: One of the Mozilla developers has created a documentation tool that's been used to document the Ubiquity extension. Read about it in the blog post: <a href="http://www.toolness.com/wp/?p=441" rel="nofollow">Beautifully Documented Code</a>.</p>
<p>Here's a relevant extract to give you some idea what it is:</p>
<blockquote>
<p>a single-page JavaScript application that can be served from static files, which takes in raw JavaScript files and dynamically renders the documentation alongside the code in the reader’s browser.</p>
<p><img src="http://www.toolness.com/images/20090107161400.jpg" alt="alt text" /></p>
<p>The raw source code for the file being documented above just has chunks of comments that are marked-up in WikiCreole; when the parser runs into such a chunk, it renders it alongside the code it annotates using Ivan Fomichev and Chris Purcell’s JavaScript Creole 1.0 Parser.</p>
</blockquote>
http://stackoverflow.com/questions/1148424/registering-clicks-on-an-element-that-is-under-another-element3registering clicks on an element that is under another elementSam Hasler2009-07-18T19:57:21Z2009-07-30T22:28:10Z
<p>I have elements that are under an element with opacity:0.5 that I want to be able to click on. How can I click "through" the topmost element?</p>
<p>Here's an example that demonstrates my problem. Click on the boxes to toggle them on and off. You can edit it <a href="http://jsbin.com/uhehe/edit" rel="nofollow">on jsbin</a> to try out your solution.</p>
<p><strong>Bonus points if you can have the boxes toggle on hover.</strong></p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<title>Sandbox</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<style type="text/css" media="screen">
body { background-color: #000; }
.box {width: 50px; height: 50px; border: 1px solid white}
.highlight {background-color: yellow;}
</style>
<script type="text/javascript">
var dthen = new Date();
$('<div id="past">').css({'height': (dthen.getMinutes()*60)+dthen.getSeconds() +'px'
,'position': 'absolute'
,'width': '200px'
,'top': '0px'
,'background-color': 'grey'
,'opacity': '0.5'
})
.appendTo("#container");
setInterval(function(){
dNow = new Date();
$('#past').css('height', ((dNow.getSeconds()+(dNow.getMilliseconds()/1000))*50)%300 +'px');
},10)
$(".box").click(function(){
$(this).toggleClass("highlight");
});
</script>
</head>
<body>
<div id="container">
<div class="box" style="position:absolute; top: 25px; left: 25px;"></div>
<div class="box" style="position:absolute; top: 50px; left: 125px;"></div>
<div class="box" style="position:absolute; top: 100px; left: 25px;"></div>
<div class="box" style="position:absolute; top: 125px; left: 125px;"></div>
<div class="box" style="position:absolute; top: 225px; left: 25px;"></div>
<div class="box" style="position:absolute; top: 185px; left: 125px;"></div>
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1190206/threading-in-python/1190246#11902462Answer by Sam Hasler for Threading in PythonSam Hasler2009-07-27T19:46:55Z2009-07-27T19:52:03Z<p><a href="http://www.kamaelia.org/Home" rel="nofollow">Kamaelia</a> is a python framework for building applications with lots of communicating processes.</p>
<blockquote>
<h1><img src="http://www.kamaelia.org/cat-trans-medium.png" width="100" height="93"> Kamaelia - Concurrency made useful, fun</h1>
<p>In Kamaelia you build systems from <strong>simple components that talk to each other</strong>. This speeds development, massively aids maintenance and also means you <strong>build naturally concurrent software</strong>. It's intended to be accessible by <strong>any</strong> developer, including novices. It also makes it fun :) </p>
<p>What sort of systems? Network servers, clients, desktop applications, pygame based games, transcode systems and pipelines, digital TV systems, spam eradicators, teaching tools, and a fair amount more :) </p>
</blockquote>
Here's a video from Pycon 2009. It starts by comparing Kamaelia to <a href="http://twistedmatrix.com/" rel="nofollow">Twisted</a> and <a href="http://www.parallelpython.com/" rel="nofollow">Parallel Python</a> and then gives a hands on demonstration of Kamaelia.
<p><a href="http://blip.tv/file/2022798" rel="nofollow">Easy Concurrency with Kamaelia - Part 1</a> (59:08)<br />
<a href="http://blip.tv/file/2022853" rel="nofollow">Easy Concurrency with Kamaelia - Part 2</a> (18:15) </p>
http://stackoverflow.com/questions/1187639/are-there-video-training-or-tutorial-videos-on-gwt-app-engine/1187845#11878454Answer by Sam Hasler for are there video training or tutorial videos on gwt + app engine?Sam Hasler2009-07-27T12:13:05Z2009-07-27T12:29:27Z<p>I don't know of any videos that combine GAE and GWT, but they're fairly orthogonal anyway. Check out the videos that that Google have posted:</p>
<ul>
<li><a href="http://www.youtube.com/watch?v=Ezm7MJeMa9M" rel="nofollow">Overview of Google Web Toolkit</a></li>
<li><a href="http://www.youtube.com/view%5Fplay%5Flist?p=C62453DBECDB1FAD&search%5Fquery=GoogleDevelopers+Campfire+One" rel="nofollow">Campfire One: Introducing Google App Engine (pt. 1)</a> [Python]</li>
<li><a href="http://www.youtube.com/watch?v=P3GT4-m%5F6RQ" rel="nofollow">Google App Engine - Early Look at Java Language Support</a> </li>
<li><p><a href="http://www.youtube.com/view%5Fplay%5Flist?p=DFDBB63922B90A70" rel="nofollow">Campfire One: App Engine's 1st Birthday</a></p></li>
<li><p><a href="http://code.google.com/events/io/sessions.html" rel="nofollow">Sessions at Google I/O</a> Also has many videos on GAE and GWT.<br />
For GAE I'd recommend:</p>
<ul>
<li><a href="http://code.google.com/events/io/sessions/FromSparkPlugToDriveTrain.html" rel="nofollow">From Spark Plug to Drive Train: Life of an App Engine Request</a></li>
<li><a href="http://code.google.com/events/io/sessions/SofterSideofSchemas.html" rel="nofollow">The Softer Side Of Schemas - Mapping Java Persistence Standards To the Google App Engine Datastore</a></li>
<li><a href="http://code.google.com/events/io/sessions/OfflineProcessingAppEngine.html" rel="nofollow">Offline Processing on App Engine: a Look Ahead</a></li>
</ul></li>
</ul>
<p>It's worth looking at some of the python videos (particularly the 1st birthday and Google I/O ones) to see what features the Java version will be getting. It's worth </p>
<ul>
<li><a href="http://code.google.com/appengine/articles/scaling/overview.html" rel="nofollow">Best practices for writing scalable applications</a> covers more advanced topics.</li>
</ul>
http://stackoverflow.com/questions/1165384/degrading-gracefully-with-web-workers/1171615#11716151Answer by Sam Hasler for Degrading gracefully with Web WorkersSam Hasler2009-07-23T13:13:00Z2009-07-23T13:13:00Z<p>The Bespin project has (what they call) a <a href="http://www.nonblocking.io/2009/07/google-chromes-very-incomplete-web.html" rel="nofollow">facade</a> that allows them to run JavaScript code in Web Workers, Gears Workers and if those are not available in the main thread.</p>
http://stackoverflow.com/questions/1171004/is-google-ajax-libraries-api-bypassing-same-origin-policy/1171020#11710203Answer by Sam Hasler for Is google AJAX Libraries API bypassing same origin policy?Sam Hasler2009-07-23T11:03:58Z2009-07-23T11:03:58Z<p>HTML can load from wherever it likes, it's another <strong>script</strong> running on the page that can't fetch documents from another origin.</p>
http://stackoverflow.com/questions/1165384/degrading-gracefully-with-web-workers/1166022#11660220Answer by Sam Hasler for Degrading gracefully with Web WorkersSam Hasler2009-07-22T15:13:27Z2009-07-22T15:13:27Z<p>Here's what John Resig said <a href="http://ejohn.org/blog/web-workers/#comment-386781" rel="nofollow">replying to a comment on his blog</a></p>
<blockquote>
<p>I thought about this - but it'll be tricky. You would have to make your processing code use setTimeout/setInterval from the start (this code would end up working in both a worker and on a normal web site). So while the result would be slightly slower for worker-enabled browsers at least it would work in both cases.</p>
</blockquote>
http://stackoverflow.com/questions/1164635/how-to-enable-or-disable-anchor-tag-using-jquery/1164677#11646771Answer by Sam Hasler for how to enable or disable anchor tag using jquery Sam Hasler2009-07-22T11:38:22Z2009-07-22T11:38:22Z<p>If you are trying to block all interaction with the page you might want to look at the <a href="http://malsup.com/jquery/block/" rel="nofollow">jQuery BlockUI Plugin</a></p>
http://stackoverflow.com/questions/881222/how-do-i-go-about-getting-the-ajax-queue-plugin-working-in-jquery-1-3/1145991#11459910Answer by Sam Hasler for How do I go about getting the Ajax Queue plugin working in jQuery 1.3?Sam Hasler2009-07-17T22:38:40Z2009-07-17T22:38:40Z<p><a href="http://www.protofunc.com/scripts/jquery/ajaxManager/" rel="nofollow">ajaxManager</a> plugin is based on the Ajax Queue Plugin but is a bit more flexible and works with jQuery 1.3.2.</p>
http://stackoverflow.com/questions/30036/javascript-and-threads/30197#3019710Answer by Sam Hasler for JavaScript and ThreadsSam Hasler2008-08-27T14:02:12Z2009-06-26T11:59:07Z<p>The words you want to google for are <a href="http://www.google.com/search?q=JavaScript%2Bworker%2Bthreads" rel="nofollow">JavaScript Worker Threads</a></p>
<p>Apart from from <a href="http://gears.google.com/" rel="nofollow">Gears</a> there's nothing available right now, but there's plenty of talk about how to implement this so I guess watch this question as the answer will no doubt change in future.</p>
<p>Here's the relevant documentation for Gears: <a href="http://code.google.com/apis/gears/api%5Fworkerpool.html" rel="nofollow">WorkerPool API</a></p>
<p>WHATWG has a Draft Recommendation for worker threads: <a href="http://www.whatwg.org/specs/web-workers/current-work/" rel="nofollow">Web Workers</a></p>
<p>And there's also Mozilla’s <a href="https://wiki.mozilla.org/DOMWorkerThreads" rel="nofollow">DOM Worker Threads</a></p>
<p><hr /></p>
<p><strong>Update:</strong> June 2009, current state of browser support for JavaScript threads</p>
<p><strong>Firefox 3.5</strong> has web workers. Some demos of web workers, if you want to see them in action: </p>
<ul>
<li><a href="http://blog.mozbox.org/post/2009/04/10/Web-Workers-in-action" rel="nofollow">Simulated Annealing</a> ("Try it" link)</li>
<li><a href="https://developer.mozilla.org/web-tech/2008/12/04/web-workers-part-2/" rel="nofollow">Space Invaders</a> (link at end of post)</li>
<li><a href="http://www.yafla.com/dforbes/Web%5FWorkers%5Fand%5FYou%5F%5FA%5FFaster%5FMore%5FPowerful%5FJavaScript%5FWorld" rel="nofollow">MoonBat JavaScript Benchmark</a> (first link)</li>
</ul>
<p>The Gears plugin can also be installed in Firefox.</p>
<p><strong>Safari 4</strong>, and the <strong>WebKit nightlies</strong> have worker threads: </p>
<ul>
<li><a href="http://blog.owensperformance.com/2009/02/safari-4-worker-threads-javascript-domination/" rel="nofollow">JavaScript Ray Tracer</a> </li>
</ul>
<p><strong>Chrome</strong> has Gears baked in, so it can do threads, although it requires a confirmation prompt from the user (and it uses a different API to web workers, although it will work in any browser with the Gears plugin installed): </p>
<ul>
<li><a href="http://code.google.com/apis/gears/samples/hello%5Fworld%5Fworkerpool/hello%5Fworld%5Fworkerpool.html" rel="nofollow">Google Gears WorkerPool Demo</a> (not a good example as it runs too fast to test in Chrome and Firefox, although IE runs it slow enough to see it blocking interaction)</li>
</ul>
<p><strong>IE8</strong> can only do threads with the Gears plugin installed </p>
http://stackoverflow.com/questions/10475/touch-typing-software-recommendations/57018#570184Answer by Sam Hasler for Touch Typing Software recommendationsSam Hasler2008-09-11T16:14:55Z2009-06-25T17:19:22Z<p>If you want some <strong>motivation</strong> to learn to touch type read Steve Yegge's Blog rant:</p>
<p><a href="http://steve-yegge.blogspot.com/2008/09/programmings-dirtiest-little-secret.html" rel="nofollow">Programming's Dirtiest Little Secret</a></p>
http://stackoverflow.com/questions/2530/how-do-you-disable-browser-autocomplete-on-web-form-field-input-tag/474611#474611Comment by Sam Hasler on How do you disable browser Autocomplete on web form field / input tag?Sam Hasler2009-11-23T11:23:04Z2009-11-23T11:23:04Z@Simon the annoying thing is you'll only realise it's happened if you revisit the site, and by then it could already be too late.http://stackoverflow.com/questions/1662113/query-in-a-transaction-with-an-ancestor-filter-in-google-app-engine-javaComment by Sam Hasler on Query in a transaction with an ancestor filter in Google App Engine (Java)Sam Hasler2009-11-02T16:03:10Z2009-11-02T16:03:10ZI'm betting I get another tumbleweed badge for thishttp://stackoverflow.com/questions/1584854/how-to-draw-3d-sphere/1590928#1590928Comment by Sam Hasler on how to draw 3d sphere?Sam Hasler2009-10-23T16:10:10Z2009-10-23T16:10:10ZHaven't had time to look at the fast version but there are some simple improvements that get it up to 40fps.http://stackoverflow.com/questions/1584854/how-to-draw-3d-sphere/1590928#1590928Comment by Sam Hasler on how to draw 3d sphere?Sam Hasler2009-10-19T21:27:56Z2009-10-19T21:27:56ZThe JavaScript+Canvas demo only works in Firefox. Chrome gives me the same error as this question: <a href="http://stackoverflow.com/questions/982000/firefox-throwing-a-exception-with-html-canvas-putimagedata" rel="nofollow" title="firefox throwing a exception with html canvas putimagedata">stackoverflow.com/questions/982000/…</a>http://stackoverflow.com/questions/1575274/most-efficient-way-of-filtering-an-html-tableComment by Sam Hasler on Most Efficient way of Filtering an Html Table?Sam Hasler2009-10-17T16:07:36Z2009-10-17T16:07:36Zapologies, I've redacted my comment.http://stackoverflow.com/questions/1573182/how-to-avoid-spaghetti-code-in-javascriptComment by Sam Hasler on How to avoid spaghetti code in JavascriptSam Hasler2009-10-15T16:18:26Z2009-10-15T16:18:26ZYour main worry seems to be that the user ends up waiting for a long time for all this to complete. Why not provide some feedback to the user after each requests returns so that they know something is happening. It could be as simple as a 3 stage progress bar, or messages telling the user what is happening. (You could even throw in a "reticulating splines" message for meme apeal.)http://stackoverflow.com/questions/1474096/using-haml-sass-with-eclipse/1509942#1509942Comment by Sam Hasler on Using Haml & Sass with EclipseSam Hasler2009-10-02T23:36:56Z2009-10-02T23:36:56Z I couldn't get the Haml & Sass Editor plugin to work, so I uninstalled it and set up the lexer as described above. Thanks for your help.http://stackoverflow.com/questions/1474096/using-haml-sass-with-eclipse/1509942#1509942Comment by Sam Hasler on Using Haml & Sass with EclipseSam Hasler2009-10-02T19:50:16Z2009-10-02T19:50:16ZI didn't realise Aptana was also an Eclipse Plugin. While installing the Aptana RadRails plugin there was an option to install Haml and Sass Editors. So this could be just what I needed, however I think I might have bungled the install as the Editor is throwing an exception.http://stackoverflow.com/questions/1474096/using-haml-sass-with-eclipse/1509942#1509942Comment by Sam Hasler on Using Haml & Sass with EclipseSam Hasler2009-10-02T14:57:42Z2009-10-02T14:57:42ZAlso, I'm not sure why that post mentions Eclipse, the instructions make no sense in it, and the lxr/col files don't appear to work with Eclipse either.http://stackoverflow.com/questions/1474096/using-haml-sass-with-eclipse/1509942#1509942Comment by Sam Hasler on Using Haml & Sass with EclipseSam Hasler2009-10-02T14:55:56Z2009-10-02T14:55:56ZI'm developing for Google App Engine (Java), using the App Engine plugin for Eclipse. Switching to Aptana isn't an option.http://stackoverflow.com/questions/1392135/session-persistant-across-browser-server-restart-using-google-app-engineComment by Sam Hasler on session persistant across browser/server restart using google app-engineSam Hasler2009-09-25T20:36:39Z2009-09-25T20:36:39ZDid you ever work out how to do this? I'm trying to do it myself.http://stackoverflow.com/questions/1472021/array-of-images-that-have-to-be-placed-in-one-horizontal-line-with-scrolling/1472156#1472156Comment by Sam Hasler on Array of images that have to be placed in one horizontal line (with scrolling)Sam Hasler2009-09-24T14:49:04Z2009-09-24T14:49:04Zdisplay:inline doesn't seem to work in IE, but display:table-cell does, although you then need to add padding to the images and sort out the margin/padding on the far right of the scroll box.http://stackoverflow.com/questions/995914/catch-browsers-zoom-event-in-javascript/995949#995949Comment by Sam Hasler on Catch browser's "zoom" event in JavaScriptSam Hasler2009-09-07T16:52:45Z2009-09-07T16:52:45ZChrome doesn't see the events either, seems like the plugin doesn't handle webkit.http://stackoverflow.com/questions/579920/can-firebug-set-breakpoints-in-external-javascript-filesComment by Sam Hasler on Can Firebug set breakpoints in external JavaScript files?Sam Hasler2009-08-26T14:13:35Z2009-08-26T14:13:35Zhmm, how did I miss that?!? Voting to close (too late to delete it)http://stackoverflow.com/questions/1282074/pros-cons-to-turning-off-cable-modemComment by Sam Hasler on Pros/cons to turning off cable modemSam Hasler2009-08-15T16:15:16Z2009-08-15T16:15:16ZI've gone through two power adapters for my router. I think the transformers inside them eventually failed from being on all the time. Turning it off may make them last longer.