'Day' is a vestigial mode of time measurement based on solar cycles. It's not applicable. I didn't get you anything.

River ,'Out Of Gas'


Buffistechnology 2: You Made Her So She Growls?  

Got a question about technology? Ask it here. Discussion of hardware, software, TiVos, multi-region DVDs, Windows, Macs, LINUX, hand-helds, iPods, anything tech related. Better than any helpdesk!


tommyrot - Nov 15, 2005 5:11:30 am PST #5563 of 10003
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

How dumb are the dummies at Sony?

The news is getting ever worse for Sony. Parts of Sony's DRM rootkit contain code copied from an open source project (LAME). Copyright infringement carries penalties of up to $250,000 per incident, a cool quarter million per CD. Sony is in deep s**t.

Although I can't get the link (where this info came from) to load.

But if, say, Sony sold four million CDs with this DRM scheme, they face a maximum penaty of a trillion dollars.


DXMachina - Nov 15, 2005 5:15:03 am PST #5564 of 10003
You always do this. We get tipsy, and you take advantage of my love of the scientific method.

I love the irony of using copyright infringement as the basis for punishing the over assertion of copyright rights.


§ ita § - Nov 15, 2005 5:21:03 am PST #5565 of 10003
Well not canonically, no, but this is transformative fiction.

I read that the rootkit remover that Sony was providing makes your system more vulnerable, and shouldn't be used until they fix it.

::cite hunts::

Sony's Web-Based Uninstaller Opens a Big Security Hole; Sony to Recall Discs


tommyrot - Nov 15, 2005 5:24:03 am PST #5566 of 10003
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

Really, at this point I think the best course of action for Sony is ritual suicide.

eta:

"You know, in certain older civilized cultures, when a major corporation has failed as badly as you...."


Jon B. - Nov 15, 2005 5:29:01 am PST #5567 of 10003
A turkey in every toilet -- only in America!

Although I can't get the link (where this info came from) to load.

Here's one reference: [link]


§ ita § - Nov 15, 2005 5:30:15 am PST #5568 of 10003
Well not canonically, no, but this is transformative fiction.

I knew that was coming, tommy -- I was too lazy to check the wording myself!


tommyrot - Nov 15, 2005 5:33:16 am PST #5569 of 10003
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

I knew that was coming, tommy -- I was too lazy to check the wording myself!

I pulled the wording from memory (pretty sure it's close). Think of all the time I'll save by not having to google Serenity quotes, and all I had to do was see the movie seven times in the theater.


tommyrot - Nov 15, 2005 10:54:24 am PST #5570 of 10003
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

In a web page, why does the javascript onblur event get fired for a select combobox when I hit the 'Esc' key after typing into the select combobox?


Eddie - Nov 15, 2005 10:59:57 am PST #5571 of 10003
Your tag here.

In a web page, why does the javascript onblur event get fired for a select combobox when I hit the 'Esc' key after typing into the select combobox?

The onblur event fires when a control loses focus. Hitting the Esc key causes it to lose focus (IIRC).


tommyrot - Nov 15, 2005 11:09:32 am PST #5572 of 10003
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

Well, that's... dumb counterintuitive.

Huh. The onChange event fires too. That's less counterintuitive, but still not what I want.

OK, so I need to use the onKeyDown or onKeyPress events to set a flag when the user hits escape, which will tell the functions that the onChange and onBlur events call to do nothing for that case. Then I need to reset the flag back. It's that setting the flag back part that bugs me - I can't think of a non-kludgey way to do it. And it needs to be set back after all the events are done firing.