Thursday, September 6, 2018

File Sharing Windows 10


Setelah kebingungan pake Windows 10 kok gak bisa-bisa dibuat file sharing.  Akhirnya, menemukan cara file sharing windows 10, biar bisa kehubung dengan komputer lain.

Coba:
1. Masuk control panel > Network and Sharing Center
2. Pilih Change advanced sharing setting
3. Pilih yang Private. Turn On kan semua dan Allow Homegroup nya...

Kalo masih tetep gak bisa. Coba masuk regedit
1. Regedit > HKEY_LOCAL_MACHINE > SYSTEM > CurrentControlSet > Services > LanmanWorkstation > Parameters

2. Cari AllowInsecureGuestAuth. Ganti value nya = 0
3. Kalo gak ada ya create new. Gitu aja kok repot
4. Habis itu, seperti biasa, restart komputer

Kalo tetep ndak bisa. Wadoh... ilmuku hanya sampai disini...






Wednesday, April 1, 2015

Export PHP To Excel With PHPExcel II (Font)

Sikarang kita bikin export PHP ke Excel lagi. Bedanyo dari sebelumnya (export PHP Excel sederhana) adalah menambah style font nya. Yuk, buat filenya, sekarang namanya excelb.php. Nanti yang file yang dibuat excelb.xls.

Sama seperti sebelumnya. Tulis kode seperti ini di excelb.php:

error_reporting(E_ALL);
ini_set('include_path', ini_get('include_path').';PHPExcel/');
include 'PHPExcel.php';
include 'PHPExcel/Writer/Excel2007.php';
$objPHPExcel = new PHPExcel();
$fonta= new PHPExcel_Style_Font();
$fonta->setName('Arial');
$fonta->setSize(12);
$objPHPExcel->getProperties()->setCreator("Creator");
$objPHPExcel->getProperties()->setLastModifiedBy("Modificator");
$objPHPExcel->getProperties()->setTitle("Title");
$objPHPExcel->getProperties()->setSubject("Subject");
$objPHPExcel->getProperties()->setDescription("Description");
$objPHPExcel->setActiveSheetIndex(0);
$sheet=$objPHPExcel->getActiveSheet();
$margin=$sheet->getPageMargins();
$mleft= 1.5/2.54;
$mright= 0.6/2.54;
$mtop= 4.5/2.54;
$mbottom= 1.9/2.54;
$margin->setTop($mtop);
$margin->setBottom($mbottom);
$margin->setLeft($mleft);
$margin->setRight($mright);
$objPHPExcel->getActiveSheet(0)->getPageSetup()->setOrientation(PHPExcel_Worksheet_PageSetup::ORIENTATION_PORTRAIT);
$objPHPExcel->getActiveSheet(0)->getPageSetup()->setPaperSize(PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4);
$objPHPExcel->getActiveSheet(0)->getPageSetup()->setFitToPage(true);
$objPHPExcel->getActiveSheet(0)->getPageSetup()->setFitToWidth(1);
$objPHPExcel->getActiveSheet(0)->getPageSetup()->setFitToHeight(0);
$objPHPExcel->getActiveSheet(0)->getColumnDimension('A')->setWidth(10);
$objPHPExcel->getActiveSheet(0)->getColumnDimension('B')->setWidth(35);
$objPHPExcel->getActiveSheet(0)->getColumnDimension('C')->setWidth(30);
$objPHPExcel->getActiveSheet(0)->getColumnDimension('D')->setWidth(20);
$objPHPExcel->getActiveSheet(0)->getColumnDimension('E')->setWidth(20);

Nah setelah itu bikin font style nya seperti ginian:

//Untuk mempertebal tulisan (Bold)
$objPHPExcel->getActiveSheet(0)->getStyle('A2')->getFont()->setBold(true);
//Untuk jenis tulisan dan ukurannya
$objPHPExcel->getActiveSheet(0)->getStyle('B3')->getFont()->setName('Tahoma')->setSize(14);
//Untuk warna tulisan
$objPHPExcel->getActiveSheet(0)->getStyle('C4')->getFont()->getColor()->setRGB('000099');
//Untuk ukuran tulisan dan nambah garis bawah (underline)
$objPHPExcel->getActiveSheet(0)->getStyle('D5')->getFont()->setSize(16)->setUnderline(true);
//Ini gabungan style semua
$objPHPExcel->getActiveSheet(0)->getStyle('E6')->getFont()->setName('Arial')->setSize(18)->setBold(true)->setUnderline(true)->getColor()->setRGB('999900');


Sikarang, tulis di setiap cell nya...

$objPHPExcel->getActiveSheet(0)->SetCellValue('A2', 'Convert');
$objPHPExcel->getActiveSheet(0)->SetCellValue('B3', 'PHP To');
$objPHPExcel->getActiveSheet(0)->SetCellValue('C4', 'Excel');
$objPHPExcel->getActiveSheet(0)->SetCellValue('D5', 'With');
$objPHPExcel->getActiveSheet(0)->SetCellValue('E6', 'PHPExcel');


Bisa juga dibalik. Nulis kode buat isi cell nya terlebih dahulu lalu kode untuk stylenya... Hasilnya sama aja.

Lha terus bikin kode untuk convert:

header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="ExcelB.xls"');
header('Cache-Control: max-age=0');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');  
$objWriter->save('php://output');
exit;

Gimpink bingitz kan... Sekian dulu, nanti nyambung lagi dengan yang laen... Makaciiii...

Monday, March 23, 2015

Export PHP To Excel With PHPExcel

Untuk mengubah ato mengconvert ato menyulap (hehehe) kode PHP ke MS Excel, banyak caranya. Salah satunya dan yang paling mudah dengan bantuan plugin PHPExcel. Sebelumnya download dulu file PHPExcel disini (https://phpexcel.codeplex.com/releases/view/119187). Setelah itu extract file tersebut.

Misalken, kita buat folder exc di htdocs. Taruh file PHPExcel.php dan folder PHPExcel. Dan kita buat file php nya: excel.php

Tulis kode di bawah ini (buat masukin/include/manggil class PHPExcel) di file excel.php:

error_reporting(E_ALL);ini_set('include_path', ini_get('include_path').';PHPExcel/'); 
include 'PHPExcel.php'; 
include 'PHPExcel/Writer/Excel2007.php';

Terusss, tulis lagi kode di bawah ini, untuk manggil class PHPExcel dan bikin font style globalnya:


$objPHPExcel = new PHPExcel(); 
$fonta= new PHPExcel_Style_Font();  
$fonta->setName('Arial');$fonta->setSize(12);  
//yang bikin dokumen ini 
$objPHPExcel->getProperties()->setCreator("Creator"); 
//yang ngubah paling terakhir 
$objPHPExcel->getProperties()->setLastModifiedBy("Modificator"); 
//judul 
$objPHPExcel->getProperties()->setTitle("Title"); 
//subjeknyo 
$objPHPExcel->getProperties()->setSubject("Subject"); 
//deskripsi 
$objPHPExcel->getProperties()->setDescription("Description");

Sekarang, bikin nomer sheet nya (jadi bisa bikin beberapa sheet). Misalnyo sheet 0. Dan atur page setupnya:

$objPHPExcel->setActiveSheetIndex(0); 
$sheet=$objPHPExcel->getActiveSheet(); 
$margin=$sheet->getPageMargins(); 
$mleft= 1.5/2.54; 
$mright= 0.6/2.54; 
$mtop= 4.5/2.54; 
$mbottom= 1.9/2.54; 
$margin->setTop($mtop);  
$margin->setBottom($mbottom); 
$margin->setLeft($mleft); 
$margin->setRight($mright);

Atur page setupnya kalo kepengen lebih lengkap. Contohnye halaman itu landscape ato potrait dll:

$objPHPExcel->getActiveSheet(0)->getPageSetup()->setOrientation(PHPExcel_Worksheet_PageSetup::ORIENTATION_PORTRAIT); 
$objPHPExcel->getActiveSheet(0)->getPageSetup()->setPaperSize(PHPExcel_Worksheet_PageSetup::PAPERSIZE_A4); 
$objPHPExcel->getActiveSheet(0)->getPageSetup()->setFitToPage(true); 
$objPHPExcel->getActiveSheet(0)->getPageSetup()->setFitToWidth(1); 
$objPHPExcel->getActiveSheet(0)->getPageSetup()->setFitToHeight(0);

Atur lebarnya column. Misalken column A lebarnya 10 px, dst:

$objPHPExcel->getActiveSheet(0)->getColumnDimension('A')->setWidth(10); 
$objPHPExcel->getActiveSheet(0)->getColumnDimension('B')->setWidth(35); 
$objPHPExcel->getActiveSheet(0)->getColumnDimension('C')->setWidth(30); 
$objPHPExcel->getActiveSheet(0)->getColumnDimension('D')->setWidth(20); 
$objPHPExcel->getActiveSheet(0)->getColumnDimension('E')->setWidth(20);

Tulis susuatu di column A:
$objPHPExcel->getActiveSheet(0)->SetCellValue('A2', 'Percobaan');
Lanjutkan!!! Ke column berikutnya:
$objPHPExcel->getActiveSheet(0)->SetCellValue('B3', 'PHP To'); 
$objPHPExcel->getActiveSheet(0)->SetCellValue('C4', 'Excel'); 
$objPHPExcel->getActiveSheet(0)->SetCellValue('D5', 'Dengan'); 
$objPHPExcel->getActiveSheet(0)->SetCellValue('E6', 'PHPExcel');


Setelah itu semua, mari kita bikin agar saat kita manggil localhost/exc/excel.php agar langsung dapet file download Excel.xls:

header('Content-Type: application/vnd.ms-excel'); 
header('Content-Disposition: attachment;filename="Excel.xls"'); 
header('Cache-Control: max-age=0');   
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); 
$objWriter->save('php://output'); 
exit;




Wednesday, March 18, 2015

Sugar - Maroon 5

I'm hurting, baby, I'm broken down
I need your loving, loving
I need it now
When I'm without you
I'm something weak
You got me begging, begging
I'm on my knees

I don't wanna be needing your love
I just wanna be deep in your love
And it's killing me when you're away, ooh, baby,
Cause I really don't care where you are
I just wanna be there where you are
And I gotta get one little taste

Sugar
Yes, please
Won't you come and put it down on me
I'm right here, 'cause I need
Little love and little sympathy
Yeah, you show me good loving
Make it alright
Need a little sweetness in my life
Sugar
Yes, please
Won't you come and put it down on me

My broken pieces
You pick them up
Don't leave me hanging, hanging
Come give me some
When I'm without ya
I'm so insecure
You are the one thing, one thing
I'm living for

I don't wanna be needing your love
I just wanna be deep in your love
And it's killing me when you're away, ooh, baby,
Cause I really don't care where you are
I just wanna be there where you are
And I gotta get one little taste

Sugar
Yes, please
Won't you come and put it down on me
I'm right here
Cause I need
Little love and little sympathy
Yeah, you show me good loving
Make it alright
Need a little sweetness in my life
Sugar! (Sugar!)
Yes, please (Yes, please)
Won't you come and put it down on me

Yeah
I want that red velvet
I want that sugar sweet
Don't let nobody touch it
Unless that somebody's me
I gotta be a man
There ain't no other way
Cause girl you're hotter than a southern California day

I don't wanna play no games
I don't gotta be afraid
Don't give me all that shy shit
No make-up on
That's my

Sugar
Yes, please
Won't you come and put it down on me (down on me!)
I'm right here (right here), 'cause I need ('cause I need)
Little love and little sympathy
So, baby, you show me good loving
Make it alright
Need a little sweetness in my life
Sugar! (Sugar!)
Yes, please (Yes, please)
Won't you come and put it down on me

Sugar
Yes, please
Won't you come and put it down on me
I'm right here, cause I need
Little love and little sympathy
Yeah, you show me good loving
Make it alright
Need a little sweetness in my life
Sugar
Yes, please
Won't you come and put it down on me

Blank Space - Taylor Swift

Nice to meet you, where you been
I could show you incredible things
Magic, madness, heaven, sin
Saw you there and I thought
Oh my God, look at that face
You look like my next mistake
Love's a game, wanna play

New money, suit and tie
I can read you like a magazine
Ain't it funny, rumors fly
And I know you heard about me
So hey, let's be friends
I'm dying to see how this one ends
Grab your passport and my hand
I can make the bad guys good for a weekend

So it's gonna be forever
Or it's gonna go down in flames
You can tell me when it's over
If the high was worth the pain
Got a long list of ex-lovers
They'll tell you I'm insane
'Cause you know I love the players
And you love the game

Cause we're young and we're reckless
We'll take this way too far
It'll leave you breathless
Or with a nasty scar
Got a long list of ex-lovers
They'll tell you I'm insane
But I've got a blank space, baby
And I'll write your name

Cherry lips, crystal skies
I could show you incredible things
Stolen kisses, pretty lies
You're the King, baby, I'm your Queen
Find out what you want
Be that girl for a month
Wait, the worst is yet to come, oh no

Screaming, crying, perfect storms
I can make all the tables turn
Rose garden filled with thorns
Keep you second guessing like
Oh my God, who is she
I get drunk on jealousy
But you'll come back each time you leave
Cause, darling, I'm a nightmare dressed like a daydream

So it's gonna be forever
Or it's gonna go down in flames
You can tell me when it's over
If the high was worth the pain
Got a long list of ex-lovers
They'll tell you I'm insane
'Cause you know I love the players
And you love the game

Cause we're young and we're reckless
We'll take this way too far
It'll leave you breathless
Or with a nasty scar
Got a long list of ex-lovers
They'll tell you I'm insane
But I've got a blank space, baby
And I'll write your name

Boys only want love if it's torture
Don't say I didn't say, I didn't warn ya
Boys only want love if it's torture
Don't say I didn't say, I didn't warn ya

So it's gonna be forever
Or it's gonna go down in flames
You can tell me when it's over
If the high was worth the pain
Got a long list of ex-lovers
They'll tell you I'm insane
'Cause you know I love the players
And you love the game

Cause we're young and we're reckless
We'll take this way too far
It'll leave you breathless
Or with a nasty scar
Got a long list of ex-lovers
They'll tell you I'm insane
But I've got a blank space, baby
And I'll write your name

Thursday, October 30, 2014

Perang Bedak



Perang bedak sama dedek sama googy...

Begitulah kalo sama anak kalo di rumah berdua.... Hehehehe


Monday, February 10, 2014

Chart February 10, 2014


Pop Songs

1. Timber - Pitbull Feat. Ke$ha
2. Counting Stars - OneRepublic
3. Dark Horse - Katy Perry Feat. Juicy J
4. Burn - Ellie Goulding
5. Story Of My Life - One Direction
6. The Monster - Eminem Feat. Rihanna
7. Team - Lorde
8. Let Her Go - Passenger
9. Say Something - A Great Big World & Christina Aguilera
10. Stay The Night - Zedd Feat. Hayley Williams


Rock Songs

1. Let Her Go - Passenger
2. Royals - Lorde
3. Team - Lorde
4. Pompeii - Bastille
5. Radioactive - Imagine Dragons
6. Demons - Imagine Dragons
7. Sweater Weather - The Neighbourhood
8. Best Day Of My Life - American Authors
9. Safe And Sound - Capital Cities
10. Sail - AWOLNATION


Country Songs

1. Drink A Beer - Luke Bryan
2. Whatever She's Got - David Nail
3. Chillin' It - Cole Swindell
4. Invisible - Hunter Hayes
5. When She Says Baby - Jason Aldean
6. Friday Night - Eric Paslay
7. Compass - Lady Antebellum
8. Stay - Florida Georgia Line
9. Bottoms Up - Brantley Gilbert
10. Follow Your Arrow - Kacey Musgraves


HOT 10

1. Dark Horse - Katy Perry Feat. Juicy J
2. Drunk In Love - Beyonce Feat. Jay Z
3. Timber - Pitbull Feat. Ke$ha
4. Talk Dirty - Jason Derulo Feat. 2 Chainz
5. Counting Stars - OneRepublic
6. Let Her Go - Passenger
7. Say Something - A Great Big World & Christina Aguilera
8. Happy - Pharrell Williams
9. Royals - Lorde
10. Team - Lorde

Friday, February 7, 2014

My Junior Programmer



My Junior Programmer.... Huaaa sekarang suka liatin lagu-lagu anak. Kalo sambil maem habis banyak. Tapi kalo maem aja. Takut keranjingan. Hehehe... Ayahab....

Monday, February 3, 2014

Chart February 03, 2014


Pop Song

1. Timber - Pitbull Feat. Ke$ha
2. Counting Stars - OneRepublic
3. The Monster - Eminem Feat. Rihanna
4. Burn - Ellie Goulding
5. Dark Horse - Katy Perry Feat. Juicy J
6. Story Of My Life - One Direction
7. Stay The Night - Zedd Feat. Hayley Williams
8. Let Her Go - Passenger
9. Do What U Want - Lady Gaga Feat. R. Kelly
10. Team - Lorde


Rock Song

1. Let Her Go - Passenger
2. Team - Lorde
3. Royals - Lorde
4. Pompeii - Bastille
5. Demons - Imagine Dragons
6. Sweater Weather - The Neighbourhood
7. Radioactive - Imagine Dragons
8. Best Day Of My Life - American Authors
9. Safe And Sound - Capital Cities
10. Sail - AWOLNATION


Country Song

1. Drink A Beer - Luke Bryan
2. Whatever She's Got - David Nail
3. Chillin' It - Cole Swindell
4. When She Says Baby - Jason Aldean
5. Stay - Florida Georgia Line
6. Friday Night - Eric Paslay
7. Compass - Lady Antebellum
8. Rewind - Rascal Flatts
9. Bottoms Up - Brantley Gilbert
10. Wasting All These Tears - Cassadee Pope


HOT 10

1. Dark Horse - Katy Perry Feat. Juicy J
2. Timber - Pitbull Feat. Ke$ha
3. Counting Stars - OneRepublic
4. Say Something - A Great Big World & Christina Aguilera
5. The Monster - Eminem Feat. Rihanna
6. Talk Dirty - Jason Derulo Feat. 2 Chainz
7. Let Her Go - Passenger
8. Team - Lorde
9. Royals - Lorde
10. Pompeii - Bastille

Tuesday, October 1, 2013

Don't You Remember - Adele

Don't You Remember - Adele


When will I see you again?
You left with no goodbye, not a single word was said
No final kiss to seal anything
I had no idea of the state we were in

I know I have a fickle heart and bitterness
And wandering eye and heaviness in my head

But don't you remember? Don't you remember?
The reason you loved me before
Baby, please remember me once more

When was the last time you thought of me?
Or have you completely erased me from your memory?
I often think about where I went wrong
the more I do, the less I know

But I know I have a fickle heart and a bitterness
And a wandering eye and a heaviness in my head

But don't you remember? Don't you remember?
The reason you loved me before
Baby, please remember me once more

I gave you the space so you could breathe
I kept my distance so you would be free
And hope that you find the missing piece
To bring you back to me

Why don't you remember? Don't you remember?
The reason you loved me before
Baby, please remember me once more

When will I see you again?

Monday, September 30, 2013

Chart September 30, 2013

Chart September 30, 2013

POP
  1. Roar - Katty Perry
  2. Safe And Sound - Capital Cities
  3. Summertime Sadness - Lana Del Rey & Cedric Gervais
  4. Wake Me Up! - Avicii
  5. Royals - Lorde
  6. Same Love - Macklemore & Ryan Lewis Feat. Mary
  7. Blurred Lines - Robin Thicke Feat. T.I. + Pharrell
  8. Holy Grail - Jay Z Feat. Justin Timberlake
  9. Clarity - Zedd Feat. Foxes
  10. I Need Your Love - Calvin Harris Feat. Ellie Goulding

ROCK
  1. Royals - Lorde
  2. Safe And Sound - Capital Cities
  3. Radioactive - Imagine Dragons
  4. Sail - AWOLNATION
  5. Gone, Gone, Gone - Phillip Phillips
  6. Still Into You - Paramore
  7. Let Her Go - Passenger
  8. Demons - Imagine Dragons
  9. Sweater Weather - The Neighbourhood
  10. Ho Hey - The Lumineers

COUNTRY
  1. That's My Kind Of Night - Luke Bryan
  2. Redneck Crazy - Tyler Farr
  3. Night Train - Jason Aldean
  4. It Goes Like This - Thomas Rhett
  5. Hey Girl - Billy Currington
  6. Cruise - Florida Georgia Line
  7. Round Here - Florida Georgia Line
  8. Mine Would Be You - Blake Shelton
  9. Aw Naw - Chris Young
  10. Point At You - Justin Moore

HOT 100
  1. Wrecking Ball - Miley Cyrus
  2. Roar - Katy Perry
  3. Royals - Lorde
  4. Wake Me Up! - Avicii
  5. Blurred Lines - Robin Thicke Feat. T.I. + Pharrell
  6. Holy Grail - Jay Z Feat. Justin Timberlake
  7. Hold On, We're Going Home - Drake Feat. Majid Jordan
  8. Applause - Lady Gaga
  9. Summertime Sadness - Lana Del Rey & Cedric Gervais
  10. Safe And Sound - Capital Cities

Monday, September 2, 2013

Chart 2013/09/02



POP

1. Blurred Lines - Robin Thicke Feat. T.I. + Pharrell
2. Love Somebody - Maroon 5
3. Clarity - Zedd Feat. Foxes
4. Radioactive - Imagine Dragons
5. Safe And Sound - Capital Cities
6. I Need Your Love - Calvin Harris Feat. Ellie Goulding
7. Same Love - Macklemore & Ryan Lewis Feat. Mary
8. Cups (Pitch Perfect's When I'm Gone) - Anna Kendrick
9. We Can't Stop - Miley Cyrus
10.Treasure - Bruno Mars


ROCK

1. Radioactive - Imagine Dragons
2. Safe And Sound - Capital Cities
3. Royals - Lorde
4. Gone, Gone, Gone - Phillip Phillips
5. Sail - AWOLNATION
6. Still Into You - Paramore
7. My Songs Know What You Did In The Dark (Light Em Up) - Fall Out Boy
8. Ho Hey - The Lumineers
9. Demons - Imagine Dragons
10. Let Her Go - Passenger


COUNTRY

1. That's My Kind Of Night - Luke Bryan
2. Cruise - Florida Georgia Line
3. Round Here - Florida Georgia Line
4. Night Train - Jason Aldean
5. Don't Ya - Brett Eldredge
6. Little Bit Of Everything - Keith Urban
7. It Goes Like This - Thomas Rhett
8. See You Again - Carrie Underwood
9. Crash My Party - Luke Bryan
10. I Want Crazy - Hunter Hayes


HOT 100

1. Blurred Lines - Robin Thicke Feat. T.I. + Pharrell
2. Roar - Katy Perry
3. We Can't Stop - Miley Cyrus
4. Applause - Lady Gaga
5. Radioactive - Imagine Dragons
6. Holy Grail - Jay Z Feat. Justin Timberlake
7. Wake Me Up! - Avicii
8. Safe And Sound - Capital Cities
9. Summertime Sadness - Lana Del Rey & Cedric Gervais
10. Get Lucky - Daft Punk Feat. Pharrell Williams

Tuesday, April 23, 2013

E-tech Free Design: HTML Responsive






Download File HTML (Responsive): File HTML

Monday, April 15, 2013

E-tech Free Design






Download File: File PSD
 

Chart April 15, 2013

Pop Songs

1.    When I Was Your Man - Bruno Mars   
2.    Stay - Rihanna Feat. Mikky Ekko       
3.    Daylight - Maroon 5   
4.    Thrift Shop - Macklemore & Ryan Lewis Feat. Wanz   
5.    Suit & Tie - Justin Timberlake Feat. Jay Z   
6.    Sweet Nothing - Calvin Harris Feat. Florence Welch   
7.    Feel This Moment - Pitbull Feat. Christina Aguilera
8.    Just Give Me A Reason - P!nk Feat. Nate Ruess       
9.    I Knew You Were Trouble - Taylor Swift       
10.    Don't You Worry Child - Swedish House Mafia Feat. John Martin   



Rock Songs

1.    Radioactive - Imagine Dragons       
2.    Ho Hey - The Lumineers           
3.    Carry On - fun.       
4.    I Will Wait - Mumford & Sons   
5.    My Songs Know What You Did In The Dark (Light Em Up) - Fall Out Boy   
6.    It's Time - Imagine Dragons   
7.    Little Talks - Of Monster And Men   
8.    Sail - AWOLNATION   
9.    Madness - Muse
10.    Some Night - Fun


Country Songs

1.    Cruise - Florida Georgia Line       
2.    Wagon Wheel - Darius Rucker       
3.    Sure Be Cool If You Did - Blake Shelton           
4.    Mama's Broken Heart - Miranda Lambert   
5.    Downtown - Lady Antebellum       
6.    Get Your Shine On - Florida Georgia Line   
7.    Highway Don't Care - Tim McGraw With Taylor Swift   
8.    I Drive Your Truck - Lee Brice           
9.    If I Didn't Have You - Thompson Square        
10.    DONE - The Band Perry


HOT 10

1.    When I Was Your Man - Bruno Mars   
2.    Thrift Shop - Macklemore & Ryan Lewis Feat. Wanz   
3.    Just Give Me A Reason - P!nk Feat. Nate Ruess       
4.    Stay - Rihanna Feat. Mikky Ekko       
5.    Suit & Tie - Justin Timberlake Feat. Jay Z   
6.    Harlem Shake - Baauer       
7.    Can't Hold Us - Macklemore & Ryan Lewis Featuring Ray       
8.    Cruise - Florida Georgia Line       
9.    Started From The Bottom - Drake           
10.    Feel This Moment - Pitbull Feat. Christina Aguilera

Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | Best Web Hosting