Skip to content

Monthly Archives: January 2008

Dragons!

Baby dragon boy Baby dragon girl

Editor-Foo

Here’s a link to some great Editor-Foo*. What is Editor-Foo, you ask? Well Kung-Foo is mastery of the body; Script-Foo is mastery of scripting. Editor-Foo is arguably as critical as either one – the mastery of your editor of choice.

This page demonstrates some cool techniques that will work in the featured Notepad++, and will also work in Crimson, and should work in many other Editor-Foo ready text editors.

Oracle Create Table Syntax – A Clear Example

The internet seems to have a shortage of hands-on Oracle create table examples, so here’s mine. It’s a create script for an Oracle Database table that keeps track of ‘Computers’. I repeat each line with an explanation below. I hope you all find it helpful!

  • Edward

Here’s the script: create table Computers ( ComputerID number not null, OwnerID number not null, AddedDate date not null, SerialNumber varchar(128), OurProperty number(1) not null, Description varchar(255), CONSTRAINT noDuplicateComputers UNIQUE (ComputerID, Inventory_Tag) )