Eee computer from Asus: $200-and for sale to anyone: The e-book angle | TeleRead: Bring the E-Books Home
For 200$ thats a lot of laptop.
Tag Archives: technology
Link
Welcome to Rentglass.com – Mail order lens rental
Canon lenses, and soon, Nikon lenses delivered in the mail a week at a time. Useful.
Link
Wedding – a photoset on Flickr
Mr. and Mrs. Kottke’s photo set on flickr.
Link
ThinkGeek :: Blue LED Faucet Light
If I had a faucet that was high enough, I’d buy this.
Link
Link
Another Ajax Bible Application
Wudanbal has been working on an AJAX bible too. He only has Gen – Joshua. Perhaps I ought to try and convince him to help me with mine…
Bricklayer Is a Perl Application Framework
Bricklayer is a little bit like .net, java with netbeans, and all the other technologies that allows for strict seperation of presentation, business, and application logic. Bricklayer is built with PERL, and in some ways approximates the API we all know so well in MovableType. If you’re a developer who likes perl, give it a look.
Link
Point Birdy!. Oh the horror! HTML hath no fury like a web designer scorned.
Bible References for each Strongs Number
It took my poor laptop 18 hours to parse out the OT, and about 6 hours to parse out the NT, but the Bible References for each Strongs Greek and Hebrew Number is finally done. This should enable me to add cross references to the strongs definitions in the AJAX Bible.
Javascript Bible Reference Parsing Object: Update
I updated the regex expressions for Javascript Bible Reference Parsing Object to reflect some of the common abbreviations. Thanks to the Folks at the GNPCB.org for posting common book queries. Thanks also to Jeremy for helping me simplify my regex expressions.
AJAX Bible App Update
I updated the Bible App. It now shows verse numbers. The Bible Parsing Javascript Object has also been updated. It will now accept references that are fully spelled out or abbreviated. You can enter just the verse, or just the chapter. And it is case insensitive. So the following types of refs will work:
-
Matthew 3:9
Mat 3
1jn 2:11-12
1 john 3:1
genesis 4
john 3:16
and so on. You can find the entry to the bible app on the Projects page. I will soon zip everything up for download, though you could get all the files you needed now.
Update:
There seems to be a bug in the reference parsing object. For some reason 1jn or 1john brings up references from revelation. The issue lies in my regex expressions. I’d be grateful if someone were to point out where the problem is. ;)
Update 2:
I found the error in the parsing object. It now works just fine.
In Case You Missed it: CheapAndTiny.Com
My friend Paulo has gone into the niche micropublishing business. cheapandtiny.com, written by Raffy keeps track of small and inexpensive gadgetry.
Javascript Bible Reference Parsing Object
In an effort to encourage the coding of a bible reference object (see previous post on my bible app), I though I would post some specifications in a clearer format than I had previously, along with some example inputs and outputs. Feel free to comment in the comments section, and if you build one, let me know, I would be more than happy to host it here with proper attribution of course. If we used a GPL type system, the library could become very robust. Thanks!
Bible Parsing Object Definition:
Input: String
Output: Object with attributes (book, bookname, chapter, startverse, endverse, [error])
Notes:
Reference: "Matthew"
Returns: error="Invalid Reference. Please include a chapter and/or verse range"
Reference: "Matthew 1"
Returns: book=’matthew’, bookname=’40′, chapter=’1′, startverse=’1′, endverse=’25′
Reference: "Matthew 1:1"
Returns: book=’matthew’, bookname=’40′, chapter=’1′, startverse=’1′, endverse=’1′
Reference: "Matthew 1:1-5"
Returns: book=’matthew’, bookname=’40′, chapter=’1′, startverse=’1′, endverse=’5′
Common Abbreviations should work, but the book should always return the full name.
Example Object:
function Reference(bibleRef) {
var book;
var bookname;
var chapter;
var startverse;
var endverse;
// A lot of parsing and stuff happend here. ;)
this.book=book;
this.bookname=bookname;
this.chapter=chapter;
this.startverse=startverse;
this.endverse=endverse;
}
AJAX Enabled Bible Search with Strongs Numbers
Its not near completed. Read the Caveat’s on the page. The url is www.walljm.com/bible/. Tell me what you think, offer suggestions for improvement. All will be listened too, perhaps not all heeded, but at least listened too.
Ok, its late. I hope I don’t miss the last train, otherwise its going to be a long walk home. :)
Photoshop Blogging Plugin
Isn’t it about time some smart photoshop/programmer/photoblogger used the Photoshop SDK to build a Blog This! plugin that used the Atom API (or any number of the other blogging APIs). That way I could post photos straight from photoshop. And if the plugin would let you opt to have the Title, Description and other stuff pulled straight from the EXIF metadata, all the better. Heck, I would pay for something like that. Oh, and one more thing, if the plugin would also, when it grabbed stuff from metadata, allow me to specify a post date, that would be like icing on the cake. I could automatically post using the batch function! Ok lazyweb, do your stuff!
Link
FreeDMG does drag and drop disk imaging on the fly.
I’m not sure why I need this, but it seems really cool and relevant for some reason.
JSON is not about me, honest!
JSON is a lightweight data-interchange format. Apparently its a language independant way of notating objects using C like syntax. Interesting…
