USB Christmas
My cube decoration under my monitor. It’s a Cube IT set with a USB Christmas tree. The Christmas tree changes colors. Aren’t I festive?
My cube decoration under my monitor. It’s a Cube IT set with a USB Christmas tree. The Christmas tree changes colors. Aren’t I festive?
I just stumbled on this phenomenon the other day. Does anyone know of more?
Be sure and view the page source for some of them – lots of goodies in there.
UPDATE: Here’s my entry: http://AmIReallyAwesome.com
How to get Rails working on Windows with a pre-existing oracle DB…..
I wanted to try and hookup Rails to our existing oracle DB at work. I had a rough time figuring this out, so here it is in case anyone else wants/needs it. In my case, I did not (nor did I want to) have a full Oracle client installed on my Windows box. trying to get this to work was not easy. I found 5 or 6 different pages that told different ways to get it to work, but none worked for me.
Most of this info was compiled from Oracle’s Rails FAQ and a few other pages on the net. These instructions assume you don’t have the Oracle client installed already. If you do, some of these steps may not be necessary(1, 3, 4)
MYORACLEDB =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = some.server.com)(PORT = 1521))
)
(CONNECT_DATA =
(SID = mysidinfo)
)
)
That’s it! Now, you can generate models, controllers, etc. and they should hookup to your Oracle DB as you would expect. Hopefully I didn’t miss any steps. I wrote this after I had it working, not while I was trying to get it working. If you are in a similar situation and these steps don’t work, feel free to leave a comment and I’ll see if I can help.