Hannah Montana – Hoedown Thowdown Lyrics & Dance

Boom clap, boom de clap de clap
Boom boom clap, boom de clap de clap
Boom boom clap, boom de clap de clap
Boom boom clap, boom de clap de clap
Try it with me, here we go

Boom boom clap, boom de clap de clap
(Whoa oh oh)
(That’s right!)
Boom boom clap, boom de clap de clap
(Whoa oh oh)
Boom boom clap, boom de clap de clap
Boom boom clap, boom de clap de clap

1, 2, 3!
Everybody come on, off your seats
I’m gonna tell you about a beat
That’s gonna make you move your feet

I’ll give the BBQ
Show and tell you how to move
If you’re 5 or 82
This is something you can do

Pop it, lock it, polka dot it
Country fivin’, hip hop hip
Put your arms in the sky, move side to side
Jump to the left, stick it, glide

Zig zag ‘cross the floor
Shuffle in diagonal
When the drum hits hands on your hips
One-footed 180 twist

And then a zig zag, step, slide
Lean in left, clap three times
Shake it out, head to toe

Throw it all together, that’s how we roll
Do the hoedown
(Throwdown!)
Do the hoedown
(Throwdown!)
Do the hoedown
(Throwdown!)
Throw it all together, that’s how we roll

We get to four, five, six
And you’re feelin’ busted
But it’s not time to quit
Practice makes you perfect

Pop it, lock it, polka dot it
Country fivin’, hip hop hip
Put your arms in the sky, move side to side
Jump to the left, stick it, glide

Zig zag ‘cross the floor
Shuffle in diagonal
When the drum hits hands on your hips
One-footed 180 twist

And then a zig zag, step, slide
Lean in left, clap three times
Shake it out, head to toe
Throw it all together, that’s how we roll

Do the hoedown
(Throwdown!)
Do the hoedown
(Throwdown!)
Do the hoedown
(Throwdown!)
Throw it all together, that’s how we roll

Boom de clap de clap, boom boom clap
Come on, here we go!
Boom boom clap, boom de clap de clap
Boom boom clap, boom de clap

Pop it, lock it, polka dot it
Country fivin’, hip hop hip
Put your arms in the sky, move side to side
Jump to the left, stick it, glide

Zig zag ‘cross the floor
Shuffle in diagonal
When the drum hits hands on your hips
One-footed 180 twist

And then a zig zag, step, slide
Lean in left, clap three times
Shake it out, head to toe
Throw it all together, that’s how we roll

Do the hoedown
(Throwdown!)
Do the hoedown
(Throwdown!)
Do the hoedown
(Throwdown!)
Throw it all together, that’s how we roll

Do the hoedown
(Throwdown!)
Do the hoedown
(Throwdown!)
Do the hoedown
(Throwdown!)
Throw it all together, that’s how we roll

Boom dap clap, b-boom de clap clap clap
Boom dap clap, b-boom de clap clap
Boom de clap, boom de clap de clap
Throw it all together, that’s how we roll

And as for the dance, heres the HOWTO/Video

hacking tweetwall voting with wget and shell scripting

#!/bin/bash
# copious amount of useless comments 3 pages longer than the code should always be at the top of any shell script
# This is so you can run screen and vote for some person lots without looking like some automated voting system
# Feel free to use this, but please keep my name/website etc on it (need the fame ya know)
# I'm not gonna walk you through it, if you dont understand it then dont use it
# Yes im sure you could do better!
# Don't forget to edit it
# Written by Liz Quilty http://velofille.com

RAND=`dd if=/dev/urandom count=1 2> /dev/null | cksum | cut -f1 -d" " |cut -c1-4`
if [ $RAND -lt 1200 ]; then RAND_SLEEP=$(($RAND+200)) ; else RAND_SLEEP=$RAND;fi

while [ 1 ] ; do
# the below line wgets the link the 12345 is the users number and the 45 is country number (view web page for these) - Edit this line to reflect user/url
wget --referer=http://tweeterwall.mallplace.com/tw/new-zealand/top-something-url -U Mozilla http://tweeterwall.mallplace.com/tw/vote/12345/45
sleep $RAND_SLEEP # sleep for random time before voting again
done