Funny thing about black and white. You mix it together and you get gray. And it doesn't matter how much white you try and put back in, you're never gonna get anything but gray.

Lilah ,'Destiny'


Buffistechnology 3: "Press Some Buttons, See What Happens."

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!


omnis_audis - Oct 22, 2012 10:11:23 am PDT #21291 of 25501
omnis, pursue. That's an order from a shy woman who can use M-16. - Shir

o_a, if your machine is an HP, this is how to turn off the dock: [link]
Thanks Deena! I will have to check that out!


§ ita § - Oct 22, 2012 10:18:09 am PDT #21292 of 25501
Well not canonically, no, but this is transformative fiction.

Omnis, your Mac doesn't ask you to update Java? It's not just my PC that requests that of me.


omnis_audis - Oct 22, 2012 12:50:55 pm PDT #21293 of 25501
omnis, pursue. That's an order from a shy woman who can use M-16. - Shir

Not that I recall. And certainly not every week like the PC is doing.


Strix - Oct 22, 2012 3:20:48 pm PDT #21294 of 25501
A dress should be tight enough to show you're a woman but loose enough to flee from zombies. — Ginger

Does anyone have a rrocmmendation for a sturdy dashboard cell phone holder for a Droid phone?

Mom is pestering me for Xmas list, and I have wanted on for a while.

I'm looking for something study, basic, and not too dear. Perhaps a no-hands plus in so I can talk through the car speakers (I have a cassest adapter -- yeah, my car is old -- but no having that wouldn't be a deal breaker. I'm mostly hoping to be able to see GPS diractions easily.


§ ita § - Oct 22, 2012 4:09:03 pm PDT #21295 of 25501
Well not canonically, no, but this is transformative fiction.

I just got asked to update Java today. I'm not sure why I'd be getting them much more than you. But it's always updating something, it feels like.


dcp - Oct 22, 2012 4:54:26 pm PDT #21296 of 25501
The more I learn, the more I realize how little I know.

Which model Droid, Strix? The original?


Strix - Oct 22, 2012 5:04:44 pm PDT #21297 of 25501
A dress should be tight enough to show you're a woman but loose enough to flee from zombies. — Ginger

The Galaxy 2s (I think; I'm a little hepped up on goofballs.)

Not the newest version; the one before that.

I don't need anything fancy; just practical.


Steph L. - Oct 22, 2012 5:06:23 pm PDT #21298 of 25501
this mess was yours / now your mess is mine

I'm a little hepped up on goofballs.

Me too!

Also, I get updates for Java on my Mac a lot. (Just to provide a hopped-up-on-goofballs anecdata point.)


tommyrot - Oct 23, 2012 6:44:47 am PDT #21299 of 25501
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

tommyrot - Oct 23, 2012 6:47:25 am PDT #21300 of 25501
Sir, it's not an offence to let your cat eat your bacon. Okay? And we don't arrest cats, I'm very sorry.

Just to provide a hopped-up-on-goofballs anecdata point.

I think we need more anecdata like this.

OK, I have an HTML question:

I'm playing around with the jquery jsTree control. What I want to do is have the jsTree control expand as the user clicks on nodes to expand them, and if it expands to be bigger than its allocated size I want it to overlay whatever is below it.

This is part of my test page:

<table>
<tr>
    <td>
        <div id="treeViewDiv" style="height: 100px; overflow:visible; z-index: 2">
        </div>
        
    </td>
</tr>
<tr>    
    <td>
This is some plain text (no tags) in a new row after the "treeViewDiv".	
    </td>
</tr>
</table>	

(eta: The jsTree control is placed in the div by javascript.)

When I run this, the jsTree control does not force the next row of the table down (which is correct) but it does not overlay the row beneath it. What am I missing?

I tried adding a z-index setting to the style, but it didn't help.

eta²:

Fuck. This works correctly in Chrome but not IE 8.

eta: GOT IT WORKING! It's a bug in IE. The workaround is to add 'position:relative' to the style.