Skip to main content

Technologies related to the web.

The Nook gains a web browser

Submitted by Xenoveritas on
Topics

The Barnes & Noble nook has had a web browser added to it in the 1.3 update (along with sudoku and chess and a bunch of other things).

And the web browser actually works pretty freaking well. The nook’s design of a small touch screen along with an e-ink display means that you get a full-color small view into the website on the bottom and a very nice black-and-white view on the top. You can scroll through the website using both the touch screen and the page back/forward keys, meaning that all-in-all, it works very well for simple surfing.

The End of an Era: the Close of Geocities

Submitted by Xenoveritas on
Topics

Man, I managed to completely miss this, but Geocities has shut down as of today. I remember when I put my first website up on ... OK, not on Geocities, but on a local ISP. Using hand-written HTML.

But still with a bit too much annoying-graphical flair. (Specifically with the over-patterned backgrounds. Yes, I know I did that here last Christmas, this Christmas will be better. I hope.) So, here it is, my tribute to Geocities closing down.

I mentioned it. That's my tribute. The end.

HTML5 Video Test Xenoveritas
Topics

Google Chrome for Mac (well, Chromium)

Submitted by Xenoveritas on
Topics

Google Chrome currently isn't available for Mac OS X.

However, you can download Google's open source project, Chromium, and build that. And, I have to say - it's pretty freaking slick.

I'm currently writing this post in Chromium under Mac OS X. It's working fairly well and looks fairly promising. You can rip off tabs, and it does the same neat window effect that it does under Vista. For a test build, I've only had it crash once on me.

So, looking cool.

Pauley Perrette is not on any social sites - including "that 'b' one"

Submitted by Xenoveritas on
Topics

While I'm not really going to cover the entire video, I did find this bit amusing:

Not facebook, not the "b" one, NOT ON ANY OF THEM.

The "b" one being, I'm assuming, 4chan. (Specifically, /b/. Note I'm not linking to it...)

Which I wouldn't have called a social networking site.

But I find it hilarious that she called it "the 'b' one."

The Correct Way to Clone Javascript Arrays

Submitted by Xenoveritas on
Topics

I couldn't remember how to clone arrays in JavaScript, so I did a quick search for the answer.

I found some, uh, not-so-great answers, mainly involving writing custom copy functions that iterated over every item in the array to copy it.

Turns out there already exists a method in JavaScript 1.2+ (in other words, in all major browsers) to clone arrays. It's called, helpfully enough, slice(begin[,end]).