Entries from March 2008

ESV Bible Via REST

March 7th, 2008 · 1 Comment

The ESV Bible REST Web Service The English Standard Version (ESV) of the Bible is a literal word-for-word translation from Crossway Bibles, who have made it available via a REST web service. There is no charge for non-commercial applications, such as on a personal or church website, though use is limited to 500 verses per [...]

[Read more →]

Tags: Programming

jQuery For Firebug

March 5th, 2008 · 6 Comments

Load jQuery in a Firebug session. When debugging or poking around in sites where jQuery is not already used, I had been pasting the following code into the multi-line FireBug console and hitting Run. This makes jQuery available for debugging, etc. j=document.createElement("SCRIPT"); j.src="http://code.jquery.com/jquery-latest.pack.js"; document.getElementsByTagName("HEAD")[0].appendChild(j); If you use Firebug, this is a handy way to make [...]

[Read more →]

Tags: Javascript · Programming