Skip to main content

Posts

2 Amazing Masters Apps

My U-verse Masters App/Channel is truly unreal: http://uverseonline.att.net/sports/golf/masters-u-verse My Masters App on iPad is smooth as silk... http://itunes.apple.com/us/app/official-masters-tournament/id509307767?ls=1&mt=8 Bring on the return of Tiger in 2012!

Rock Chalk Baby

KU is in the Final Four this weekend and iGoogle sports gadget proves it!  A nice screenshot of the finality of NCAA hoops :)

U-Verse–Do I really need my bill displayed as a video?

Perhaps we could ditch the ‘video bill’ and lower my rates with the savings?

Google Play (Music) Keyboard Shortcuts

Space bar : play or pause music. Right/left arrows : next/previous songs. Shift+ right/left arrows : seek forward and backward S In the current song. /  :  search box Delete : delete track. p : create a new playlist. i -:make an instant mix from the current song. = : Increase the player volume. - : Decrease the player volume. Alt+= : thumbs up. Alt+- : thumbs down. s : Toggle shuffle on or off. r : Toggle repeat between off, all, and one. e : Edits the currently selected songs.

Truncate SQL Command and AutoNumber

Note for myself... TRUNCATE TABLE (Transact-SQL) SQL Server 2008 R2 If a table contains an identity column, the counter for that column is RESET to the seed value defined for the column. If no seed was defined, the default value 1 is used. To retain the identity counter (AutoNumber), use DELETE instead of TRUNCATE.