ATHF Led Bomb Scare Auctions

More on my favorite topic this week.

Looks like more people are already cashing in on the latest craze.

Damn, if I knew more about electronic engineering, I’d be getting paid right now….

seth, Thu, 01 Feb 2007 15:12:00 GMT
no comments

LED Graffiti Causes Bomb Scare in Boston

Remember this video I posted a while back?

“I hope you can see this because I’m doing it as hard as I can…”

Guess the handiwork hasn’t been taken so well in Boston...

Turner Broadcasting plans to take responsibility for the “hoax devices” that were found at several locations in and around Boston Wednesday that forced police bomb units to scramble throughout the area.

The incidents were part of a marketing campaign that involved a character from the cartoon show “Aqua Teen Hunger Force.”

“The ‘packages’ in question are magnetic lights that pose no danger. They are part of an outdoor marketing campaign in 10 cities in support of Adult Swim’s animated television show ‘Aqua Teen Hunger Force,’” Turner Broadcasting, the parent company of Cartoon Network, said in a statement.

Hilarious…Wonder if I can contact the bomb squad to get one?

Update…The media goes crazy

It’s insane how much press this thing is getting. From calling them ‘suspicious packages’ to attempts at scaring people in other cities where they have been placed.

They’re clearly not packages, bombs, hoax devices, or whatever the media decides to call them today… They’re boards with LED’s and batteries. Whoever would mistake one of these things for a bomb needs to get their head checked.

I think I’ll start disposing of my random computer equipment in public places, just to see the reaction it gets. Wonder if my old Treo, stuck to a wall with the screen turned on would get reported?

On top of it all, looks like the guys who put up the art are now being held on $100,000 bond in Boston.

TimeWarner looks to be letting them sit in jail overnight. Not like they don’t have an army of lawyers at their disposal, and almost unlimited cash. What, they didn’t factor this into their budget?

Update 2…Been there, done that, bought the t-shirt.

Get yours now before they sell out…

seth, Wed, 31 Jan 2007 18:12:00 GMT
no comments

Cashboard Projects Screen

Signed up for the announcement list yet?

Cashboard Projects Screen

Everything is on track for a mid March Alpha release…

seth, Wed, 24 Jan 2007 02:36:00 GMT
2 comments

Finally, official prototype.js docs!

If you’re unaware, prototype.js is the javascript library that ships with Ruby on Rails. It provides a lot of convenience features for the DHTML / front-end developer.

I’ve been using this resource for my prototype.js doc needs to date.

Found out today that there’s now an official prototype.js doc reference. Hell yeah.

Update

Forgot to mention this dope set of enhancements to prototype as well. Adds a ton of cool stuff like the ability to trigger event handlers programmatically.

seth, Fri, 19 Jan 2007 16:08:00 GMT
no comments

Some nice photography over @ SF Metroblog

No software talk today, just pictures for you to enjoy.

Found a few nice sets of photos over at the SF Metroblog. I’ve got this one at a high res as my background pic.

seth, Thu, 18 Jan 2007 21:23:00 GMT
no comments

LightSnipes

Graffiti goes digital. Enjoy.

Updated

Looks like the original got taken off GooTube…Here’s one that works for now.

seth, Thu, 18 Jan 2007 19:28:00 GMT
no comments

MacBook Pro battery problems

I’ve been having major problems with my MacBook Pro battery lately.

I haven’t been able to run the laptop on battery power reliably for the past month or so. The charge will get down to around 50% then the entire computer just shuts off.

Today was the breaking point, as I unplugged the laptop from power and it just shut off not five minutes after.

After a quick call to Apple support it turns out they’re going to send me a new battery, free of charge.

You’ve got to love support like that. Thanks Apple.

Update

Got the battery, and it works like a champ. Who knows what caused the other one to flake out like that…

seth, Wed, 17 Jan 2007 20:46:00 GMT
no comments

Carbonmade - Online portfolios done with style

Check out this very well designed app for creating online portfolios.

Carbonmade oozes personality and friendliness. Something nice to see in the world of the web where everyone takes themselves way too seriously.

Carbonmade home page

It looks to be the way to go for setting up an online portfolio for artists that don’t want to mess around with HTML.

Besides the nice design, most of the portfolios contain fresh work as well. Take a spin through it if you have some time.

seth, Sat, 13 Jan 2007 16:35:00 GMT
no comments

SubModal v1.4

Continuing the love for subModal today, I released version 1.4.

Took the time to fix a nasty IE/centering bug that was effecting 1.3. Whoops…Thanks go out to bhaidar on the subModal google group for spotting and reporting the problem.

Spotted in the wild…

A friend of mine directed me towards MyHeritage.com yesterday. You know the site where you can upload your face and see what celebrities you look like? It’s all over MySpace… Pretty funny stuff.

Anyhow, I was interested to see that it looks like they’re using the subModal in their code. Always nice to see things you’ve written being used.

seth, Fri, 12 Jan 2007 15:02:00 GMT
3 comments

Using a callback function with subModal

I get a lot of questions regarding the use of a callback function with my subModal code. The following is an except from a response I posted over at the subModal google group.

  1. Define the function that’ll be called on the opening page.
  2. Pass the function you’d like to call into ‘showPopWin’.
  3. Assign any return value on the modal page itself, if necessary
  4. Call the hidePopWin function passing true

It might be easier to grok in code, so as an example…

On the subModal opening page

// returnVal can get passed in from the modal page itself...
//....see below for info
function returnRefresh(returnVal) {
  window.document.reload();
}

// Open the modal, passing in the refresh function 
// as a reference NOT a string.
showPopWin('mymodal.html', 500, 500, returnRefresh);

From inside the subModal window

// If you plan to pass a return value assign it
var returnVal = "something";

// When you're ready to close the pop window 
// call this...Passing true makes sure the return 
// function gets called.
window.top.hidePopWin(true); 
seth, Thu, 11 Jan 2007 17:06:00 GMT
no comments
Older posts: 1 ... 8 9 10 11 12 13