Archive

Archive for the ‘Uncategorized’ Category

OMG I think I found the girl of my dreams.

August 19, 2008 flare183 Leave a comment

I serious think that I have found the girl of my dreams. I don’t know here name yet but (hehe) I damn sure will before the end of my 12th grade year.

Categories: Uncategorized

This is bull crap

March 20, 2008 flare183 Leave a comment

I am soooo bored.This is a dumb post

Anyway, I finally have  my own personal website/domain. The address for it is: http://flare183.org/

Ubuntu SHS is also on my website.

Categories: Blogroll, Uncategorized

Crazyness

March 8, 2008 flare183 Leave a comment

Now this is what you call crazyness:

Categories: Uncategorized

Finally!

December 4, 2007 flare183 Leave a comment

Finally!

I am finally a IRC operator. I may not be an IRC operator on #ubuntu but i am on #ubuntu-us-sc!

Yeah Finally.

Thanks XQ!

Categories: Uncategorized

U3 on a Non-U3 Flash Drive

November 15, 2007 flare183 Leave a comment

I have all the files from the U3 CDROM Partition. They are attached. The thing I need to know is how to create a CDROM partition on a flash drive. I know there is a way but how is unknown to me. I have only one idea and that is to repartition the flash drive and create a cdfs partition on the flash drive.

http://www.mediafire.com/?anzdt5jtlz0

Categories: Uncategorized Tags: , , , ,

compizconfig-settings-manager problem

November 12, 2007 flare183 Leave a comment

My compizconfig-settings-manager program is so messed up. The icons for the pictures in the window are missing and they were their. I have reinstalled it removed it and then installed it again. And I have even went and looked for the icons myself, which I found in the spot they are supposed to be in. Is there any way to fix this?

Categories: Uncategorized

Super Mario RPG; I’m Invinicable!

September 2, 2007 flare183 Leave a comment

I’m Invinicable

Categories: Uncategorized

Linux Not Scared

August 24, 2007 flare183 Leave a comment

Kill

Categories: Uncategorized

lesson4

March 14, 2006 flare183 Leave a comment

1.select first_name,last_name,zip
from F_CUSTOMERS
where length(zip)<10

2.

3.select id,first_name,last_name,nvl2(auth_expense_amt,’auth_expense_amt’,'Not Approved’)from d_partners

4.i think it cant use nvl,so i change it to nvl2
SELECT first_name,last_name,NVL2(overtime_rate,’no overtime’,'overtime_rate’) As “Payrate”
FROM f_staffs

5.select first_name,last_name,birthdate,to_char(birthdate,’Month,RRRR’)as “SEND CARD”
from f_staffs

6.a.F b.F c.T d.T e.F f.F g.T

7.select first_name,last_name,NVL2(‘HIRE_DATE’,'ONE WEEK VACATION’)AS “WORK YEAR”
FROM EMPLOYEES
WHERE MONTHS_BETWEEN(SYSDATE,HIRE_DATE)>120

Categories: Uncategorized

lesson2

March 13, 2006 flare183 Leave a comment

1.select name,start_date,end_date,nvl(‘end in two weeks’,'end_date’)
from f_promotional_menus

2.select last_name,NVL(overtime_rate,0) as
“Overtime Status” from f_staffs

3.select last_name,overtime_rate,nvl2(overtime_rate,overtime_rate,5)from f_staffs

4.select last_name
from f_staffs
where manager_id=19

5.”d”

6.NAME
Doe
Miller
Tuttle

7.part1. select first_name,last_name,to_char(hire_date)
from employees
part2.select first_name,last_name,nullif(to_char(hire_date),to_char(hire_date))
from employees
where hire_date=’21-sep-89′;

8.select first_name,specialty,nvl(specialty,’No Specialty’)from d_partners

9.select last_name,substr(phone,3,6)from d_clients

Categories: Uncategorized