My boss getting his Hitler on…
Category: Uncategorized
Funny Videos by The Lonely Island
Watching videos from “The Lonely Island”, a small group of music video makers, has entertained me for quite some time.‚ The Lonely Island videos are usually pretty funny and have witty satire in them.‚ Check out the following Lonely Island funny video titled “It’s a Hit”.
The “After Hours” funny video by the Lonely Island is another good one.… read more “Funny Videos by The Lonely Island”
Average Big 3 Automanufacturer Worker Earns $70/ hour
Want to know where your hard-earned tax dollars are going to go with the bailout of the Big 3 automobile manufacturers in Detroit?‚ Right into the pockets of corrupt management and union employees.‚ The auto manufacturers and auto unions have very powerful lobbyists who have convinced Congress to stick it’s hand in your wallet and give your cash to the criminals in Detroit.… read more “Average Big 3 Automanufacturer Worker Earns $70/ hour”
Detroit Big 3 Automakers Demotivational Poster
Funny Jizz in My Pants Video
The Black Rooster sent me this funny “Jizz in my Pants” video recently and I thought I would share it’s classy joys with you, my classy readership.
How Not to Express Condolences
Bailout Debt Crushes U.S. Taxpayers
I found this interesting bit on ESPN.com’s TMQ column about the bailout debt and how it is rapidly skyrocketing.‚ TMQ summarizes some other news sources findings about what has been occurring with the money given to all these corporations by our government.
” On Nov. 24, the Washington Post calculated the total cost of the bailout-a-rama may rise to $2.8 trillion, though the figure includes guarantees for loans that may end up being repaid, thus reducing the final tab.… read more “Bailout Debt Crushes U.S. Taxpayers”
Commercial Loans Source
Visit my commercial loans website if you have not yet had an opportunity to do so.
MIT Courses Online
If you read my blog and never take away anything but this, I will be happy that my efforts have not gone to waste:
Use the MIT Open Courses.‚ http://ocw.mit.edu/OcwWeb/web/courses/courses/index.htm
MIT (one of the most prestigious universities in the world) has made their entire course selection available to read and work through online.‚ I personally am using it to refresh and grow my business knowledge, using their Sloan School of Management courses.… read more “MIT Courses Online”
How to Insert Data into a Table In SQL Server Management Studio
To insert data into a table in SQL Server Management Studio, you can use the following sample insert code.‚ I have included my notes on how the functions work using comments prefaced by — in the SQL.
–I have created a simple table for us to work with below:
create table Calendar
(
dateid int NOT NULL Primary Key identity(1,1),
month int NOT NULL constraint CK_zeroTOtwelve Check(month > 0 AND 12 > month),
date int NOT NULL constraint CK_zeroTOthirty Check(date > 0 AND 31 > DATE),
hour int NOT NULL constraint CK_zeroTOtwentyfour Check(hour > 0 and 25 > hour)
)
–The actual code for inserting data into the Calendar table we created above is as follow:
insert into calendar
(month, date, hour) –state which columns are going to be inserted into.‚ … read more “How to Insert Data into a Table In SQL Server Management Studio”