User Neall - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T04:44:46Z http://stackoverflow.com/feeds/user/619 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1774473/restore-previously-removed-code-not-necessarily-single-or-whole-file-in-git/1778737#1778737 1 Answer by Neall for Restore previously removed code (not necessarily single or whole file) in git Neall 2009-11-22T13:46:56Z 2009-11-23T20:20:57Z <p>Another option is <code>git rebase -i</code>. It's more involved than <code>git revert</code>, but you have more options also.</p> <p>Let's say you have a git repo that only contains a README file:</p> <pre><code>$ cat README This is line alpha. Line Beta. Line Gamma. </code></pre> <p>Then you delete line beta and commit your change:</p> <pre><code>(make changes) $ git commit -am 'removed beta' </code></pre> <p>Now you add some more lines, committing along the way:</p> <pre><code>(make changes) $git commit -am 'added delta' (make changes) $git commit -am 'added epsilon' </code></pre> <p>Now our README file and git log look like this:</p> <pre><code>$ cat README This is line alpha. Line Gamma. Line Delta. Line Epsilon. $ git log --pretty=oneline 56ae2db58905607270434045b2a7218237d3716e added epsilon 058ec4b92fb279370f6e5b81c4aebb6250f93c6b added delta 19801b380956b60f36b4922796ea86935a75e569 removed beta bc9057cebf05352eb5596eaf753708a14de589d2 initial commit </code></pre> <p>Now we decide that we shouldn't have removed the beta line. <code>git rebase</code> to the rescue! Whenever I do any rebasing I like to use a temporary branch, since I'm changing the history.</p> <pre><code>$ git checkout -b fixingthings </code></pre> <p>Now we want to rebase everything that's happened since our initial commit. Looking at the log, that's commit <code>bc9057c...</code>. </p> <pre><code>$ git rebase -i bc9057c </code></pre> <p>Now you'll see this in your editor:</p> <pre><code>pick 19801b3 removed beta pick 058ec4b added delta pick 56ae2db added epsilon # Rebase bc9057c..56ae2db onto bc9057c # # Commands: # p, pick = use commit # e, edit = use commit, but stop for amending # s, squash = use commit, but meld into previous commit # # If you remove a line here THAT COMMIT WILL BE LOST. # However, if you remove everything, the rebase will be aborted. # </code></pre> <p>The comments at the bottom are helpful. Just <strong>delete the line with the commit you want to get rid of</strong>, save and quit and git will take care of the rest. Now your README looks like this:</p> <pre><code>$ cat README This is line alpha. Line Beta. Line Gamma. Line Delta. Line Epsilon. </code></pre> <p>It's like magic!</p> <p>If you like, you can merge back into your master branch now and delete your temporary branch.</p> <pre><code>$ git checkout master Switched to branch "master" $ git merge fixingthings Auto-merging README Merge made by recursive. $ git branch -d fixed Deleted branch fixingthings (was 1247141). </code></pre> <p>What <code>git rebase</code> does is consider each commit as a patch and replays them in order (or not, as you tell it). That means you can have merge conflicts. If this happens to you, rebase will pause and have you resolve the conflicts. There are lots of tutorials about what to do in that situation. <a href="http://www.neeraj.name/blog/articles/811-how-to-resolve-git-merge-conflict-caused-while-doing-git-rebase" rel="nofollow">This one looked good to me.</a></p> http://stackoverflow.com/questions/1777854/git-submodules-specify-a-branch-tag/1777898#1777898 2 Answer by Neall for Git submodules: Specify a branch/tag Neall 2009-11-22T05:22:58Z 2009-11-22T05:22:58Z <p>git submodules are a little bit strange - they're always in "detached head" mode - they don't update to the latest commit on a branch like you might expect.</p> <p>This does make some sense when you think about it, though. Let's say I create repository foo with submodule bar. I push my changes and tell you to check out commit a7402be from repository foo.</p> <p>Then imagine that someone commits a change to repo bar before you can make your clone.</p> <p>When you check out commit a7402be from repo foo, you expect to get the same code I pushed. That's why submodules don't update until you tell them to explicitly and then make a new commit.</p> <p>Personally I think submodules are the most confusing part of git. There are lots of places that can explain submodules better than I can. I recommend <a href="http://progit.org/book/ch6-6.html" rel="nofollow">Pro Git</a> by Scott Chacon.</p> http://stackoverflow.com/questions/1777476/developing-at-home-and-office-would-git-be-easier-than-svn-using-xcopy/1777869#1777869 6 Answer by Neall for developing at home and office, would GIT be easier than SVN using xcopy? Neall 2009-11-22T05:06:10Z 2009-11-22T05:06:10Z <p>I recommend git.</p> <p>Either way you're going to want the canonical repository on the USB key. In git you might do this:</p> <p>Make a "bare" repo on the USB key:</p> <pre><code>$ mkdir /path/to/usbkey/myapp.git $ cd /path/to/usbkey/myapp.git/ $ git init --bare Initialized empty Git repository in /path/to/usbkey/myapp.git/ </code></pre> <p>Bare repository directories are usually named "something.git" - you can name them whatever you want, but the ".git" convention is very widely used.</p> <p>Now you can clone the repo:</p> <pre><code>$ cd /my/source/dir/ $ git clone /path/to/usbkey/myapp.git Initialized empty Git repository in /my/source/dir/myapp/.git/ warning: You appear to have cloned an empty repository. </code></pre> <p>It will warn you that the repo is empty. Let's put something in it:</p> <pre><code>$ cd myapp $ echo "some stuff." &gt; README $ git add README $ git commit -m 'added a README' [master (root-commit) 155b8ea] added a README 1 files changed, 1 insertions(+), 0 deletions(-) create mode 100644 README </code></pre> <p>And then push it to the USB key:</p> <pre><code>$ git push origin master Counting objects: 3, done. Writing objects: 100% (3/3), 231 bytes, done. Total 3 (delta 0), reused 0 (delta 0) Unpacking objects: 100% (3/3), done. To /path/to/usbkey/myapp.git * [new branch] master -&gt; master </code></pre> <p>When you get to your other computer, just clone the repo from your USB key again. You'll have to make sure you remember to push your changes, but you know you'll always have a backup because you'll have three full copies of the repo whenever you're synced up.</p> <p>An alternate way to do it with git is to only have one repo - the one on the USB key. You wouldn't ever have to remember to push to it, but your code would only be on the key unless you used some other explicit backup system. That would be bad.</p> <p>If you were to use SVN on the USB key you would still have to remember to commit and pull your changes in the same way has having a bare git repo, but you wouldn't get the free automatic backups that doing so with git gives you. Also you would miss out on all the other niceties of git, but that's a whole other discussion. See <a href="http://whygitisbetterthanx.com/" rel="nofollow">Why Git is Better Than X</a>.</p> http://stackoverflow.com/questions/1729284/ruby-what-does-the-asterisk-in-p-1-10-mean/1729293#1729293 12 Answer by Neall for ruby: what does the asterisk in "p *1..10" mean Neall 2009-11-13T13:48:18Z 2009-11-13T13:55:13Z <p>It's the <a href="http://theplana.wordpress.com/2007/03/03/ruby-idioms-the-splat-operator/" rel="nofollow">splat operator</a>. Often times you see it used when you want to split up an array to use as parameters of a function.</p> <pre><code>def my_function(param1, param2, param3) param1 * param2 * param3 end my_values = [2, 3, 5] my_function(*my_values) # returns 30 </code></pre> <p>Or for multiple assignment (it works both ways):</p> <pre><code>first, second, third = *my_values *my_new_array = 7, 11, 13 </code></pre> <p>For your example, these two would be equivalent:</p> <pre><code>p *1..10 p 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 </code></pre> http://stackoverflow.com/questions/1675982/any-examples-of-a-non-trivial-and-useful-example-of-the-with-keyword/1676083#1676083 2 Answer by Neall for Any examples of a non-trivial and useful example of the 'with' keyword? Neall 2009-11-04T19:35:18Z 2009-11-05T13:12:38Z <p>It should be said here that the <code>with</code> statement in JavaScript is widely deprecated.</p> <p>See Douglas Crockford's <a href="http://yuiblog.com/blog/2006/04/11/with-statement-considered-harmful/" rel="nofollow">With Statement Considered Harmful</a>.</p> <p>I can't say it any better than he did (seriously, follow the link), but in short if you do this:</p> <pre><code>with (mySuperLongObjectReferenceThatIHateTyping) { propertyAlpha = 'a'; propertyBeta = 2; propertyGamma = false; } </code></pre> <p>You can't know by looking at that code if you're assigning values to properties of the mySuperLongObjectReferenceThatIHateTyping object or of the global object (window).</p> <p>Crockford recommends this:</p> <pre><code>var o = mySuperLongObjectReferenceThatIHateTyping; o.propertyAlpha = 'a'; o.propertyBeta = 2; o.propertyGamma = false; </code></pre> <p>Which is unambiguous. Or you could even use a function so you have scope and don't create another global variable:</p> <pre><code>(function(o) { o.propertyAlpha = 'a'; o.propertyBeta = 2; o.propertyGamma = false; })(mySuperLongObjectReferenceThatIHateTyping); </code></pre> http://stackoverflow.com/questions/1113618/how-good-is-rails-and-postgresql-support/1113651#1113651 4 Answer by Neall for How good is Rails and PostgreSQL support? Neall 2009-07-11T12:47:31Z 2009-10-27T13:01:23Z <p>PostgreSQL support with rails is excellent - I would not hesitate to use it.</p> <p>If you are looking for examples, <a href="http://planetargon.com/" rel="nofollow">Planet Argon</a> is a high-profile web development house that primarily does Rails with PostgreSQL in the background. You can read more about their work at <a href="http://www.robbyonrails.com/articles/tag/postgresql" rel="nofollow">Robby Russel's blog</a>.</p> <p><a href="http://heroku.com/" rel="nofollow">Heroku</a> uses PostgreSQL exclusively for their Ruby web hosting - including lots of Rails deploys, of course.</p> http://stackoverflow.com/questions/1616957/how-do-you-roll-back-reset-a-git-repository-to-a-particular-commit/1625275#1625275 1 Answer by Neall for How do you roll back (reset) a git repository to a particular commit? Neall 2009-10-26T14:49:45Z 2009-10-26T14:49:45Z <p>A slightly less scary way to do this than the <code>git reset --hard</code> method is to create a new branch. Let's assume that you're on the <code>master</code> branch and the commit you want to go back to is <code>c2e7af2b51</code>.</p> <p>Rename your current master branch:</p> <pre><code>git branch -m crazyexperiment </code></pre> <p>Check out your good commit:</p> <pre><code>git checkout c2e7af2b51 </code></pre> <p>Make your new master branch here:</p> <pre><code>git checkout -b master </code></pre> <p>Now you still have your crazy experiment around if you want to look at it later, but your master branch is back at your last known good point, ready to be added to. If you really want to throw away your experiment, you can use:</p> <pre><code>git branch -D crazyexperiment </code></pre> http://stackoverflow.com/questions/1622363/how-do-i-determine-the-parent-parent-repository-of-a-git-repository/1625128#1625128 2 Answer by Neall for how do I determine the parent parent repository of a git repository? Neall 2009-10-26T14:25:54Z 2009-10-26T14:25:54Z <p>Also, <code>git remote -v</code> will show the urls of all your remotes.</p> http://stackoverflow.com/questions/1503028/migration-from-subversion-to-git-in-a-company-setting/1513967#1513967 0 Answer by Neall for Migration from Subversion to Git in a company setting? Neall 2009-10-03T14:59:29Z 2009-10-03T14:59:29Z <p>I made the SVN to Git switch recently with a small team. Scott Chacon's new book, <a href="http://progit.org" rel="nofollow">Pro Git</a>, was a great help learning about all aspects of Git. The book is free and easy to use on the web site. The part about <a href="http://progit.org/book/ch8-2.html" rel="nofollow">migrating to Git</a> had some very nice tips to make your SVN-Git imports nicer.</p> http://stackoverflow.com/questions/43870/how-to-concatenate-strings-of-a-string-field-in-a-postgresql-group-by-query/43944#43944 8 Answer by Neall for How to concatenate strings of a string field in a PostgreSQL 'group by' query? Neall 2008-09-04T15:03:25Z 2009-10-02T19:28:36Z <p>I've run into this before also. There is no built-in aggregate function to concatenate strings. It seems like this would be needed all the time, but it's just not part of the default set.</p> <p>I Googled and found <a href="http://archives.postgresql.org/pgsql-novice/2003-09/msg00177.php" rel="nofollow">the same example</a>:</p> <pre><code>CREATE AGGREGATE textcat_all( basetype = text, sfunc = textcat, stype = text, initcond = '' ); </code></pre> <p><a href="http://www.postgresql.org/docs/8.3/static/sql-createaggregate.html" rel="nofollow">Here is the CREATE AGGREGATE documentation.</a></p> <p>In order to get the ", " inserted in between them without having it at the end, you might want to make your own concatenation function and substitute it for the "textcat" above. Here is one I put together but haven't tested:</p> <pre><code>CREATE FUNCTION commacat(acc text, instr text) RETURNS text AS $$ BEGIN IF acc IS NULL OR acc = '' THEN RETURN instr; ELSE RETURN acc || ', ' || instr; END IF; END; $$ LANGUAGE plpgsql; </code></pre> <p>(edit - changed "varchar" in my function to "text" as pointed out by Kev)</p> http://stackoverflow.com/questions/11615/good-resources-for-relational-database-design/11618#11618 5 Answer by Neall for Good Resources for Relational Database Design Neall 2008-08-14T19:54:23Z 2009-09-25T14:07:43Z <p>Book: <a href="http://rads.stackoverflow.com/amzn/click/0201752840" rel="nofollow">Database Design for Mere Mortals</a></p> http://stackoverflow.com/questions/1471571/how-to-configure-postgresql-for-the-first-time/1471620#1471620 0 Answer by Neall for How to configure postgresql for the first time? Neall 2009-09-24T13:13:56Z 2009-09-24T13:13:56Z <p>You probably need to update your <a href="http://www.postgresql.org/docs/8.3/interactive/auth-pg-hba-conf.html" rel="nofollow"><code>pg_hba.conf</code></a> file. This file controls what users can log in from what IP addresses. I think that the postgres user is pretty locked-down by default.</p> http://stackoverflow.com/questions/1428598/can-a-json-object-returned-by-php-contain-a-date-object/1428638#1428638 1 Answer by Neall for Can a JSON object returned by PHP contain a date object Neall 2009-09-15T17:46:00Z 2009-09-15T17:54:01Z <p>Short answer: no.</p> <p>JSON is just text, and all values are either arrays, objects, numbers, strings, booleans or null. The "object" in this case is basically just a PHP array - it can't have methods. You need to manually convert the dates (which will be strings) into Dates.</p> <p>The formal definition of JSON is at <a href="http://www.json.org/" rel="nofollow">http://www.json.org/</a></p> http://stackoverflow.com/questions/1124502/javascript-link-from-github-or-link-to-local-file/1124547#1124547 1 Answer by Neall for JavaScript: Link from GitHub or link to local file? Neall 2009-07-14T10:24:43Z 2009-07-14T10:24:43Z <p>The Google Code JavaScript hosting is optimized for serving the files quickly and reliably. GitHub, while totally awesome for sharing code, is not necessarily speedy or reliable. Definitely download those libraries from GitHub and host them yourself.</p> http://stackoverflow.com/questions/1114442/floating-lis-in-ie-6/1114460#1114460 0 Answer by Neall for Floating LI's in IE 6 Neall 2009-07-11T19:28:18Z 2009-07-11T19:47:30Z <p>IE 6 has some bugs with whitespace between <code>&lt;li&gt;</code> elements. Try putting all your list items on the same line with no space between them.</p> <p>Edit: On further inspection, I don't think the whitespace is your problem. Your example has a lot of extraneous styles - it's hard to tell what the problem is.</p> http://stackoverflow.com/questions/14909/tree-based-vs-html-based-web-framework 0 Tree-Based (vs. HTML-Based) Web Framework? Neall 2008-08-18T16:58:12Z 2009-06-10T01:46:17Z <p>Anyone who writes client-side JavaScript is familiar with the DOM - the tree structure that your browser references in memory, generated from the HTML it got from the server. JavaScript can add, remove and modify nodes on the DOM tree to make changes to the page. I find it very nice to work with (browser bugs aside), and very different from the way my server-side code has to generate the page in the first place.</p> <p>My question is: what server-side frameworks/languages build a page by treating it as a DOM tree from the beginning - inserting nodes instead of echoing strings? I think it would be very helpful if the client-side and server-side code both saw the page the same way. You could certainly hack something like this together in any web server language, but a framework dedicated to creating a page this way could make some very nice optimizations.</p> <p>Open source, being widely deployed and having been around a while would all be pluses.</p> http://stackoverflow.com/questions/903904/how-is-data-passed-to-anonymous-functions-in-javascript/903955#903955 2 Answer by Neall for How is data passed to anonymous functions in JavaScript? Neall 2009-05-24T15:06:31Z 2009-05-24T15:06:31Z <p>What you are experiencing is the correct behavior - it's not a good behavior, but it's part of the language. The value of "this" is reset inside <strong>every</strong> function definition. There are four ways to call a function that have different ways of setting "this".</p> <ol> <li>The regular function invocation <pre>myFunc(param1, param2);</pre> This way of calling a function will always reset "this" to the global object. That's what's happening in your case.</li> <li>Calling it as a method <pre>myObj.myFunc(param1, param2);</pre> This unsurprisingly sets "this" to whatever object the method is being called on. Here, "this" == "myObj".</li> <li>Apply method invocation <pre>myFunc.apply(myObj, [param1, param2])</pre> This is an interesting one - here "this" is set to the object you pass as the first parameter to the apply method - it's like calling a method on an object that does not have that method (be careful that the function is written to be called this way). All functions by default have the apply method.</li> <li>As a constructor (with "new") <pre>myNewObj = new MyConstructor(param1, param2);</pre> When you call a function this way, "this" is initialized to a new object that inherits methods and properties from your function's prototype property. In this case, the new object would inherit from MyConstructor.prototype. In addition, if you don't return a value explicitly, "this" will be returned.</li> </ol> <p>The solution you used is the recommended solution - assign the outside value of "this" to another variable that will still be visible inside your function. The only thing I would change is to call the variable "that" as Török Gábor says - that's sort of the de-facto standard and might make your code easier to read for other programmers.</p> http://stackoverflow.com/questions/834316/how-to-convert-large-utf-8-strings-into-ascii/834334#834334 6 Answer by Neall for How to convert large UTF-8 strings into ASCII? Neall 2009-05-07T12:20:53Z 2009-05-07T12:20:53Z <p>Any UTF-8 string that is reversibly convertible to ASCII is already ASCII.</p> <p>UTF-8 can represent any unicode character - ASCII cannot.</p> http://stackoverflow.com/questions/829182/dynamic-javascript-file-newline-carriage-return/829208#829208 2 Answer by Neall for Dynamic Javascript File newline & carriage return Neall 2009-05-06T11:49:51Z 2009-05-06T12:39:00Z <p>Edit: It looks like I misunderstood the question - he was having trouble with newlines in his JS, not his final HTML.</p> <p><hr /></p> <p>Your JavaScript is coming out on separate lines because of the "\r\n" at the end of the string, but then you're outputting plain text into your HTML document. HTML does not break lines unless you're in a pre-formatted block (like "&lt;pre&gt;") or you give it an explicit break (like "&lt;br&gt;").</p> <p>You probably want your code to look like this:</p> <pre><code>foreach($data as $d){ echo "document.write('This is a test for array item ".$d."&lt;br&gt;'); \r\n"; } </code></pre> <p>Just be very careful of your data - inserting random strings into your HTML is a fast way to get security holes.</p> http://stackoverflow.com/questions/737307/javascript-is-it-better-to-use-innerhtml-or-lots-of-createelement-calls-to-add/737422#737422 4 Answer by Neall for JavaScript: Is it better to use innerHTML or (lots of) createElement calls to add a complex div structure? Neall 2009-04-10T12:03:02Z 2009-04-10T12:03:02Z <p>altCognito makes a good point - using a library is the way to go. But if was doing it by hand, I would use option #2 - create elements with DOM methods. They are a bit ugly, but you can make an element factory function that hides the ugliness. Concatenating strings of HTML is ugly also, but more likely to have security problems, especially with XSS.</p> <p>I would definitely not append the new nodes individually, though. I would use a DOM DocumentFragment. Appending nodes to a documentFragment is much faster than inserting them into the live page. When you're done building your fragment it just gets inserted all at once.</p> <p><a href="http://ejohn.org/blog/dom-documentfragments/" rel="nofollow">John Resig explains it much better than I could</a>, but basically you just say:</p> <pre><code>var frag = document.createDocumentFragment(); frag.appendChild(myFirstNewElement); frag.appendChild(mySecondNewElement); ...etc. document.getElementById('insert_here').appendChild(frag); </code></pre> http://stackoverflow.com/questions/216324/avoiding-sql-injection-in-a-user-generated-sql-regex/216457#216457 6 Answer by Neall for Avoiding SQL injection in a user-generated SQL-regex Neall 2008-10-19T14:03:33Z 2008-10-19T14:03:33Z <p>If you use prepared statements, SQL injection will be impossible. You should always use prepared statements.</p> <p>Roborg makes an excellent point though about expensive regexes.</p> http://stackoverflow.com/questions/199638/is-there-a-ruby-net-compiler/199649#199649 1 Answer by Neall for Is there a Ruby .NET Compiler? Neall 2008-10-14T00:57:53Z 2008-10-14T00:57:53Z <p><a href="http://www.ironruby.net/" rel="nofollow">IronRuby</a></p> http://stackoverflow.com/questions/197525/what-is-the-simplest-way-to-charge-money-over-the-internet/197542#197542 3 Answer by Neall for What is the simplest way to charge money over the Internet? Neall 2008-10-13T13:09:45Z 2008-10-13T13:09:45Z <p><a href="http://aws.amazon.com/fps/" rel="nofollow">Amazon Flexible Payment Service</a></p> http://stackoverflow.com/questions/195353/where-to-find-a-good-reference-when-choosing-a-database/195436#195436 0 Answer by Neall for Where to find a good reference when choosing a database? Neall 2008-10-12T12:35:27Z 2008-10-12T12:35:27Z <p>Postgresql has a page of <a href="http://www.postgresql.org/about/casestudies/" rel="nofollow">case studies</a> that you can quote and link to.</p> <p>Really, any of the above would have worked for you. I personally like PostgreSQL. One solid advantage it has over MSSQL (even assuming you can get it for "free") is that PostgreSQL is non-proprietary. If you're going to introduce a dependency into your project (and re-inventing an RDBMS would be crazy), you don't want it to be a black box.</p> http://stackoverflow.com/questions/192544/ip-address-change-with-limited-account/192556#192556 4 Answer by Neall for IP Address change with limited account Neall 2008-10-10T18:28:48Z 2008-10-10T18:28:48Z <p>You should probably create a service that has administrative rights and allow limited users to request an IP change from that service.</p> http://stackoverflow.com/questions/192268/ssl-certificate-encryption-vs-cypher-encryption/192273#192273 6 Answer by Neall for SSL Certificate encryption vs cypher encryption Neall 2008-10-10T17:07:01Z 2008-10-10T17:07:01Z <p>It is true that symmetric encryption typically uses much fewer bits for its key length. The reason is because symmetric encryption is much stronger at a given number of bits.</p> <p>Asymmetric encryption (where each side has a different key) is much harder to pull off. It is more computationally intensive and therefore only used for the handshake portion or for encrypting a symmetric key that the rest of the message uses.</p> http://stackoverflow.com/questions/191483/how-do-i-submit-an-ajax-request-before-the-page-is-loaded/191516#191516 0 Answer by Neall for How do i submit an ajax request before the page is loaded Neall 2008-10-10T14:16:05Z 2008-10-10T14:16:05Z <p>I think this should be possible, but it is not recommended. The correct thing to do is have the server fully determine the content of the page before it is even sent.</p> <p>If you're being held up by slow image downloads or other non-HTML content, check out one of the various JavaScript libraries. I always recommend <a href="http://jquery.com/" rel="nofollow">jQuery</a>, which has the following syntax:</p> <pre><code>$(document).ready(function() { // The DOM is fully loaded now, but images might still be loading. }); </code></pre> http://stackoverflow.com/questions/175205/disable-anchors-in-chrome-webkit-safari/175221#175221 3 Answer by Neall for Disable anchors in Chrome/WebKit/Safari Neall 2008-10-06T17:05:29Z 2008-10-10T12:43:30Z <p>I assume that you have an onclick event handler bound to these anchor elements. Just have your event handler check the "disabled" attribute and cancel the event if it is set. Your event handler would look something like this:</p> <pre><code>$("a").click(function(event){ if (this.disabled) { event.preventDefault(); } else { // make your AJAX call or whatever else you want } }); </code></pre> <p>You can also set a stylesheet rule to change the cursor.</p> <pre><code>a[disabled=disabled] { cursor: wait; } </code></pre> <p>Edit - simplified the "disabled" check as suggested in comments.</p> http://stackoverflow.com/questions/190999/is-it-possible-to-add-svg-images-to-a-web-page-through-css/191012#191012 2 Answer by Neall for Is it possible to add SVG images to a web page through CSS? Neall 2008-10-10T12:20:13Z 2008-10-10T12:20:13Z <p>You can try to reference an SVG file with the content property, but I don't think it's supported. If it was supported it would look like this:</p> <pre><code>.putapicturehere:before { content: url(mysvgfile.svg); } </code></pre> <p>This definitely won't work in IE - it might work in the newest Firefox.</p> <p>I always <a href="http://www.quirksmode.org/css/beforeafter.html" rel="nofollow">reference quirksmode.org</a> for css browser support questions.</p> http://stackoverflow.com/questions/189925/password-encryption-in-iphone-apps/189945#189945 3 Answer by Neall for password encryption in iphone apps Neall 2008-10-10T02:40:35Z 2008-10-10T02:46:45Z <p>First, if the user name and password are encrypted and decrypted on the phone, then the decryption key is obviously also on the phone and pretty much worthless. I wouldn't worry about storing user names and passwords encrypted on the phone.</p> <p>For secure communication, you should use SSL which is probably in a library that is already on the phone. If you use a library that is part of the phone OS, I don't think that means your app "contains encryption".</p> <p>Of course, I am not a lawyer. Who knows - the law might consider "pig latin" a valid encryption technology.</p> http://stackoverflow.com/questions/1729284/ruby-what-does-the-asterisk-in-p-1-10-mean/1729293#1729293 Comment by Neall on ruby: what does the asterisk in "p *1..10" mean Neall 2009-11-13T15:44:08Z 2009-11-13T15:44:08Z @Patrick Yes, assignment where there is one object on one side and multiple objects on the other will sort of imply a splat operator. So that's not a very useful example, I guess. http://stackoverflow.com/questions/1680054/is-it-possible-to-build-a-debugger-around-the-java-scripting-engine Comment by Neall on is it possible to build a debugger around the java scripting engine? Neall 2009-11-05T13:20:49Z 2009-11-05T13:20:49Z Are you trying to build a Java debugger or a JavaScript debugger? http://stackoverflow.com/questions/1653105/git-how-to-see-changes-the-next-push-will-send/1653134#1653134 Comment by Neall on git: how to see changes the next push will send Neall 2009-11-02T13:48:11Z 2009-11-02T13:48:11Z You might also want to do a git fetch first, in case your local copy of origin/master is out of date. http://stackoverflow.com/questions/1497450/strip-text-from-html-document-using-ruby Comment by Neall on Strip text from HTML document using Ruby Neall 2009-09-30T11:57:32Z 2009-09-30T11:57:32Z Are you going to have to deal with bad markup? (unescaped entities, etc.) http://stackoverflow.com/questions/1476787/jquery-innertext-not-including-sub-element/1476812#1476812 Comment by Neall on JQuery InnerText not including sub element Neall 2009-09-25T12:02:34Z 2009-09-25T12:02:34Z You might also want to insert a space between your chunks of text. http://stackoverflow.com/questions/1148743/whitespace-at-bottom-of-page-in-ie7-and-chrome-only/1148753#1148753 Comment by Neall on Whitespace at bottom of page in IE7 and Chrome only Neall 2009-07-18T23:08:44Z 2009-07-18T23:08:44Z Since * is the least-specific selector, you'll probably also have to add !important to your rule. http://stackoverflow.com/questions/829182/dynamic-javascript-file-newline-carriage-return/829208#829208 Comment by Neall on Dynamic Javascript File newline & carriage return Neall 2009-05-06T12:37:03Z 2009-05-06T12:37:03Z Just for the record, was the browser the problem? http://stackoverflow.com/questions/829182/dynamic-javascript-file-newline-carriage-return/829208#829208 Comment by Neall on Dynamic Javascript File newline & carriage return Neall 2009-05-06T12:18:35Z 2009-05-06T12:18:35Z It looks like I misunderstood the question. I ran the exact code you posted, and the document.writes come out on separate lines. Are you sure you don't have some sort of JavaScript compression layer on your web server? Are you sure that your web browser isn't munging the code for you? Try downloading the JS with wget or some other command-line utility. http://stackoverflow.com/questions/828572/strip-html-from-text-in-javascript-except-p-tags Comment by Neall on Strip Html from Text in JavaScript except p tags? Neall 2009-05-06T11:32:59Z 2009-05-06T11:32:59Z Tomalak's answer would work in most situations, but please keep in mind that stripping HTML down to &quot;safe&quot; HTML is extremely difficult and has serious security implications. If you're sending the resulting HTML to the server, <i>never</i> count on client-side validataion. Even if you don't send it back to the server, building it based on GET or POST values can make security holes. Read up on XSS and CSRF. http://stackoverflow.com/questions/828262/simple-are-html-attributes-allowed-to-have-spaces-between-assignments/828276#828276 Comment by Neall on (Simple) Are HTML attributes allowed to have spaces between assignments Neall 2009-05-06T11:25:25Z 2009-05-06T11:25:25Z Letting the browser parse the HTML sounds dangerous - wouldn't any &amp;lt;script&amp;gt; tags get executed? http://stackoverflow.com/questions/716207/testing-private-functions-in-javascript/716230#716230 Comment by Neall on Testing private functions in javascript Neall 2009-04-05T22:53:01Z 2009-04-05T22:53:01Z Just being pedantic - JavaScript is really object-oriented, but it is not class-based - it is prototype-based. http://stackoverflow.com/questions/58711/how-would-you-design-a-very-pythonic-ui-framework/60563#60563 Comment by Neall on How would you design a very "Pythonic" UI framework? Neall 2008-12-02T18:31:57Z 2008-12-02T18:31:57Z &quot;Oversimplification usually backfires&quot;: tautology. Shoes is definitely a &quot;simplification&quot; - weather it is an &quot;oversimplification&quot; depends on your needs. I would argue that simple UI creation can be very useful. http://stackoverflow.com/questions/243800/why-are-hidden-form-elements-still-read-by-jaws Comment by Neall on Why are hidden form elements still read by JAWS? Neall 2008-10-28T23:02:20Z 2008-10-28T23:02:20Z I just wanted to say that I visited the JAWS site and it was very unhelpful. I could not figure out any way to submit a bug report except by email (this is definitely a bug). Not only that but even plain links on the page don't work without scripting. From what I hear, JAWS is the market leader. :-( http://stackoverflow.com/questions/223070/database-of-software Comment by Neall on Database of Software Neall 2008-10-21T19:06:42Z 2008-10-21T19:06:42Z What would you want to use this database for? http://stackoverflow.com/questions/197388/generate-user-specific-1-time-coupon-code/197431#197431 Comment by Neall on Generate User Specific 1 Time Coupon Code Neall 2008-10-13T12:38:47Z 2008-10-13T12:38:47Z Note: you will still have to have points of sale report what coupons have been used fairly frequently to minimize the risk of a coupon being used twice.