library(readr)
## Warning: package 'readr' was built under R version 3.4.4
credit <- read.csv("creditData.csv")
sum(is.na(credit))
## [1] 0
credit$Creditability <- as.factor(credit$Creditability)
summary(credit)
## Creditability Account.Balance Duration.of.Credit..month.
## 0:300 Min. :1.000 Min. : 4.0
## 1:700 1st Qu.:1.000 1st Qu.:12.0
## Median :2.000 Median :18.0
## Mean :2.577 Mean :20.9
## 3rd Qu.:4.000 3rd Qu.:24.0
## Max. :4.000 Max. :72.0
## Payment.Status.of.Previous.Credit Purpose Credit.Amount
## Min. :0.000 Min. : 0.000 Min. : 250
## 1st Qu.:2.000 1st Qu.: 1.000 1st Qu.: 1366
## Median :2.000 Median : 2.000 Median : 2320
## Mean :2.545 Mean : 2.828 Mean : 3271
## 3rd Qu.:4.000 3rd Qu.: 3.000 3rd Qu.: 3972
## Max. :4.000 Max. :10.000 Max. :18424
## Value.Savings.Stocks Length.of.current.employment Instalment.per.cent
## Min. :1.000 Min. :1.000 Min. :1.000
## 1st Qu.:1.000 1st Qu.:3.000 1st Qu.:2.000
## Median :1.000 Median :3.000 Median :3.000
## Mean :2.105 Mean :3.384 Mean :2.973
## 3rd Qu.:3.000 3rd Qu.:5.000 3rd Qu.:4.000
## Max. :5.000 Max. :5.000 Max. :4.000
## Sex...Marital.Status Guarantors Duration.in.Current.address
## Min. :1.000 Min. :1.000 Min. :1.000
## 1st Qu.:2.000 1st Qu.:1.000 1st Qu.:2.000
## Median :3.000 Median :1.000 Median :3.000
## Mean :2.682 Mean :1.145 Mean :2.845
## 3rd Qu.:3.000 3rd Qu.:1.000 3rd Qu.:4.000
## Max. :4.000 Max. :3.000 Max. :4.000
## Most.valuable.available.asset Age..years. Concurrent.Credits
## Min. :1.000 Min. :19.00 Min. :1.000
## 1st Qu.:1.000 1st Qu.:27.00 1st Qu.:3.000
## Median :2.000 Median :33.00 Median :3.000
## Mean :2.358 Mean :35.54 Mean :2.675
## 3rd Qu.:3.000 3rd Qu.:42.00 3rd Qu.:3.000
## Max. :4.000 Max. :75.00 Max. :3.000
## Type.of.apartment No.of.Credits.at.this.Bank Occupation
## Min. :1.000 Min. :1.000 Min. :1.000
## 1st Qu.:2.000 1st Qu.:1.000 1st Qu.:3.000
## Median :2.000 Median :1.000 Median :3.000
## Mean :1.928 Mean :1.407 Mean :2.904
## 3rd Qu.:2.000 3rd Qu.:2.000 3rd Qu.:3.000
## Max. :3.000 Max. :4.000 Max. :4.000
## No.of.dependents Telephone Foreign.Worker
## Min. :1.000 Min. :1.000 Min. :1.000
## 1st Qu.:1.000 1st Qu.:1.000 1st Qu.:1.000
## Median :1.000 Median :1.000 Median :1.000
## Mean :1.155 Mean :1.404 Mean :1.037
## 3rd Qu.:1.000 3rd Qu.:2.000 3rd Qu.:1.000
## Max. :2.000 Max. :2.000 Max. :2.000
set.seed(12345)
credit_rand<- credit [order(runif(1000)),]
credit_train<- credit_rand[1:750,]
credit_test<- credit_rand[751:1000,]
prop.table(table(credit_train$Creditability))
##
## 0 1
## 0.3146667 0.6853333
prop.table(table(credit_test$Creditability))
##
## 0 1
## 0.256 0.744
credit
## Creditability Account.Balance Duration.of.Credit..month.
## 1 1 1 18
## 2 1 1 9
## 3 1 2 12
## 4 1 1 12
## 5 1 1 12
## 6 1 1 10
## 7 1 1 8
## 8 1 1 6
## 9 1 4 18
## 10 1 2 24
## 11 1 1 11
## 12 1 1 30
## 13 1 1 6
## 14 1 2 48
## 15 1 1 18
## 16 1 1 6
## 17 1 1 11
## 18 1 2 18
## 19 1 2 36
## 20 1 4 11
## 21 1 1 6
## 22 1 2 12
## 23 0 2 36
## 24 1 2 12
## 25 1 1 6
## 26 1 2 11
## 27 1 1 12
## 28 1 2 9
## 29 1 4 15
## 30 1 3 42
## 31 1 3 30
## 32 1 4 36
## 33 1 4 36
## 34 1 4 24
## 35 1 1 15
## 36 1 1 6
## 37 1 4 12
## 38 1 4 12
## 39 1 4 18
## 40 1 4 24
## 41 1 4 12
## 42 1 1 24
## 43 1 4 18
## 44 1 2 24
## 45 1 2 18
## 46 0 1 18
## 47 1 4 24
## 48 0 4 18
## 49 1 4 24
## 50 1 1 24
## 51 1 4 12
## 52 1 3 36
## 53 1 4 9
## 54 1 4 12
## 55 1 4 24
## 56 1 1 12
## 57 1 4 12
## 58 1 1 15
## 59 1 4 21
## 60 1 4 36
## 61 1 4 12
## 62 1 4 24
## 63 1 4 48
## 64 1 4 36
## 65 1 1 12
## 66 1 4 6
## 67 1 4 12
## 68 1 4 24
## 69 1 2 12
## 70 1 4 24
## 71 1 2 21
## 72 1 4 30
## 73 1 4 36
## 74 1 4 24
## 75 1 3 12
## 76 1 2 9
## 77 1 4 21
## 78 1 4 24
## 79 1 1 21
## 80 1 4 15
## 81 1 4 24
## 82 1 4 36
## 83 1 2 18
## 84 1 3 15
## 85 1 4 15
## 86 1 1 12
## 87 1 4 24
## 88 1 4 36
## 89 1 1 6
## 90 1 2 24
## 91 1 2 12
## 92 1 2 30
## 93 1 2 30
## 94 1 1 9
## 95 1 2 18
## 96 1 4 27
## 97 1 2 12
## 98 0 2 36
## 99 1 1 9
## 100 1 2 42
## 101 1 4 24
## 102 1 1 15
## 103 1 2 24
## 104 1 2 36
## 105 1 4 24
## 106 1 4 24
## 107 1 4 12
## 108 1 4 18
## 109 1 4 24
## 110 1 4 12
## 111 0 1 15
## 112 1 1 6
## 113 1 2 12
## 114 1 4 12
## 115 1 2 21
## 116 1 2 18
## 117 1 2 9
## 118 1 4 24
## 119 1 4 9
## 120 1 4 24
## 121 1 2 36
## 122 1 4 36
## 123 1 2 6
## 124 1 4 15
## 125 1 4 15
## 126 1 4 24
## 127 1 4 15
## 128 1 4 6
## 129 1 4 18
## 130 1 4 24
## 131 1 3 24
## 132 1 4 18
## 133 1 3 6
## 134 1 4 18
## 135 1 4 10
## 136 1 4 6
## 137 1 2 12
## 138 1 1 24
## 139 1 2 6
## 140 1 3 24
## 141 1 4 36
## 142 1 4 9
## 143 1 2 24
## 144 1 4 9
## 145 1 4 36
## 146 1 4 21
## 147 1 1 24
## 148 1 1 12
## 149 1 4 12
## 150 1 2 24
## 151 1 3 12
## 152 1 4 12
## 153 1 4 48
## 154 1 2 24
## 155 1 2 12
## 156 1 4 24
## 157 1 1 12
## 158 1 4 30
## 159 0 2 48
## 160 1 2 12
## 161 1 4 12
## 162 1 3 24
## 163 1 4 24
## 164 1 4 15
## 165 1 3 15
## 166 1 4 9
## 167 1 4 30
## 168 1 4 24
## 169 1 4 15
## 170 1 4 6
## 171 1 3 36
## 172 0 1 12
## 173 1 3 12
## 174 1 4 24
## 175 1 4 12
## 176 1 4 24
## 177 1 4 24
## 178 1 2 12
## 179 1 4 18
## 180 1 4 48
## 181 1 4 9
## 182 1 4 18
## 183 1 1 30
## 184 1 4 30
## 185 1 4 9
## 186 1 4 36
## 187 1 4 12
## 188 1 4 24
## 189 1 2 36
## 190 1 3 21
## 191 1 4 24
## 192 1 2 36
## 193 1 2 48
## 194 1 4 24
## 195 1 4 12
## 196 1 4 33
## 197 1 4 6
## 198 1 4 18
## 199 1 4 12
## 200 1 4 48
## 201 1 4 30
## 202 1 4 28
## 203 1 3 18
## 204 1 1 24
## 205 1 1 21
## 206 1 2 18
## 207 1 1 12
## 208 1 2 15
## 209 1 2 48
## 210 1 4 9
## 211 1 3 4
## 212 1 1 24
## 213 1 1 24
## 214 1 3 6
## 215 1 2 9
## 216 1 3 10
## 217 1 4 10
## 218 1 3 6
## 219 1 1 47
## 220 1 4 10
## 221 1 1 18
## 222 1 3 30
## 223 1 4 24
## 224 1 4 27
## 225 1 1 18
## 226 1 4 24
## 227 1 1 18
## 228 1 4 14
## 229 1 4 21
## 230 1 2 48
## 231 1 4 24
## 232 1 4 6
## 233 1 4 39
## 234 1 1 30
## 235 0 2 12
## 236 1 1 24
## 237 1 4 21
## 238 1 1 24
## 239 1 4 4
## 240 1 4 39
## 241 1 4 15
## 242 1 4 60
## 243 1 4 18
## 244 1 4 18
## 245 1 4 6
## 246 1 4 24
## 247 1 4 18
## 248 1 4 24
## 249 1 2 15
## 250 1 4 21
## 251 1 2 18
## 252 1 2 18
## 253 1 4 12
## 254 1 4 36
## 255 1 4 36
## 256 1 3 15
## 257 1 1 15
## 258 1 4 10
## 259 1 1 10
## 260 1 4 5
## 261 1 4 15
## 262 1 4 11
## 263 1 3 10
## 264 1 4 9
## 265 1 4 12
## 266 1 4 22
## 267 1 2 9
## 268 1 4 36
## 269 1 4 12
## 270 1 4 15
## 271 1 4 6
## 272 1 4 36
## 273 1 4 6
## 274 1 4 24
## 275 1 4 24
## 276 1 4 12
## 277 1 4 15
## 278 1 2 21
## 279 1 1 24
## 280 1 3 9
## 281 1 3 6
## 282 1 3 12
## 283 1 4 12
## 284 1 2 21
## 285 1 1 21
## 286 1 4 6
## 287 1 1 6
## 288 1 4 9
## 289 1 4 9
## 290 1 4 15
## 291 1 4 12
## 292 1 4 15
## 293 1 4 6
## 294 1 2 6
## 295 1 4 15
## 296 1 4 36
## 297 1 4 9
## 298 1 4 6
## 299 1 2 12
## 300 1 4 18
## 301 1 1 12
## 302 1 3 24
## 303 1 3 24
## 304 1 4 9
## 305 0 3 9
## 306 1 4 24
## 307 1 1 6
## 308 1 4 6
## 309 1 1 21
## 310 1 4 54
## 311 1 4 12
## 312 1 4 48
## 313 1 4 6
## 314 1 2 24
## 315 1 1 6
## 316 1 4 15
## 317 1 4 24
## 318 1 3 12
## 319 1 4 15
## 320 1 4 6
## 321 1 4 10
## 322 1 4 12
## 323 1 4 11
## 324 1 1 10
## 325 1 4 10
## 326 1 4 24
## 327 1 4 10
## 328 1 3 6
## 329 1 4 18
## 330 1 4 18
## 331 1 4 24
## 332 1 4 18
## 333 1 4 6
## 334 1 4 22
## 335 1 4 24
## 336 1 1 24
## 337 1 1 9
## 338 1 1 10
## 339 1 4 10
## 340 1 4 12
## 341 1 4 30
## 342 1 1 24
## 343 1 4 18
## 344 1 4 9
## 345 1 4 12
## 346 1 4 10
## 347 1 4 10
## 348 1 3 10
## 349 1 1 12
## 350 1 4 12
## 351 1 4 10
## 352 1 4 24
## 353 1 4 48
## 354 0 1 12
## 355 1 4 6
## 356 1 4 36
## 357 1 1 24
## 358 1 4 10
## 359 1 3 18
## 360 1 4 15
## 361 1 4 12
## 362 1 1 12
## 363 1 4 6
## 364 1 4 9
## 365 1 4 12
## 366 1 4 12
## 367 1 3 24
## 368 1 2 12
## 369 1 1 15
## 370 1 1 24
## 371 1 1 24
## 372 1 4 24
## 373 1 2 24
## 374 1 1 6
## 375 1 4 21
## 376 1 1 27
## 377 0 1 12
## 378 1 2 27
## 379 1 2 15
## 380 1 4 30
## 381 1 1 18
## 382 1 1 21
## 383 1 4 60
## 384 1 2 9
## 385 1 4 42
## 386 1 2 9
## 387 0 2 9
## 388 1 4 24
## 389 1 3 10
## 390 1 1 24
## 391 1 4 15
## 392 1 3 12
## 393 1 3 6
## 394 1 4 15
## 395 1 4 24
## 396 1 2 9
## 397 1 2 24
## 398 1 4 12
## 399 1 4 12
## 400 1 2 12
## 401 1 2 27
## 402 1 2 12
## 403 1 1 6
## 404 1 4 24
## 405 1 4 18
## 406 1 2 48
## 407 1 4 15
## 408 1 2 9
## 409 1 2 18
## 410 1 4 42
## 411 1 4 13
## 412 1 4 24
## 413 1 4 12
## 414 1 4 24
## 415 1 4 12
## 416 1 4 28
## 417 1 4 11
## 418 1 4 24
## 419 1 4 18
## 420 1 1 15
## 421 1 4 12
## 422 1 2 11
## 423 1 2 16
## 424 1 4 12
## 425 1 4 15
## 426 1 4 12
## 427 1 2 39
## 428 0 2 9
## 429 1 1 12
## 430 1 2 9
## 431 1 4 30
## 432 0 4 12
## 433 1 2 15
## 434 1 2 18
## 435 1 4 12
## 436 1 4 7
## 437 1 4 15
## 438 1 4 6
## 439 1 1 27
## 440 1 2 18
## 441 1 4 21
## 442 1 4 27
## 443 1 1 39
## 444 1 4 15
## 445 1 4 12
## 446 1 4 12
## 447 1 4 6
## 448 1 4 12
## 449 1 4 36
## 450 1 2 9
## 451 0 2 12
## 452 1 1 20
## 453 1 2 10
## 454 1 2 24
## 455 1 1 14
## 456 1 2 60
## 457 1 2 20
## 458 1 2 18
## 459 1 2 24
## 460 1 4 12
## 461 1 2 20
## 462 1 2 18
## 463 1 4 15
## 464 0 1 28
## 465 1 2 12
## 466 1 3 12
## 467 1 2 12
## 468 1 4 15
## 469 1 2 36
## 470 1 4 12
## 471 1 4 18
## 472 1 4 24
## 473 1 4 36
## 474 1 4 15
## 475 1 3 36
## 476 1 4 24
## 477 1 4 18
## 478 1 4 24
## 479 1 4 12
## 480 1 2 18
## 481 1 4 27
## 482 1 2 18
## 483 1 4 24
## 484 1 4 12
## 485 1 4 12
## 486 1 4 12
## 487 1 4 18
## 488 1 2 18
## 489 1 4 12
## 490 1 4 12
## 491 1 4 18
## 492 1 4 12
## 493 1 1 18
## 494 1 4 24
## 495 1 1 12
## 496 1 4 24
## 497 1 4 6
## 498 1 4 24
## 499 1 4 12
## 500 1 1 12
## 501 1 4 24
## 502 1 4 24
## 503 1 4 6
## 504 1 4 24
## 505 1 4 24
## 506 1 4 6
## 507 1 4 12
## 508 1 4 24
## 509 1 4 24
## 510 1 1 6
## 511 1 4 6
## 512 1 4 6
## 513 1 2 24
## 514 1 2 30
## 515 1 4 15
## 516 1 2 24
## 517 1 2 24
## 518 0 4 36
## 519 0 4 24
## 520 0 4 36
## 521 0 4 36
## 522 0 4 36
## 523 1 4 6
## 524 1 4 18
## 525 1 2 12
## 526 1 4 36
## 527 1 1 12
## 528 1 2 12
## 529 1 4 18
## 530 1 4 18
## 531 1 4 4
## 532 1 4 24
## 533 1 3 12
## 534 1 1 18
## 535 1 1 18
## 536 1 2 24
## 537 1 4 4
## 538 1 4 4
## 539 1 4 7
## 540 1 2 18
## 541 0 2 9
## 542 1 2 48
## 543 0 2 12
## 544 1 2 18
## 545 1 4 4
## 546 1 2 8
## 547 1 2 30
## 548 1 3 10
## 549 1 2 12
## 550 1 4 12
## 551 1 2 12
## 552 1 4 12
## 553 1 4 12
## 554 1 4 10
## 555 1 2 11
## 556 1 4 33
## 557 1 2 48
## 558 1 3 12
## 559 1 4 24
## 560 1 2 14
## 561 1 4 20
## 562 1 4 18
## 563 0 2 60
## 564 1 3 24
## 565 1 4 30
## 566 1 2 24
## 567 1 2 36
## 568 1 4 6
## 569 1 4 12
## 570 1 4 48
## 571 1 3 12
## 572 1 4 36
## 573 1 2 26
## 574 1 2 30
## 575 1 2 36
## 576 1 2 48
## 577 0 1 36
## 578 0 1 12
## 579 0 1 33
## 580 0 1 42
## 581 0 1 24
## 582 0 1 24
## 583 0 4 24
## 584 0 1 12
## 585 0 1 12
## 586 1 1 24
## 587 1 1 18
## 588 1 1 36
## 589 1 1 18
## 590 1 2 12
## 591 1 1 12
## 592 1 1 8
## 593 0 1 36
## 594 0 1 24
## 595 1 1 30
## 596 1 1 36
## 597 1 1 12
## 598 1 1 21
## 599 1 1 30
## 600 0 1 36
## 601 0 1 36
## 602 1 4 24
## 603 1 1 6
## 604 1 1 12
## 605 0 1 36
## 606 1 1 15
## 607 1 2 6
## 608 1 1 6
## 609 1 1 48
## 610 1 2 24
## 611 0 2 12
## 612 1 1 12
## 613 1 1 12
## 614 1 1 15
## 615 1 1 24
## 616 1 1 12
## 617 1 1 30
## 618 1 1 18
## 619 0 1 30
## 620 1 2 12
## 621 1 4 24
## 622 1 4 24
## 623 1 1 12
## 624 1 1 12
## 625 1 1 24
## 626 1 1 6
## 627 1 4 12
## 628 1 4 18
## 629 1 4 6
## 630 1 1 12
## 631 1 1 15
## 632 1 1 42
## 633 1 1 24
## 634 1 1 36
## 635 1 1 36
## 636 1 1 24
## 637 0 1 12
## 638 1 1 13
## 639 1 1 20
## 640 1 1 24
## 641 1 1 36
## 642 1 3 42
## 643 1 1 24
## 644 0 1 48
## 645 1 4 24
## 646 1 1 36
## 647 1 4 24
## 648 1 4 48
## 649 1 2 30
## 650 1 2 18
## 651 1 2 24
## 652 1 2 6
## 653 1 2 12
## 654 1 4 24
## 655 1 2 48
## 656 1 2 18
## 657 0 2 24
## 658 1 2 6
## 659 1 2 7
## 660 1 2 6
## 661 1 2 8
## 662 1 2 12
## 663 1 2 12
## 664 1 2 6
## 665 1 1 8
## 666 1 2 12
## 667 1 2 7
## 668 1 2 13
## 669 1 2 18
## 670 1 2 7
## 671 1 2 13
## 672 1 2 18
## 673 1 2 18
## 674 1 2 8
## 675 1 2 12
## 676 1 3 6
## 677 1 1 9
## 678 1 2 18
## 679 1 2 15
## 680 1 2 6
## 681 1 2 10
## 682 1 2 12
## 683 1 2 20
## 684 1 2 15
## 685 1 1 12
## 686 1 4 24
## 687 1 2 10
## 688 1 2 36
## 689 1 3 18
## 690 0 1 24
## 691 1 4 60
## 692 1 1 12
## 693 1 2 6
## 694 1 4 15
## 695 1 4 12
## 696 1 4 60
## 697 1 3 12
## 698 1 4 24
## 699 1 2 45
## 700 1 1 24
## 701 0 1 36
## 702 1 2 36
## 703 1 1 18
## 704 1 1 30
## 705 1 1 6
## 706 1 4 15
## 707 1 3 24
## 708 1 2 30
## 709 0 1 48
## 710 1 4 48
## 711 1 4 24
## 712 1 1 42
## 713 1 4 36
## 714 1 4 9
## 715 1 4 6
## 716 1 4 36
## 717 1 1 48
## 718 0 4 24
## 719 0 2 18
## 720 0 2 72
## 721 0 2 48
## 722 1 3 15
## 723 1 4 21
## 724 1 4 36
## 725 1 1 24
## 726 1 2 18
## 727 1 4 21
## 728 1 4 12
## 729 1 4 36
## 730 1 2 60
## 731 1 2 42
## 732 1 4 60
## 733 1 4 15
## 734 1 1 15
## 735 1 1 36
## 736 1 4 6
## 737 1 2 9
## 738 1 4 18
## 739 1 2 15
## 740 1 2 20
## 741 1 4 12
## 742 1 4 12
## 743 0 1 24
## 744 1 4 30
## 745 1 4 30
## 746 1 4 6
## 747 1 2 24
## 748 1 4 24
## 749 1 2 9
## 750 1 3 24
## 751 1 2 36
## 752 0 1 9
## 753 0 2 9
## 754 0 2 24
## 755 0 2 6
## 756 0 1 15
## 757 0 1 24
## 758 0 1 12
## 759 0 2 30
## 760 0 2 36
## 761 0 2 48
## 762 0 1 18
## 763 0 4 21
## 764 0 2 60
## 765 0 4 24
## 766 0 4 9
## 767 0 2 39
## 768 0 4 18
## 769 0 2 9
## 770 0 1 15
## 771 0 1 24
## 772 0 1 9
## 773 0 1 18
## 774 0 1 36
## 775 0 1 36
## 776 0 1 36
## 777 0 2 18
## 778 0 1 6
## 779 0 2 18
## 780 0 4 15
## 781 0 2 30
## 782 0 1 24
## 783 0 2 36
## 784 0 2 6
## 785 0 1 12
## 786 0 4 24
## 787 0 2 6
## 788 0 2 15
## 789 0 2 24
## 790 0 2 24
## 791 0 2 15
## 792 0 3 15
## 793 0 1 24
## 794 0 1 12
## 795 0 3 30
## 796 0 2 36
## 797 0 3 18
## 798 0 3 21
## 799 0 1 24
## 800 0 3 24
## 801 0 1 24
## 802 0 1 24
## 803 0 1 24
## 804 0 2 18
## 805 0 1 12
## 806 0 1 24
## 807 0 2 18
## 808 0 1 60
## 809 0 1 24
## 810 0 1 6
## 811 0 2 48
## 812 0 1 60
## 813 0 4 18
## 814 0 1 18
## 815 0 2 9
## 816 0 4 18
## 817 0 3 10
## 818 0 1 12
## 819 0 2 8
## 820 0 4 9
## 821 0 2 48
## 822 0 1 36
## 823 0 1 24
## 824 0 1 21
## 825 0 1 24
## 826 0 2 6
## 827 0 2 48
## 828 0 1 12
## 829 0 2 12
## 830 0 2 48
## 831 0 2 36
## 832 0 4 36
## 833 0 4 36
## 834 0 3 36
## 835 0 4 6
## 836 0 2 24
## 837 0 4 18
## 838 0 2 24
## 839 0 4 18
## 840 0 4 12
## 841 0 1 36
## 842 0 2 18
## 843 0 4 12
## 844 0 2 24
## 845 0 2 24
## 846 0 2 27
## 847 0 2 30
## 848 0 2 60
## 849 0 2 36
## 850 0 2 36
## 851 0 2 45
## 852 0 1 12
## 853 0 2 24
## 854 0 3 24
## 855 0 4 18
## 856 0 1 48
## 857 0 1 24
## 858 0 1 36
## 859 0 1 42
## 860 0 1 12
## 861 0 4 48
## 862 0 1 48
## 863 0 2 12
## 864 0 4 18
## 865 0 1 40
## 866 0 3 15
## 867 0 2 12
## 868 0 2 36
## 869 0 2 12
## 870 0 2 24
## 871 0 1 48
## 872 0 4 36
## 873 0 4 18
## 874 0 4 36
## 875 0 2 24
## 876 0 2 30
## 877 0 2 30
## 878 0 1 48
## 879 0 1 9
## 880 0 1 24
## 881 0 1 18
## 882 0 3 9
## 883 0 1 48
## 884 0 2 15
## 885 0 2 15
## 886 0 2 48
## 887 0 1 24
## 888 0 1 36
## 889 0 1 24
## 890 0 2 36
## 891 0 2 60
## 892 0 1 36
## 893 0 2 12
## 894 0 1 18
## 895 0 2 24
## 896 0 2 18
## 897 0 4 21
## 898 0 4 27
## 899 0 2 27
## 900 0 4 10
## 901 0 1 24
## 902 0 1 12
## 903 0 2 36
## 904 0 1 18
## 905 0 1 18
## 906 0 1 18
## 907 0 1 18
## 908 0 1 30
## 909 0 1 24
## 910 0 1 48
## 911 0 1 24
## 912 0 1 12
## 913 0 1 42
## 914 0 1 36
## 915 0 1 24
## 916 0 1 18
## 917 0 1 12
## 918 0 2 12
## 919 0 1 48
## 920 0 1 48
## 921 0 1 24
## 922 0 1 12
## 923 0 1 24
## 924 0 1 27
## 925 0 1 21
## 926 0 1 18
## 927 0 1 24
## 928 0 1 12
## 929 0 1 48
## 930 0 2 48
## 931 0 2 18
## 932 0 1 12
## 933 0 2 12
## 934 0 1 12
## 935 0 1 16
## 936 0 1 20
## 937 0 2 9
## 938 0 2 18
## 939 0 2 24
## 940 0 2 36
## 941 0 4 48
## 942 0 2 12
## 943 0 4 12
## 944 0 2 36
## 945 0 1 12
## 946 0 2 15
## 947 0 4 10
## 948 0 4 30
## 949 0 1 18
## 950 0 4 12
## 951 0 2 45
## 952 0 3 12
## 953 0 2 21
## 954 0 4 48
## 955 0 3 12
## 956 0 1 18
## 957 0 2 21
## 958 0 2 30
## 959 0 2 30
## 960 0 2 24
## 961 0 4 18
## 962 0 2 12
## 963 0 2 54
## 964 0 1 24
## 965 0 2 15
## 966 0 2 48
## 967 0 4 24
## 968 0 1 18
## 969 0 1 45
## 970 0 1 21
## 971 0 4 48
## 972 0 2 27
## 973 0 3 18
## 974 0 1 45
## 975 0 1 6
## 976 0 1 30
## 977 0 2 48
## 978 0 1 6
## 979 0 2 12
## 980 0 1 12
## 981 0 2 24
## 982 0 4 18
## 983 0 2 48
## 984 0 1 18
## 985 0 1 48
## 986 0 4 12
## 987 0 1 14
## 988 0 1 12
## 989 0 1 18
## 990 0 2 24
## 991 0 1 18
## 992 0 2 24
## 993 0 1 18
## 994 0 1 18
## 995 0 1 12
## 996 0 1 24
## 997 0 1 24
## 998 0 4 21
## 999 0 2 12
## 1000 0 1 30
## Payment.Status.of.Previous.Credit Purpose Credit.Amount
## 1 4 2 1049
## 2 4 0 2799
## 3 2 9 841
## 4 4 0 2122
## 5 4 0 2171
## 6 4 0 2241
## 7 4 0 3398
## 8 4 0 1361
## 9 4 3 1098
## 10 2 3 3758
## 11 4 0 3905
## 12 4 1 6187
## 13 4 3 1957
## 14 3 10 7582
## 15 2 3 1936
## 16 2 3 2647
## 17 4 0 3939
## 18 2 3 3213
## 19 4 3 2337
## 20 4 0 7228
## 21 4 0 3676
## 22 4 0 3124
## 23 2 5 2384
## 24 4 4 1424
## 25 4 0 4716
## 26 3 3 4771
## 27 2 2 652
## 28 4 3 1154
## 29 2 0 3556
## 30 4 1 4796
## 31 4 3 3017
## 32 4 0 3535
## 33 4 0 6614
## 34 2 3 1376
## 35 2 0 1721
## 36 4 0 860
## 37 4 0 1495
## 38 4 3 1934
## 39 2 1 3378
## 40 4 1 3868
## 41 4 5 996
## 42 2 10 1755
## 43 4 0 1028
## 44 4 9 2825
## 45 2 6 1239
## 46 2 0 1216
## 47 2 9 1258
## 48 4 6 1864
## 49 2 0 1474
## 50 4 9 1382
## 51 2 0 640
## 52 2 3 3919
## 53 4 0 1224
## 54 4 3 2331
## 55 2 1 6313
## 56 4 3 385
## 57 4 3 1655
## 58 2 3 1053
## 59 2 3 3160
## 60 2 0 3079
## 61 4 0 1163
## 62 2 1 2679
## 63 4 3 3578
## 64 3 0 10875
## 65 3 0 1344
## 66 4 3 1237
## 67 2 3 3077
## 68 2 3 2284
## 69 2 3 1567
## 70 3 0 2032
## 71 4 2 2745
## 72 2 3 1867
## 73 2 3 2299
## 74 2 2 929
## 75 2 3 3399
## 76 2 2 2030
## 77 4 1 3275
## 78 4 0 1940
## 79 4 0 1602
## 80 2 3 1979
## 81 4 0 2022
## 82 4 3 3342
## 83 2 0 5866
## 84 4 1 2360
## 85 4 2 1520
## 86 2 0 3651
## 87 4 1 2346
## 88 3 3 4454
## 89 4 0 666
## 90 3 0 1965
## 91 4 0 1995
## 92 2 3 2991
## 93 0 9 4221
## 94 2 3 1364
## 95 4 2 6361
## 96 4 2 4526
## 97 4 3 3573
## 98 3 9 4455
## 99 2 2 2136
## 100 4 9 5954
## 101 4 2 3777
## 102 2 9 806
## 103 3 9 4712
## 104 3 0 7432
## 105 4 3 1851
## 106 2 0 1393
## 107 4 9 1412
## 108 2 3 1473
## 109 2 3 1533
## 110 4 6 2012
## 111 2 0 3959
## 112 2 2 428
## 113 4 0 2366
## 114 2 2 763
## 115 2 2 3976
## 116 2 0 6260
## 117 4 2 1919
## 118 2 1 2603
## 119 4 6 936
## 120 2 2 3062
## 121 2 3 4795
## 122 4 1 5842
## 123 2 3 2063
## 124 4 3 1459
## 125 2 3 1213
## 126 4 3 5103
## 127 2 4 874
## 128 2 2 2978
## 129 2 0 1820
## 130 4 3 2872
## 131 2 2 1925
## 132 2 2 2515
## 133 2 2 2116
## 134 2 3 1453
## 135 2 0 1364
## 136 2 2 1543
## 137 2 0 1318
## 138 1 0 2325
## 139 4 8 932
## 140 4 3 3148
## 141 2 3 3835
## 142 2 6 3832
## 143 2 3 5084
## 144 4 2 2406
## 145 2 3 2394
## 146 2 1 2476
## 147 2 1 2964
## 148 2 2 1262
## 149 2 9 1542
## 150 4 3 1743
## 151 1 3 409
## 152 2 3 2171
## 153 4 1 8858
## 154 2 0 3512
## 155 2 3 1158
## 156 4 3 2684
## 157 2 3 1498
## 158 4 3 5954
## 159 1 9 6416
## 160 4 2 3617
## 161 4 3 1291
## 162 4 9 1275
## 163 2 2 3972
## 164 4 2 3343
## 165 2 6 392
## 166 4 0 2134
## 167 4 3 5771
## 168 4 9 4526
## 169 4 2 2788
## 170 4 3 1382
## 171 2 3 5848
## 172 2 0 1228
## 173 2 3 1297
## 174 2 3 1552
## 175 2 3 1963
## 176 2 3 3235
## 177 4 9 4139
## 178 4 1 1804
## 179 2 9 1950
## 180 3 3 12749
## 181 2 4 1236
## 182 4 0 1055
## 183 0 9 8072
## 184 4 3 2831
## 185 2 9 1449
## 186 2 9 5742
## 187 2 0 2390
## 188 2 3 3430
## 189 2 6 2273
## 190 2 0 2923
## 191 2 3 1901
## 192 2 6 3711
## 193 2 0 8487
## 194 2 0 2255
## 195 2 3 1262
## 196 4 1 7253
## 197 4 0 6761
## 198 4 2 1817
## 199 2 3 2141
## 200 1 9 3609
## 201 2 3 2333
## 202 1 1 7824
## 203 1 3 1445
## 204 2 2 7721
## 205 2 0 3763
## 206 2 9 4439
## 207 2 3 1107
## 208 2 3 1444
## 209 1 0 12169
## 210 2 3 2753
## 211 2 0 1494
## 212 1 2 2828
## 213 1 2 2483
## 214 4 0 1299
## 215 2 0 1549
## 216 2 0 3949
## 217 2 1 2901
## 218 2 0 709
## 219 2 0 10722
## 220 2 0 1287
## 221 1 3 1940
## 222 4 3 3656
## 223 3 1 4679
## 224 3 1 8613
## 225 2 2 2659
## 226 4 3 1516
## 227 2 0 4380
## 228 3 0 802
## 229 2 9 1572
## 230 1 9 3566
## 231 2 3 1278
## 232 0 3 426
## 233 2 1 8588
## 234 2 1 3857
## 235 2 0 685
## 236 2 3 1603
## 237 2 2 2241
## 238 2 3 2384
## 239 2 2 601
## 240 2 1 2569
## 241 4 3 1316
## 242 2 0 10366
## 243 2 9 1568
## 244 4 3 629
## 245 1 3 1750
## 246 2 1 3488
## 247 4 3 1800
## 248 3 2 4151
## 249 2 5 2631
## 250 2 1 5248
## 251 3 0 2899
## 252 3 5 6204
## 253 2 3 804
## 254 2 3 3595
## 255 4 1 5711
## 256 2 9 2687
## 257 3 2 3643
## 258 4 2 2146
## 259 2 3 2315
## 260 2 9 3448
## 261 2 2 2708
## 262 4 0 1393
## 263 2 2 1275
## 264 2 2 1313
## 265 2 3 1493
## 266 2 3 2675
## 267 2 3 2118
## 268 2 0 909
## 269 4 2 1258
## 270 1 3 1569
## 271 2 1 1236
## 272 3 2 7678
## 273 2 5 660
## 274 2 2 2835
## 275 2 1 2670
## 276 1 8 3447
## 277 2 3 3568
## 278 4 9 3652
## 279 2 3 3660
## 280 2 3 1126
## 281 3 3 683
## 282 2 2 2251
## 283 2 1 4675
## 284 3 0 2353
## 285 2 3 3357
## 286 2 0 672
## 287 4 3 338
## 288 2 3 2697
## 289 2 0 2507
## 290 3 3 1478
## 291 4 6 3565
## 292 2 2 2221
## 293 4 3 1898
## 294 3 9 1449
## 295 3 2 960
## 296 2 1 8133
## 297 2 2 2301
## 298 3 9 1743
## 299 2 2 983
## 300 3 3 2320
## 301 1 8 339
## 302 2 3 5152
## 303 2 2 3749
## 304 4 3 3074
## 305 2 3 745
## 306 2 0 1469
## 307 2 2 1374
## 308 1 0 783
## 309 2 3 2606
## 310 0 1 9436
## 311 4 3 930
## 312 4 1 2751
## 313 4 0 250
## 314 2 0 1201
## 315 2 0 662
## 316 2 1 1300
## 317 1 9 1559
## 318 2 3 3016
## 319 4 3 1360
## 320 0 0 1204
## 321 2 0 1597
## 322 2 3 2073
## 323 2 9 2142
## 324 4 2 2132
## 325 2 0 1546
## 326 4 0 1287
## 327 2 0 1418
## 328 4 0 1343
## 329 2 0 2662
## 330 4 3 6070
## 331 4 6 1927
## 332 4 3 2404
## 333 4 3 1554
## 334 2 0 1283
## 335 3 0 717
## 336 2 2 1747
## 337 4 5 1288
## 338 4 0 1038
## 339 2 1 2848
## 340 2 1 1413
## 341 4 3 3077
## 342 1 1 3632
## 343 4 1 3229
## 344 2 0 3577
## 345 4 0 682
## 346 2 3 1924
## 347 2 6 727
## 348 4 0 781
## 349 4 0 2121
## 350 4 6 701
## 351 4 2 2069
## 352 2 0 1525
## 353 4 9 7629
## 354 4 0 3499
## 355 2 3 1346
## 356 4 1 10477
## 357 2 1 2924
## 358 4 0 1231
## 359 2 0 1961
## 360 4 0 5045
## 361 4 0 1255
## 362 2 2 1858
## 363 4 2 1221
## 364 2 2 1388
## 365 2 3 2279
## 366 0 2 2759
## 367 2 3 1258
## 368 0 8 1410
## 369 2 0 1403
## 370 2 2 3021
## 371 2 9 6568
## 372 4 3 2578
## 373 4 1 7758
## 374 2 4 343
## 375 3 2 1591
## 376 2 3 3416
## 377 0 5 1108
## 378 3 1 5965
## 379 2 5 1514
## 380 4 3 6742
## 381 2 2 3650
## 382 2 2 3599
## 383 4 0 13756
## 384 2 0 276
## 385 4 2 4041
## 386 2 3 458
## 387 2 2 918
## 388 2 0 7393
## 389 2 4 1225
## 390 2 1 2812
## 391 2 1 3029
## 392 4 0 1480
## 393 4 6 1047
## 394 4 3 1471
## 395 2 2 5511
## 396 2 3 1206
## 397 3 3 6403
## 398 2 3 707
## 399 3 1 1503
## 400 2 0 6078
## 401 2 9 2528
## 402 2 9 1037
## 403 2 1 1352
## 404 2 3 3181
## 405 2 3 4594
## 406 2 10 5381
## 407 2 1 4657
## 408 2 9 1391
## 409 2 9 1913
## 410 2 3 7166
## 411 2 3 1409
## 412 3 9 2978
## 413 4 3 976
## 414 3 9 2375
## 415 4 3 522
## 416 4 3 2743
## 417 4 3 1154
## 418 4 1 5804
## 419 4 3 1169
## 420 4 2 1478
## 421 2 3 776
## 422 4 0 1322
## 423 4 0 1175
## 424 2 0 2133
## 425 4 3 1829
## 426 4 3 717
## 427 3 6 11760
## 428 4 6 1501
## 429 2 6 1200
## 430 2 0 3195
## 431 4 3 4530
## 432 3 5 1555
## 433 4 9 2326
## 434 4 9 1887
## 435 4 9 1264
## 436 3 3 846
## 437 4 6 1532
## 438 3 3 935
## 439 4 9 2442
## 440 4 9 3590
## 441 4 2 2288
## 442 3 9 5117
## 443 4 2 14179
## 444 2 3 1386
## 445 4 3 618
## 446 2 2 1574
## 447 4 3 700
## 448 2 3 886
## 449 2 1 4686
## 450 2 3 790
## 451 2 3 766
## 452 2 2 2212
## 453 2 0 7308
## 454 4 6 5743
## 455 2 0 3973
## 456 3 3 7418
## 457 3 10 2629
## 458 2 9 1941
## 459 3 2 2333
## 460 2 1 2445
## 461 2 1 6468
## 462 4 2 7374
## 463 2 1 3812
## 464 2 0 4006
## 465 2 0 7472
## 466 2 2 1424
## 467 2 1 2028
## 468 2 0 5324
## 469 2 3 2323
## 470 2 6 1393
## 471 2 2 1984
## 472 2 3 999
## 473 2 9 7409
## 474 2 2 2186
## 475 2 3 4473
## 476 2 8 937
## 477 2 2 3422
## 478 2 3 3105
## 479 4 6 2748
## 480 2 5 3872
## 481 2 5 5190
## 482 2 2 3001
## 483 3 9 3863
## 484 4 2 5801
## 485 4 2 1592
## 486 4 9 1185
## 487 4 2 3780
## 488 4 2 3612
## 489 2 9 1076
## 490 2 0 3527
## 491 2 3 2051
## 492 4 2 3331
## 493 0 9 3104
## 494 4 3 2611
## 495 4 1 1409
## 496 2 3 1311
## 497 2 3 2108
## 498 4 1 4042
## 499 4 0 926
## 500 2 3 1680
## 501 2 0 1249
## 502 4 0 2463
## 503 2 3 1595
## 504 4 5 2058
## 505 2 1 7814
## 506 4 3 1740
## 507 4 3 1240
## 508 4 1 6842
## 509 4 2 5150
## 510 2 0 1203
## 511 4 0 2080
## 512 2 6 1538
## 513 4 0 3878
## 514 2 2 3832
## 515 2 0 3186
## 516 2 3 2896
## 517 3 9 6967
## 518 2 6 1819
## 519 2 3 5943
## 520 4 2 7127
## 521 2 2 3349
## 522 2 2 10974
## 523 2 3 518
## 524 2 3 1126
## 525 4 1 1860
## 526 4 3 9566
## 527 2 3 701
## 528 2 3 2930
## 529 2 3 1505
## 530 4 3 2238
## 531 4 3 1503
## 532 4 1 2197
## 533 2 3 1881
## 534 4 3 1880
## 535 2 3 2389
## 536 2 3 1967
## 537 4 0 3380
## 538 4 0 1455
## 539 4 3 730
## 540 0 2 3244
## 541 2 3 1670
## 542 2 3 3979
## 543 2 2 1922
## 544 4 2 1295
## 545 4 3 1544
## 546 2 9 907
## 547 2 3 1715
## 548 4 3 1347
## 549 2 0 1007
## 550 4 2 1402
## 551 2 0 2002
## 552 4 6 2096
## 553 2 0 1101
## 554 2 8 894
## 555 2 2 1577
## 556 3 9 2764
## 557 0 0 8358
## 558 2 2 1474
## 559 2 1 5433
## 560 2 9 1410
## 561 4 0 3485
## 562 4 1 3850
## 563 2 0 7408
## 564 2 3 1377
## 565 3 9 4272
## 566 3 3 1553
## 567 3 9 9857
## 568 4 0 362
## 569 4 2 1935
## 570 2 3 10222
## 571 2 0 1330
## 572 2 6 9055
## 573 2 1 7966
## 574 1 2 3496
## 575 2 1 6948
## 576 0 9 12204
## 577 2 2 3446
## 578 2 6 684
## 579 4 2 4281
## 580 2 3 7174
## 581 1 3 1546
## 582 2 2 2359
## 583 2 3 3621
## 584 2 4 741
## 585 2 2 7865
## 586 2 1 2910
## 587 4 0 5302
## 588 2 2 3620
## 589 2 3 3509
## 590 2 2 3017
## 591 2 2 1657
## 592 4 10 1164
## 593 4 2 6229
## 594 1 0 1193
## 595 0 2 4583
## 596 4 2 5371
## 597 2 2 708
## 598 4 0 571
## 599 2 3 2522
## 600 2 2 5179
## 601 2 1 8229
## 602 4 2 2028
## 603 2 0 1374
## 604 2 2 1289
## 605 2 2 2712
## 606 4 2 975
## 607 3 2 1050
## 608 4 0 609
## 609 2 1 4788
## 610 2 2 3069
## 611 2 0 836
## 612 2 2 2577
## 613 2 2 1620
## 614 2 2 1845
## 615 2 1 6579
## 616 2 0 1893
## 617 4 1 10623
## 618 2 0 2249
## 619 2 2 3108
## 620 4 0 958
## 621 2 1 9277
## 622 4 10 6314
## 623 4 1 1526
## 624 2 2 3590
## 625 4 1 6615
## 626 4 2 1872
## 627 2 0 2859
## 628 4 3 1582
## 629 2 8 1238
## 630 2 2 2578
## 631 4 2 1433
## 632 2 2 7882
## 633 2 2 4169
## 634 2 2 3959
## 635 2 0 3249
## 636 2 2 3149
## 637 4 2 2246
## 638 4 9 1797
## 639 4 2 4272
## 640 4 1 2957
## 641 4 2 2348
## 642 0 9 6289
## 643 4 1 6419
## 644 4 1 6143
## 645 4 6 1597
## 646 2 10 15857
## 647 4 3 2223
## 648 3 3 7238
## 649 3 9 2503
## 650 2 9 2622
## 651 2 2 4351
## 652 2 3 368
## 653 2 8 754
## 654 4 3 2424
## 655 3 9 6681
## 656 3 9 2427
## 657 4 3 1216
## 658 2 3 753
## 659 2 3 2576
## 660 2 3 590
## 661 2 3 1414
## 662 2 3 1103
## 663 3 3 585
## 664 2 3 1068
## 665 4 0 713
## 666 2 3 1092
## 667 2 3 2329
## 668 4 3 882
## 669 2 3 866
## 670 2 3 2415
## 671 2 3 2101
## 672 2 3 1301
## 673 2 3 1113
## 674 2 3 760
## 675 2 3 625
## 676 4 0 1323
## 677 4 3 1138
## 678 4 3 1795
## 679 4 3 2728
## 680 2 3 484
## 681 1 3 1048
## 682 2 3 1155
## 683 3 1 7057
## 684 4 3 1537
## 685 2 3 2214
## 686 4 2 1585
## 687 2 2 1521
## 688 1 4 3990
## 689 2 2 3049
## 690 2 3 1282
## 691 2 3 10144
## 692 2 0 1168
## 693 2 5 454
## 694 3 1 3594
## 695 2 2 1768
## 696 3 3 15653
## 697 3 0 2247
## 698 2 3 1413
## 699 4 1 4576
## 700 4 3 1231
## 701 2 1 8335
## 702 4 1 5800
## 703 3 6 8471
## 704 2 2 3622
## 705 4 3 1169
## 706 2 4 1262
## 707 4 2 3617
## 708 4 0 2181
## 709 1 9 7685
## 710 4 6 6110
## 711 2 0 3757
## 712 4 5 3394
## 713 4 9 6304
## 714 4 6 1244
## 715 2 0 3518
## 716 0 5 2613
## 717 2 6 7476
## 718 2 9 4591
## 719 2 2 1924
## 720 2 3 5595
## 721 3 6 6224
## 722 2 6 1905
## 723 3 1 2993
## 724 3 1 8947
## 725 2 2 4020
## 726 2 1 2779
## 727 2 0 2782
## 728 2 0 1884
## 729 4 1 11054
## 730 3 3 9157
## 731 1 1 9283
## 732 2 0 6527
## 733 4 1 3368
## 734 2 0 2511
## 735 2 1 5493
## 736 2 4 1338
## 737 2 3 1082
## 738 4 3 1149
## 739 2 5 1308
## 740 0 1 6148
## 741 2 2 1736
## 742 2 3 3059
## 743 2 2 2996
## 744 4 1 7596
## 745 2 1 4811
## 746 2 2 1766
## 747 2 1 2760
## 748 4 5 5507
## 749 2 6 1199
## 750 2 2 2892
## 751 3 0 2862
## 752 2 0 654
## 753 4 6 1136
## 754 2 1 4113
## 755 2 0 14555
## 756 0 0 950
## 757 4 0 1199
## 758 0 0 1082
## 759 2 0 2150
## 760 4 0 2820
## 761 2 3 3060
## 762 2 3 2600
## 763 0 0 5003
## 764 2 6 6288
## 765 3 0 2538
## 766 2 3 1478
## 767 4 3 4933
## 768 4 0 1530
## 769 1 0 1437
## 770 2 4 1275
## 771 2 3 1823
## 772 2 0 1422
## 773 2 4 1217
## 774 2 0 9271
## 775 3 9 2145
## 776 2 0 1842
## 777 3 2 4297
## 778 4 2 3384
## 779 4 3 1245
## 780 2 6 4623
## 781 4 2 8386
## 782 3 3 1024
## 783 2 0 14318
## 784 1 6 433
## 785 1 3 2149
## 786 2 3 2397
## 787 1 0 931
## 788 3 5 1512
## 789 0 9 4241
## 790 4 2 4736
## 791 0 0 1778
## 792 2 3 2327
## 793 1 2 6872
## 794 2 6 795
## 795 3 9 1908
## 796 0 9 1953
## 797 2 2 2864
## 798 4 6 2319
## 799 2 0 915
## 800 2 0 947
## 801 2 0 1381
## 802 2 0 1285
## 803 2 0 1371
## 804 2 0 1042
## 805 2 0 900
## 806 2 0 1207
## 807 0 0 2278
## 808 3 9 6836
## 809 2 2 3345
## 810 1 6 1198
## 811 2 9 15672
## 812 2 9 7297
## 813 2 5 1943
## 814 2 3 3190
## 815 1 1 5129
## 816 3 2 1808
## 817 2 0 1240
## 818 2 0 759
## 819 2 2 1237
## 820 2 2 1980
## 821 2 3 10961
## 822 3 6 6887
## 823 2 3 1938
## 824 2 3 1835
## 825 3 3 1659
## 826 3 0 1209
## 827 0 9 3844
## 828 4 0 4843
## 829 2 5 639
## 830 2 3 5951
## 831 0 3 3804
## 832 3 3 4463
## 833 3 9 7980
## 834 2 3 4210
## 835 2 2 4611
## 836 2 1 11560
## 837 0 9 4165
## 838 2 2 4057
## 839 1 0 6458
## 840 2 0 1386
## 841 2 6 1977
## 842 4 2 1928
## 843 2 2 1123
## 844 2 10 11328
## 845 4 10 11938
## 846 4 3 2520
## 847 3 3 1919
## 848 1 10 14782
## 849 2 3 2671
## 850 2 6 12612
## 851 2 3 3031
## 852 1 3 626
## 853 4 9 1935
## 854 4 0 1344
## 855 2 2 1533
## 856 2 0 3931
## 857 1 2 3349
## 858 2 3 2302
## 859 2 3 3965
## 860 2 3 727
## 861 2 9 3914
## 862 2 9 4308
## 863 2 3 1534
## 864 4 0 2775
## 865 4 6 5998
## 866 4 3 1271
## 867 2 0 1295
## 868 2 1 9398
## 869 2 2 951
## 870 2 0 1355
## 871 2 4 3051
## 872 4 0 7855
## 873 2 3 433
## 874 3 9 9572
## 875 1 6 1837
## 876 4 0 4249
## 877 4 0 5234
## 878 2 3 6758
## 879 2 3 1366
## 880 1 10 1358
## 881 2 2 2473
## 882 0 3 1337
## 883 2 0 7763
## 884 1 0 1264
## 885 2 0 2631
## 886 2 0 6560
## 887 2 0 3123
## 888 4 6 8065
## 889 2 3 2439
## 890 2 2 9034
## 891 2 0 14027
## 892 4 1 9629
## 893 2 3 1484
## 894 2 2 1131
## 895 3 2 2064
## 896 2 1 12976
## 897 3 9 2580
## 898 2 0 2570
## 899 2 9 3915
## 900 2 0 1309
## 901 2 0 4817
## 902 2 0 2579
## 903 3 0 2225
## 904 2 2 4153
## 905 0 2 3114
## 906 4 2 2124
## 907 1 2 1553
## 908 2 2 2406
## 909 3 0 1333
## 910 0 2 7119
## 911 3 0 4870
## 912 4 0 691
## 913 3 3 4370
## 914 1 2 2746
## 915 0 2 4110
## 916 2 2 2462
## 917 2 2 1282
## 918 0 2 2969
## 919 0 1 4605
## 920 4 1 6331
## 921 1 2 3552
## 922 1 0 697
## 923 2 0 1442
## 924 0 9 5293
## 925 3 6 3414
## 926 2 2 2039
## 927 1 9 3161
## 928 2 8 902
## 929 2 1 10297
## 930 0 9 14421
## 931 4 0 1056
## 932 2 0 1274
## 933 2 0 1223
## 934 2 0 1372
## 935 4 0 2625
## 936 4 0 2235
## 937 2 2 959
## 938 4 0 884
## 939 2 0 1246
## 940 3 0 8086
## 941 4 0 10127
## 942 2 0 888
## 943 2 6 719
## 944 2 0 12389
## 945 2 3 709
## 946 1 0 6850
## 947 2 2 2210
## 948 1 1 7485
## 949 1 0 1442
## 950 4 3 797
## 951 4 3 4746
## 952 4 0 939
## 953 2 9 1188
## 954 4 1 11590
## 955 1 9 609
## 956 4 5 1190
## 957 2 9 2767
## 958 2 2 3441
## 959 0 9 4280
## 960 2 3 3092
## 961 2 0 6761
## 962 2 3 1331
## 963 0 9 15945
## 964 2 2 3234
## 965 2 3 802
## 966 2 2 9960
## 967 3 9 8648
## 968 2 3 1345
## 969 2 3 1845
## 970 1 0 1647
## 971 2 9 4844
## 972 0 9 8318
## 973 2 3 2100
## 974 0 9 11816
## 975 2 6 448
## 976 2 5 11998
## 977 0 10 18424
## 978 2 0 14896
## 979 2 2 2762
## 980 2 1 3386
## 981 2 3 2039
## 982 3 9 2169
## 983 4 2 5096
## 984 2 3 1882
## 985 2 3 6999
## 986 4 9 2292
## 987 2 0 8978
## 988 2 3 674
## 989 2 0 976
## 990 2 0 2718
## 991 2 6 750
## 992 2 1 12579
## 993 2 1 7511
## 994 4 0 3966
## 995 0 3 6199
## 996 2 3 1987
## 997 2 0 2303
## 998 4 0 12680
## 999 2 3 6468
## 1000 2 2 6350
## Value.Savings.Stocks Length.of.current.employment Instalment.per.cent
## 1 1 2 4
## 2 1 3 2
## 3 2 4 2
## 4 1 3 3
## 5 1 3 4
## 6 1 2 1
## 7 1 4 1
## 8 1 2 2
## 9 1 1 4
## 10 3 1 1
## 11 1 3 2
## 12 2 4 1
## 13 1 4 1
## 14 2 1 2
## 15 5 4 2
## 16 3 3 2
## 17 1 3 1
## 18 3 2 1
## 19 1 5 4
## 20 1 3 1
## 21 1 3 1
## 22 1 2 1
## 23 1 2 4
## 24 1 4 4
## 25 5 2 1
## 26 1 4 2
## 27 1 5 4
## 28 1 5 2
## 29 5 3 3
## 30 1 5 4
## 31 1 5 4
## 32 1 4 4
## 33 1 5 4
## 34 3 4 4
## 35 1 2 2
## 36 1 5 1
## 37 1 5 4
## 38 1 5 2
## 39 5 3 2
## 40 1 5 4
## 41 5 4 4
## 42 1 5 4
## 43 1 3 4
## 44 5 4 4
## 45 5 3 4
## 46 1 2 4
## 47 1 4 4
## 48 2 3 4
## 49 2 2 4
## 50 2 4 4
## 51 1 3 4
## 52 1 3 2
## 53 1 3 3
## 54 5 5 1
## 55 5 5 3
## 56 1 4 4
## 57 1 5 2
## 58 1 2 4
## 59 5 5 4
## 60 5 3 4
## 61 3 3 4
## 62 1 2 4
## 63 5 5 4
## 64 1 5 2
## 65 1 3 4
## 66 2 3 1
## 67 1 3 2
## 68 1 4 4
## 69 1 3 1
## 70 1 5 4
## 71 4 4 3
## 72 5 5 4
## 73 3 5 4
## 74 5 4 4
## 75 5 5 2
## 76 5 4 2
## 77 1 5 1
## 78 4 5 4
## 79 1 5 4
## 80 5 5 4
## 81 1 3 4
## 82 5 5 4
## 83 2 3 2
## 84 3 3 2
## 85 5 5 4
## 86 4 3 1
## 87 1 4 4
## 88 1 3 4
## 89 4 4 3
## 90 5 3 4
## 91 2 2 4
## 92 5 5 2
## 93 1 3 2
## 94 1 4 3
## 95 1 5 2
## 96 4 2 4
## 97 1 3 1
## 98 1 3 2
## 99 1 3 3
## 100 1 4 2
## 101 4 3 4
## 102 1 3 4
## 103 5 3 4
## 104 1 3 2
## 105 1 4 4
## 106 1 3 2
## 107 1 3 4
## 108 1 2 3
## 109 1 2 4
## 110 5 4 4
## 111 1 3 3
## 112 1 5 2
## 113 3 4 3
## 114 1 3 4
## 115 5 4 2
## 116 1 4 3
## 117 1 4 4
## 118 4 3 2
## 119 3 5 4
## 120 3 5 4
## 121 1 2 4
## 122 1 5 2
## 123 1 2 4
## 124 1 3 4
## 125 3 5 4
## 126 1 2 3
## 127 5 2 4
## 128 3 3 1
## 129 1 3 2
## 130 2 5 3
## 131 1 3 2
## 132 1 3 3
## 133 1 3 2
## 134 1 2 3
## 135 1 3 2
## 136 4 3 4
## 137 4 5 4
## 138 2 4 2
## 139 5 4 1
## 140 5 3 3
## 141 5 5 2
## 142 5 5 1
## 143 5 5 2
## 144 1 1 2
## 145 5 3 4
## 146 5 5 4
## 147 5 5 4
## 148 5 5 2
## 149 1 4 2
## 150 1 5 4
## 151 4 3 3
## 152 1 2 2
## 153 5 4 2
## 154 2 4 2
## 155 3 3 3
## 156 1 3 4
## 157 1 3 4
## 158 1 4 3
## 159 1 5 4
## 160 1 5 1
## 161 1 3 4
## 162 4 3 2
## 163 1 4 2
## 164 1 3 4
## 165 1 2 4
## 166 1 3 4
## 167 1 4 4
## 168 1 3 3
## 169 1 4 2
## 170 1 3 1
## 171 1 3 4
## 172 1 3 4
## 173 1 3 3
## 174 1 4 3
## 175 1 4 4
## 176 3 5 3
## 177 2 3 3
## 178 2 2 3
## 179 1 4 4
## 180 3 4 4
## 181 1 2 1
## 182 1 2 4
## 183 5 2 2
## 184 1 3 4
## 185 1 4 3
## 186 2 4 2
## 187 5 5 4
## 188 3 5 3
## 189 1 4 3
## 190 2 3 1
## 191 2 3 4
## 192 5 3 2
## 193 5 4 1
## 194 5 2 4
## 195 1 3 3
## 196 1 4 3
## 197 1 4 1
## 198 1 3 4
## 199 2 4 3
## 200 1 3 1
## 201 3 5 4
## 202 5 2 3
## 203 5 4 4
## 204 5 2 1
## 205 5 4 2
## 206 1 5 1
## 207 1 3 2
## 208 5 2 4
## 209 5 1 4
## 210 2 5 3
## 211 5 2 1
## 212 3 3 4
## 213 3 3 4
## 214 1 3 1
## 215 5 2 4
## 216 1 2 1
## 217 5 2 1
## 218 4 2 2
## 219 1 2 1
## 220 5 5 4
## 221 1 2 3
## 222 5 5 4
## 223 1 4 3
## 224 4 3 2
## 225 4 3 4
## 226 4 3 4
## 227 2 3 3
## 228 1 3 4
## 229 4 5 4
## 230 2 4 4
## 231 1 5 4
## 232 1 5 4
## 233 2 5 4
## 234 1 3 4
## 235 1 4 2
## 236 1 5 4
## 237 1 5 4
## 238 1 5 4
## 239 1 2 1
## 240 3 3 4
## 241 3 3 2
## 242 1 5 2
## 243 2 3 3
## 244 3 5 4
## 245 3 5 2
## 246 2 4 3
## 247 1 3 4
## 248 2 3 2
## 249 2 3 3
## 250 5 3 1
## 251 5 5 4
## 252 1 3 2
## 253 1 5 4
## 254 1 5 4
## 255 4 5 4
## 256 1 4 2
## 257 1 5 1
## 258 1 2 1
## 259 1 5 3
## 260 1 4 1
## 261 1 2 2
## 262 1 2 4
## 263 1 2 4
## 264 1 5 1
## 265 1 2 4
## 266 3 5 3
## 267 1 3 2
## 268 3 5 4
## 269 1 2 2
## 270 2 5 4
## 271 3 3 2
## 272 3 4 2
## 273 3 4 2
## 274 3 5 3
## 275 1 5 4
## 276 3 3 4
## 277 1 5 4
## 278 1 4 2
## 279 1 3 2
## 280 2 5 2
## 281 1 2 2
## 282 1 3 1
## 283 5 2 1
## 284 1 3 1
## 285 4 2 4
## 286 1 1 1
## 287 3 5 4
## 288 1 3 1
## 289 3 5 2
## 290 1 3 4
## 291 5 2 2
## 292 3 3 2
## 293 5 3 1
## 294 2 5 1
## 295 4 4 3
## 296 1 3 1
## 297 2 2 2
## 298 2 3 1
## 299 4 2 1
## 300 1 1 2
## 301 1 5 4
## 302 1 4 4
## 303 1 2 2
## 304 5 3 1
## 305 1 3 3
## 306 2 5 4
## 307 1 3 1
## 308 5 3 1
## 309 1 2 4
## 310 5 3 2
## 311 5 5 4
## 312 5 5 4
## 313 4 3 2
## 314 1 2 4
## 315 1 2 3
## 316 5 5 4
## 317 1 4 4
## 318 1 3 3
## 319 1 3 4
## 320 2 3 4
## 321 3 3 3
## 322 2 3 4
## 323 4 5 1
## 324 5 2 2
## 325 1 3 3
## 326 4 5 4
## 327 2 3 3
## 328 1 5 1
## 329 5 4 4
## 330 1 5 3
## 331 5 3 3
## 332 1 3 2
## 333 1 4 1
## 334 5 4 4
## 335 5 5 4
## 336 1 2 4
## 337 2 5 3
## 338 1 4 4
## 339 2 3 1
## 340 4 4 3
## 341 5 5 3
## 342 1 3 1
## 343 5 1 2
## 344 2 3 1
## 345 2 4 4
## 346 1 3 1
## 347 3 5 4
## 348 1 5 4
## 349 1 3 4
## 350 1 3 4
## 351 5 3 2
## 352 4 4 4
## 353 5 5 4
## 354 1 3 3
## 355 2 5 2
## 356 5 5 2
## 357 1 3 3
## 358 1 5 3
## 359 1 5 3
## 360 5 5 1
## 361 1 5 4
## 362 1 2 4
## 363 5 3 1
## 364 1 3 4
## 365 5 3 4
## 366 1 5 2
## 367 3 3 3
## 368 1 3 2
## 369 1 3 2
## 370 1 3 2
## 371 1 3 2
## 372 4 5 2
## 373 4 5 2
## 374 1 2 4
## 375 2 4 4
## 376 1 3 3
## 377 1 4 4
## 378 1 5 1
## 379 2 3 4
## 380 5 4 2
## 381 1 2 1
## 382 1 4 1
## 383 5 5 2
## 384 1 3 4
## 385 3 3 4
## 386 1 3 4
## 387 1 3 4
## 388 1 3 1
## 389 1 3 2
## 390 5 5 2
## 391 1 4 2
## 392 3 1 2
## 393 1 3 2
## 394 1 3 4
## 395 2 3 4
## 396 1 5 4
## 397 1 2 1
## 398 1 3 4
## 399 1 3 4
## 400 1 4 2
## 401 1 2 4
## 402 2 4 3
## 403 3 1 1
## 404 1 2 4
## 405 1 2 3
## 406 5 1 3
## 407 1 3 3
## 408 1 3 2
## 409 4 2 3
## 410 5 4 2
## 411 2 1 2
## 412 5 3 4
## 413 5 5 4
## 414 3 3 4
## 415 3 5 4
## 416 1 5 4
## 417 2 1 4
## 418 4 3 4
## 419 5 3 4
## 420 1 5 4
## 421 1 3 4
## 422 4 3 4
## 423 1 1 2
## 424 5 5 4
## 425 1 5 4
## 426 1 5 4
## 427 2 4 2
## 428 1 5 2
## 429 5 3 4
## 430 5 3 1
## 431 1 4 4
## 432 4 5 4
## 433 3 3 2
## 434 5 3 4
## 435 5 5 4
## 436 5 5 3
## 437 2 3 4
## 438 1 3 3
## 439 1 5 4
## 440 1 1 3
## 441 1 2 4
## 442 1 4 3
## 443 5 4 4
## 444 5 3 4
## 445 1 5 4
## 446 1 3 4
## 447 5 5 4
## 448 5 3 4
## 449 1 3 2
## 450 3 3 4
## 451 3 3 4
## 452 5 4 4
## 453 1 1 2
## 454 1 2 2
## 455 1 1 1
## 456 5 3 1
## 457 1 3 2
## 458 4 3 4
## 459 5 2 4
## 460 5 2 2
## 461 5 1 1
## 462 1 1 4
## 463 2 2 1
## 464 1 3 3
## 465 5 1 1
## 466 5 5 3
## 467 5 3 4
## 468 3 5 1
## 469 1 4 4
## 470 1 5 4
## 471 1 3 4
## 472 5 5 4
## 473 5 5 3
## 474 5 4 1
## 475 1 5 4
## 476 1 2 4
## 477 1 5 4
## 478 5 2 4
## 479 1 5 2
## 480 1 1 2
## 481 5 5 4
## 482 1 4 2
## 483 1 3 1
## 484 5 5 2
## 485 4 4 3
## 486 1 3 3
## 487 1 2 3
## 488 1 5 3
## 489 1 3 2
## 490 5 2 2
## 491 1 2 4
## 492 1 5 2
## 493 1 4 3
## 494 1 5 4
## 495 1 5 4
## 496 2 4 4
## 497 1 4 2
## 498 5 4 3
## 499 1 1 1
## 500 3 5 3
## 501 1 2 4
## 502 2 4 4
## 503 1 4 3
## 504 1 3 4
## 505 1 4 3
## 506 1 5 2
## 507 5 5 4
## 508 5 3 2
## 509 1 5 4
## 510 2 5 3
## 511 3 3 1
## 512 1 2 1
## 513 2 2 4
## 514 1 2 2
## 515 4 4 2
## 516 2 2 2
## 517 2 4 4
## 518 1 3 4
## 519 5 2 1
## 520 1 2 2
## 521 1 3 4
## 522 1 1 4
## 523 1 3 3
## 524 5 2 4
## 525 1 1 4
## 526 1 3 2
## 527 1 3 4
## 528 1 4 2
## 529 1 3 4
## 530 1 3 2
## 531 1 4 2
## 532 5 4 4
## 533 1 3 2
## 534 1 4 4
## 535 1 2 4
## 536 1 5 4
## 537 1 4 1
## 538 1 4 2
## 539 5 5 4
## 540 1 3 1
## 541 1 2 4
## 542 5 4 4
## 543 1 3 4
## 544 1 2 4
## 545 1 4 2
## 546 1 2 3
## 547 5 3 4
## 548 5 4 4
## 549 4 3 4
## 550 3 4 3
## 551 1 4 3
## 552 1 4 2
## 553 1 3 3
## 554 5 4 4
## 555 4 2 4
## 556 1 3 2
## 557 3 2 1
## 558 1 2 4
## 559 5 1 2
## 560 3 5 1
## 561 5 2 2
## 562 1 4 3
## 563 2 2 4
## 564 2 5 4
## 565 2 3 2
## 566 2 4 3
## 567 2 4 1
## 568 2 3 4
## 569 1 5 4
## 570 5 4 4
## 571 1 2 4
## 572 5 3 2
## 573 1 2 2
## 574 4 3 4
## 575 1 3 2
## 576 5 3 2
## 577 1 5 4
## 578 1 3 4
## 579 3 3 1
## 580 5 4 4
## 581 1 4 4
## 582 2 1 1
## 583 2 5 2
## 584 2 1 4
## 585 1 5 4
## 586 1 4 2
## 587 1 5 2
## 588 1 3 1
## 589 1 4 4
## 590 1 2 3
## 591 1 3 2
## 592 1 5 3
## 593 1 2 4
## 594 1 1 1
## 595 1 3 2
## 596 1 3 3
## 597 1 3 2
## 598 1 5 4
## 599 1 5 1
## 600 1 4 4
## 601 1 3 2
## 602 1 4 2
## 603 5 1 4
## 604 1 3 4
## 605 1 5 2
## 606 1 3 2
## 607 1 1 4
## 608 1 4 4
## 609 1 4 4
## 610 2 5 4
## 611 2 2 4
## 612 1 3 2
## 613 1 3 2
## 614 1 2 4
## 615 1 1 4
## 616 1 3 4
## 617 1 5 3
## 618 2 4 4
## 619 1 2 2
## 620 1 4 2
## 621 5 3 2
## 622 1 1 4
## 623 1 5 4
## 624 1 3 2
## 625 1 1 2
## 626 1 1 4
## 627 5 1 4
## 628 4 5 4
## 629 5 1 4
## 630 1 1 3
## 631 1 3 4
## 632 1 4 2
## 633 1 3 4
## 634 1 1 4
## 635 1 4 2
## 636 1 2 4
## 637 1 5 3
## 638 1 2 3
## 639 1 5 1
## 640 1 5 4
## 641 1 3 3
## 642 1 2 2
## 643 1 5 2
## 644 1 5 4
## 645 1 5 4
## 646 1 1 2
## 647 2 5 4
## 648 5 5 3
## 649 2 5 4
## 650 2 3 4
## 651 5 3 1
## 652 5 5 4
## 653 5 5 4
## 654 5 5 4
## 655 5 3 4
## 656 5 5 4
## 657 2 2 4
## 658 1 3 2
## 659 1 3 2
## 660 1 2 3
## 661 1 3 4
## 662 1 4 4
## 663 1 3 4
## 664 1 5 4
## 665 1 5 4
## 666 1 3 4
## 667 1 2 1
## 668 1 2 4
## 669 1 3 4
## 670 1 3 3
## 671 1 2 2
## 672 1 5 4
## 673 1 3 4
## 674 1 4 4
## 675 1 2 4
## 676 2 5 2
## 677 1 3 4
## 678 1 5 3
## 679 5 4 4
## 680 1 4 3
## 681 1 3 4
## 682 1 5 3
## 683 5 4 3
## 684 5 5 4
## 685 1 3 4
## 686 1 4 4
## 687 1 3 4
## 688 5 2 3
## 689 1 2 1
## 690 2 3 4
## 691 2 4 2
## 692 1 3 4
## 693 1 2 3
## 694 1 2 1
## 695 1 3 3
## 696 1 4 2
## 697 1 3 2
## 698 1 3 4
## 699 2 1 3
## 700 4 5 4
## 701 5 5 3
## 702 1 3 3
## 703 5 3 1
## 704 4 5 4
## 705 5 5 4
## 706 3 4 4
## 707 5 5 4
## 708 5 5 4
## 709 1 4 2
## 710 1 3 1
## 711 1 5 4
## 712 1 1 4
## 713 5 5 4
## 714 5 5 4
## 715 1 3 2
## 716 1 3 4
## 717 1 4 4
## 718 4 3 2
## 719 5 2 4
## 720 2 3 2
## 721 1 5 4
## 722 1 5 4
## 723 1 3 3
## 724 5 4 3
## 725 1 3 2
## 726 1 3 1
## 727 3 4 1
## 728 1 5 4
## 729 5 3 4
## 730 5 3 2
## 731 1 1 1
## 732 5 3 4
## 733 4 5 3
## 734 1 1 1
## 735 1 5 2
## 736 3 3 1
## 737 1 5 4
## 738 4 3 4
## 739 1 5 4
## 740 2 5 3
## 741 1 4 3
## 742 4 4 2
## 743 5 3 2
## 744 5 5 1
## 745 5 4 2
## 746 1 3 1
## 747 5 5 4
## 748 1 5 3
## 749 1 4 4
## 750 1 5 3
## 751 2 5 4
## 752 1 3 4
## 753 4 5 4
## 754 3 2 3
## 755 5 1 1
## 756 1 5 4
## 757 1 5 4
## 758 1 3 4
## 759 1 3 4
## 760 1 2 4
## 761 1 4 4
## 762 1 3 4
## 763 5 3 1
## 764 1 3 4
## 765 1 5 4
## 766 1 4 4
## 767 1 4 2
## 768 1 3 3
## 769 2 4 2
## 770 5 3 4
## 771 1 1 4
## 772 1 2 3
## 773 1 3 4
## 774 1 4 2
## 775 1 4 2
## 776 1 2 4
## 777 1 5 4
## 778 1 3 1
## 779 1 3 4
## 780 2 3 3
## 781 1 4 2
## 782 1 2 4
## 783 1 5 4
## 784 4 2 4
## 785 1 3 4
## 786 3 5 3
## 787 2 2 1
## 788 4 3 3
## 789 1 3 1
## 790 1 2 2
## 791 1 2 2
## 792 1 2 2
## 793 1 2 2
## 794 1 2 4
## 795 1 5 4
## 796 1 5 4
## 797 1 3 2
## 798 1 2 2
## 799 5 5 4
## 800 1 4 4
## 801 5 3 4
## 802 5 4 4
## 803 5 3 4
## 804 5 3 4
## 805 5 3 4
## 806 1 2 4
## 807 2 2 3
## 808 1 5 3
## 809 1 5 4
## 810 1 5 4
## 811 1 3 2
## 812 1 5 4
## 813 1 2 4
## 814 1 3 2
## 815 1 5 2
## 816 1 4 4
## 817 2 5 1
## 818 1 4 4
## 819 1 3 3
## 820 1 2 2
## 821 4 4 1
## 822 1 3 4
## 823 1 2 4
## 824 1 3 3
## 825 1 2 4
## 826 1 1 4
## 827 2 4 4
## 828 1 5 3
## 829 1 3 4
## 830 1 3 2
## 831 1 3 4
## 832 1 3 4
## 833 5 2 4
## 834 1 3 4
## 835 1 2 1
## 836 1 3 1
## 837 1 3 2
## 838 1 4 3
## 839 1 5 2
## 840 3 3 2
## 841 5 5 4
## 842 1 2 2
## 843 3 3 4
## 844 1 3 2
## 845 1 3 2
## 846 3 3 4
## 847 2 2 4
## 848 2 5 3
## 849 2 3 4
## 850 2 3 1
## 851 2 3 4
## 852 1 3 4
## 853 1 5 4
## 854 5 4 4
## 855 1 2 4
## 856 1 4 4
## 857 3 2 4
## 858 1 3 4
## 859 1 2 4
## 860 2 2 4
## 861 5 3 4
## 862 1 2 3
## 863 1 2 1
## 864 1 4 2
## 865 1 3 4
## 866 5 3 3
## 867 1 2 3
## 868 1 2 1
## 869 2 2 4
## 870 1 2 3
## 871 1 3 3
## 872 1 3 4
## 873 1 1 3
## 874 1 2 1
## 875 1 4 4
## 876 1 1 4
## 877 1 1 4
## 878 1 3 3
## 879 1 2 3
## 880 5 5 4
## 881 1 1 4
## 882 1 2 4
## 883 1 5 4
## 884 2 3 2
## 885 2 3 2
## 886 2 4 3
## 887 1 2 4
## 888 1 3 3
## 889 1 2 4
## 890 2 2 4
## 891 1 4 4
## 892 1 4 4
## 893 5 3 2
## 894 1 1 4
## 895 1 1 3
## 896 1 1 3
## 897 3 2 4
## 898 1 3 3
## 899 1 3 4
## 900 5 3 4
## 901 1 4 2
## 902 1 2 4
## 903 1 5 4
## 904 1 3 2
## 905 1 2 1
## 906 1 3 4
## 907 1 3 4
## 908 1 4 4
## 909 1 1 4
## 910 1 3 3
## 911 1 3 3
## 912 1 5 4
## 913 1 4 3
## 914 1 5 4
## 915 1 5 3
## 916 1 3 2
## 917 1 3 2
## 918 1 2 4
## 919 1 5 3
## 920 1 5 4
## 921 1 4 3
## 922 1 2 4
## 923 1 4 4
## 924 1 1 2
## 925 1 2 2
## 926 1 3 1
## 927 1 3 4
## 928 1 4 4
## 929 1 4 4
## 930 1 3 2
## 931 1 5 3
## 932 1 2 3
## 933 1 5 1
## 934 1 4 2
## 935 1 5 2
## 936 1 3 4
## 937 1 3 1
## 938 1 5 4
## 939 1 2 4
## 940 2 5 2
## 941 3 3 2
## 942 1 5 4
## 943 1 5 4
## 944 5 3 1
## 945 1 5 4
## 946 2 1 1
## 947 1 3 2
## 948 5 1 4
## 949 1 4 4
## 950 5 5 4
## 951 1 2 4
## 952 3 4 4
## 953 1 5 2
## 954 2 3 2
## 955 1 2 4
## 956 1 1 2
## 957 2 5 4
## 958 2 3 2
## 959 2 3 4
## 960 2 2 3
## 961 5 3 2
## 962 1 2 2
## 963 1 2 3
## 964 1 2 4
## 965 1 5 4
## 966 1 2 1
## 967 1 2 2
## 968 1 3 4
## 969 1 3 4
## 970 5 3 4
## 971 1 1 3
## 972 1 5 2
## 973 1 3 4
## 974 1 5 2
## 975 1 2 4
## 976 1 2 1
## 977 1 3 1
## 978 1 5 1
## 979 5 5 1
## 980 1 5 3
## 981 1 2 1
## 982 1 3 4
## 983 1 3 2
## 984 1 3 4
## 985 1 4 1
## 986 1 1 4
## 987 1 5 1
## 988 2 4 4
## 989 1 2 1
## 990 1 3 3
## 991 1 1 4
## 992 1 5 4
## 993 5 5 1
## 994 1 5 1
## 995 1 3 4
## 996 1 3 2
## 997 1 5 4
## 998 5 5 4
## 999 5 1 2
## 1000 5 5 4
## Sex...Marital.Status Guarantors Duration.in.Current.address
## 1 2 1 4
## 2 3 1 2
## 3 2 1 4
## 4 3 1 2
## 5 3 1 4
## 6 3 1 3
## 7 3 1 4
## 8 3 1 4
## 9 2 1 4
## 10 2 1 4
## 11 3 1 2
## 12 4 1 4
## 13 2 1 4
## 14 3 1 4
## 15 4 1 4
## 16 3 1 3
## 17 3 1 2
## 18 4 1 3
## 19 3 1 4
## 20 3 1 4
## 21 3 1 3
## 22 3 1 3
## 23 3 1 1
## 24 3 1 3
## 25 3 1 3
## 26 3 1 4
## 27 2 1 4
## 28 3 1 4
## 29 3 1 2
## 30 3 1 4
## 31 3 1 4
## 32 3 1 4
## 33 3 1 4
## 34 2 1 1
## 35 3 1 3
## 36 2 1 4
## 37 3 1 1
## 38 3 1 2
## 39 3 1 1
## 40 2 1 2
## 41 2 1 4
## 42 2 3 4
## 43 2 1 3
## 44 3 1 3
## 45 3 1 4
## 46 2 1 3
## 47 3 1 1
## 48 2 1 2
## 49 4 1 3
## 50 3 1 1
## 51 1 1 2
## 52 3 1 2
## 53 3 1 1
## 54 3 2 4
## 55 3 1 4
## 56 2 1 3
## 57 3 1 4
## 58 4 1 2
## 59 3 1 3
## 60 3 1 4
## 61 3 1 4
## 62 2 1 1
## 63 3 1 1
## 64 3 1 2
## 65 3 1 2
## 66 2 1 1
## 67 3 1 4
## 68 3 1 2
## 69 2 1 1
## 70 3 1 4
## 71 3 1 2
## 72 3 1 4
## 73 3 1 4
## 74 3 1 2
## 75 3 1 3
## 76 3 1 1
## 77 3 1 4
## 78 3 1 4
## 79 4 1 3
## 80 3 1 2
## 81 2 1 4
## 82 3 1 2
## 83 3 1 2
## 84 3 1 2
## 85 3 1 4
## 86 3 1 3
## 87 3 1 3
## 88 2 1 4
## 89 2 1 4
## 90 2 1 4
## 91 3 1 1
## 92 2 1 4
## 93 2 1 1
## 94 3 1 4
## 95 3 1 1
## 96 3 1 2
## 97 2 1 1
## 98 1 1 2
## 99 3 1 2
## 100 2 1 1
## 101 3 1 4
## 102 2 1 4
## 103 3 1 2
## 104 2 1 2
## 105 4 3 2
## 106 3 3 2
## 107 2 3 2
## 108 4 1 4
## 109 2 1 3
## 110 2 1 2
## 111 2 1 2
## 112 2 1 1
## 113 1 1 3
## 114 2 1 1
## 115 3 1 3
## 116 3 1 3
## 117 3 1 3
## 118 2 1 4
## 119 3 1 2
## 120 3 1 3
## 121 2 1 1
## 122 3 1 2
## 123 4 1 3
## 124 2 1 2
## 125 3 1 3
## 126 4 1 3
## 127 2 1 1
## 128 3 1 2
## 129 4 1 2
## 130 3 1 4
## 131 3 1 2
## 132 3 1 4
## 133 3 1 2
## 134 2 1 1
## 135 2 1 4
## 136 1 1 2
## 137 3 1 4
## 138 3 1 3
## 139 2 1 3
## 140 3 1 2
## 141 2 1 4
## 142 3 1 4
## 143 2 1 4
## 144 3 1 3
## 145 2 1 4
## 146 3 1 4
## 147 3 1 4
## 148 1 1 4
## 149 3 1 4
## 150 3 1 2
## 151 2 1 3
## 152 2 1 2
## 153 3 1 1
## 154 3 1 3
## 155 1 1 1
## 156 3 1 2
## 157 2 1 1
## 158 3 2 2
## 159 2 1 3
## 160 3 1 4
## 161 2 1 2
## 162 1 1 4
## 163 2 1 4
## 164 3 1 2
## 165 2 1 4
## 166 3 1 4
## 167 2 1 2
## 168 3 1 2
## 169 2 2 3
## 170 2 1 1
## 171 3 1 1
## 172 2 1 2
## 173 4 1 4
## 174 3 1 1
## 175 3 1 2
## 176 1 1 2
## 177 3 1 3
## 178 3 1 4
## 179 3 1 1
## 180 3 1 1
## 181 2 1 4
## 182 2 1 1
## 183 3 1 3
## 184 2 1 2
## 185 2 1 2
## 186 3 1 2
## 187 3 1 3
## 188 3 1 2
## 189 3 1 1
## 190 2 1 1
## 191 3 1 4
## 192 4 1 2
## 193 2 1 2
## 194 3 1 1
## 195 3 1 2
## 196 3 1 2
## 197 3 1 3
## 198 2 1 2
## 199 3 1 1
## 200 2 1 1
## 201 3 1 2
## 202 3 3 4
## 203 3 1 4
## 204 2 1 2
## 205 3 2 2
## 206 3 2 1
## 207 3 1 2
## 208 3 1 1
## 209 3 2 4
## 210 3 2 4
## 211 3 1 2
## 212 3 1 4
## 213 3 1 4
## 214 3 1 1
## 215 3 1 2
## 216 3 3 1
## 217 2 1 4
## 218 4 1 2
## 219 2 1 1
## 220 3 2 2
## 221 3 2 4
## 222 3 1 4
## 223 3 1 3
## 224 3 1 2
## 225 3 1 2
## 226 2 1 1
## 227 3 1 4
## 228 3 1 2
## 229 2 1 4
## 230 3 1 2
## 231 3 1 1
## 232 4 1 4
## 233 3 1 2
## 234 1 1 4
## 235 4 1 3
## 236 2 1 4
## 237 3 1 2
## 238 3 1 4
## 239 2 1 3
## 240 3 1 4
## 241 4 1 2
## 242 3 1 4
## 243 2 1 4
## 244 3 1 3
## 245 3 1 4
## 246 2 1 4
## 247 3 1 2
## 248 3 1 3
## 249 2 1 2
## 250 3 1 3
## 251 3 1 4
## 252 3 1 4
## 253 3 1 4
## 254 3 1 2
## 255 3 1 2
## 256 3 1 4
## 257 2 1 4
## 258 2 1 3
## 259 3 1 4
## 260 3 1 4
## 261 3 1 3
## 262 2 1 4
## 263 2 1 2
## 264 3 1 4
## 265 2 1 3
## 266 3 1 4
## 267 3 1 2
## 268 3 1 4
## 269 2 1 4
## 270 3 1 4
## 271 3 1 4
## 272 2 1 4
## 273 4 1 4
## 274 3 1 4
## 275 3 1 4
## 276 2 1 3
## 277 2 1 2
## 278 3 1 3
## 279 2 1 4
## 280 1 1 4
## 281 2 1 1
## 282 2 1 2
## 283 2 1 4
## 284 1 1 4
## 285 2 1 2
## 286 2 1 4
## 287 3 1 4
## 288 3 1 2
## 289 3 1 4
## 290 4 1 3
## 291 3 1 1
## 292 2 1 4
## 293 3 1 2
## 294 1 1 2
## 295 2 1 2
## 296 2 1 2
## 297 2 1 4
## 298 3 1 2
## 299 2 1 4
## 300 4 1 3
## 301 4 1 1
## 302 3 1 2
## 303 2 1 4
## 304 3 1 2
## 305 2 1 2
## 306 4 1 4
## 307 3 1 2
## 308 3 3 2
## 309 2 1 4
## 310 3 1 2
## 311 3 1 4
## 312 3 1 3
## 313 2 1 2
## 314 3 1 1
## 315 3 1 4
## 316 3 1 4
## 317 3 1 4
## 318 4 1 1
## 319 3 1 2
## 320 3 1 1
## 321 3 1 2
## 322 2 2 2
## 323 1 1 2
## 324 2 2 3
## 325 3 1 2
## 326 2 1 4
## 327 3 1 2
## 328 3 1 4
## 329 3 1 3
## 330 3 1 4
## 331 2 1 2
## 332 2 1 2
## 333 2 1 2
## 334 2 1 4
## 335 4 1 4
## 336 3 2 1
## 337 3 3 4
## 338 3 2 3
## 339 3 2 2
## 340 3 1 2
## 341 3 1 2
## 342 2 3 4
## 343 3 1 4
## 344 3 3 2
## 345 2 1 3
## 346 3 1 4
## 347 3 1 4
## 348 3 1 4
## 349 3 1 2
## 350 3 1 2
## 351 4 1 1
## 352 2 1 3
## 353 1 1 2
## 354 2 2 2
## 355 3 1 4
## 356 3 1 4
## 357 3 3 4
## 358 3 1 4
## 359 2 1 2
## 360 2 1 4
## 361 3 1 4
## 362 2 1 1
## 363 4 1 2
## 364 2 1 2
## 365 3 1 4
## 366 3 1 4
## 367 2 1 3
## 368 3 1 2
## 369 2 1 4
## 370 1 1 2
## 371 4 1 2
## 372 3 1 2
## 373 2 1 4
## 374 2 1 1
## 375 3 1 3
## 376 3 1 2
## 377 3 1 3
## 378 3 1 2
## 379 3 3 2
## 380 3 1 3
## 381 2 1 4
## 382 2 1 4
## 383 3 1 4
## 384 4 1 4
## 385 3 1 4
## 386 3 1 3
## 387 2 1 1
## 388 3 1 4
## 389 3 1 2
## 390 2 1 4
## 391 3 1 2
## 392 3 1 4
## 393 2 1 4
## 394 3 1 4
## 395 3 1 1
## 396 2 1 4
## 397 3 1 2
## 398 3 1 2
## 399 4 1 4
## 400 3 1 2
## 401 2 1 1
## 402 3 1 4
## 403 2 1 2
## 404 2 1 4
## 405 3 1 2
## 406 3 1 4
## 407 3 1 2
## 408 4 1 1
## 409 4 1 3
## 410 4 1 4
## 411 2 1 4
## 412 3 1 4
## 413 3 1 4
## 414 3 1 2
## 415 3 1 4
## 416 3 1 2
## 417 2 1 4
## 418 3 1 2
## 419 3 1 3
## 420 3 1 4
## 421 4 1 2
## 422 2 1 4
## 423 3 1 3
## 424 2 1 4
## 425 3 1 4
## 426 3 1 4
## 427 3 1 3
## 428 2 1 3
## 429 2 1 4
## 430 2 1 2
## 431 2 1 4
## 432 3 1 4
## 433 3 1 4
## 434 4 1 4
## 435 3 1 4
## 436 3 1 4
## 437 2 1 3
## 438 2 1 2
## 439 3 1 4
## 440 4 1 3
## 441 2 1 4
## 442 3 1 4
## 443 3 1 4
## 444 4 1 2
## 445 3 1 4
## 446 3 1 2
## 447 3 1 4
## 448 2 1 2
## 449 3 1 2
## 450 2 1 3
## 451 3 1 3
## 452 3 1 4
## 453 3 1 4
## 454 2 1 4
## 455 3 1 4
## 456 3 1 1
## 457 3 1 3
## 458 3 1 2
## 459 3 1 2
## 460 4 1 4
## 461 1 1 4
## 462 3 1 4
## 463 2 1 4
## 464 3 1 2
## 465 2 1 2
## 466 2 1 4
## 467 3 1 2
## 468 2 1 4
## 469 3 1 4
## 470 3 1 4
## 471 3 1 4
## 472 3 1 2
## 473 3 1 2
## 474 2 1 4
## 475 3 1 2
## 476 4 1 3
## 477 3 1 4
## 478 3 1 2
## 479 2 1 4
## 480 2 1 4
## 481 3 1 4
## 482 2 1 4
## 483 3 1 2
## 484 3 1 4
## 485 2 1 2
## 486 2 1 2
## 487 1 1 2
## 488 2 1 4
## 489 4 1 2
## 490 3 1 3
## 491 3 1 1
## 492 3 1 4
## 493 3 1 1
## 494 4 2 3
## 495 3 1 3
## 496 4 1 3
## 497 4 1 2
## 498 3 1 4
## 499 2 1 2
## 500 4 1 1
## 501 4 1 2
## 502 4 1 3
## 503 3 1 2
## 504 1 1 2
## 505 3 1 3
## 506 4 1 2
## 507 2 1 2
## 508 3 1 4
## 509 3 1 4
## 510 3 1 2
## 511 4 1 2
## 512 2 1 2
## 513 1 1 2
## 514 4 1 1
## 515 2 1 3
## 516 3 1 1
## 517 3 1 4
## 518 3 1 4
## 519 2 1 1
## 520 2 1 4
## 521 2 1 2
## 522 2 1 2
## 523 2 1 1
## 524 2 1 2
## 525 3 1 2
## 526 2 1 2
## 527 4 1 2
## 528 2 1 1
## 529 3 1 2
## 530 2 1 1
## 531 3 1 1
## 532 3 1 4
## 533 2 1 2
## 534 4 1 1
## 535 2 1 1
## 536 2 1 4
## 537 2 1 1
## 538 3 1 1
## 539 3 1 2
## 540 2 1 4
## 541 2 1 2
## 542 3 1 1
## 543 3 1 2
## 544 2 1 1
## 545 3 1 1
## 546 4 1 2
## 547 2 1 1
## 548 3 1 2
## 549 4 1 1
## 550 2 1 4
## 551 3 1 4
## 552 3 1 3
## 553 4 1 2
## 554 2 1 3
## 555 2 1 1
## 556 2 1 2
## 557 2 1 1
## 558 2 1 1
## 559 2 1 4
## 560 4 1 2
## 561 1 1 4
## 562 3 1 1
## 563 2 1 2
## 564 2 1 2
## 565 3 1 2
## 566 2 1 2
## 567 3 1 3
## 568 2 1 4
## 569 3 1 4
## 570 3 1 3
## 571 3 1 1
## 572 3 1 4
## 573 3 1 3
## 574 3 1 2
## 575 3 1 2
## 576 3 1 2
## 577 3 1 2
## 578 3 1 4
## 579 2 1 4
## 580 2 1 3
## 581 3 3 4
## 582 1 1 1
## 583 3 1 4
## 584 2 1 3
## 585 3 1 4
## 586 3 1 1
## 587 3 1 4
## 588 3 3 2
## 589 2 3 1
## 590 2 1 1
## 591 3 1 2
## 592 3 1 4
## 593 2 2 4
## 594 2 2 4
## 595 1 3 2
## 596 3 3 2
## 597 3 3 3
## 598 3 1 4
## 599 3 3 3
## 600 3 1 2
## 601 3 1 2
## 602 3 1 2
## 603 2 1 3
## 604 3 3 1
## 605 3 1 2
## 606 1 1 3
## 607 3 1 1
## 608 2 1 3
## 609 3 1 3
## 610 3 1 4
## 611 2 1 2
## 612 1 1 1
## 613 2 2 3
## 614 2 3 1
## 615 3 1 2
## 616 2 3 4
## 617 3 1 4
## 618 3 1 3
## 619 1 1 4
## 620 3 1 3
## 621 1 1 4
## 622 3 2 2
## 623 3 1 4
## 624 3 2 2
## 625 3 1 4
## 626 3 1 4
## 627 3 1 4
## 628 3 1 4
## 629 3 1 4
## 630 2 1 4
## 631 2 1 3
## 632 3 3 4
## 633 3 1 4
## 634 3 1 3
## 635 3 1 4
## 636 3 1 1
## 637 3 1 3
## 638 3 1 1
## 639 2 1 4
## 640 3 1 4
## 641 4 1 2
## 642 1 1 1
## 643 2 1 4
## 644 2 1 4
## 645 3 1 4
## 646 1 2 3
## 647 3 1 4
## 648 3 1 3
## 649 3 1 2
## 650 3 1 4
## 651 2 1 4
## 652 3 1 4
## 653 3 1 4
## 654 3 1 4
## 655 3 1 4
## 656 3 1 2
## 657 3 1 4
## 658 2 3 3
## 659 3 3 2
## 660 4 1 3
## 661 3 3 2
## 662 3 3 3
## 663 4 2 4
## 664 3 1 4
## 665 3 1 4
## 666 2 3 4
## 667 2 3 1
## 668 3 3 4
## 669 4 3 2
## 670 3 3 2
## 671 2 3 4
## 672 4 3 2
## 673 2 3 4
## 674 2 3 2
## 675 4 3 1
## 676 1 1 4
## 677 3 1 4
## 678 2 3 4
## 679 3 3 2
## 680 4 3 3
## 681 3 1 4
## 682 4 3 3
## 683 3 1 4
## 684 3 3 4
## 685 3 1 3
## 686 3 1 3
## 687 1 1 2
## 688 2 1 2
## 689 2 1 1
## 690 2 1 2
## 691 2 1 4
## 692 4 1 3
## 693 4 1 1
## 694 2 1 2
## 695 3 1 2
## 696 3 1 4
## 697 2 1 2
## 698 4 1 2
## 699 3 1 4
## 700 2 1 4
## 701 3 1 4
## 702 3 1 4
## 703 2 1 2
## 704 2 1 4
## 705 3 1 4
## 706 3 1 3
## 707 3 2 4
## 708 3 1 4
## 709 2 3 4
## 710 3 1 3
## 711 2 2 4
## 712 3 2 4
## 713 3 1 4
## 714 2 1 4
## 715 3 3 3
## 716 3 1 2
## 717 3 1 1
## 718 3 1 3
## 719 2 1 3
## 720 4 1 2
## 721 3 1 4
## 722 3 1 4
## 723 3 1 2
## 724 3 1 2
## 725 3 1 2
## 726 4 1 3
## 727 2 1 2
## 728 3 1 4
## 729 3 1 2
## 730 3 1 2
## 731 3 1 2
## 732 3 1 4
## 733 3 1 4
## 734 2 1 4
## 735 3 1 4
## 736 1 1 4
## 737 3 1 4
## 738 3 1 3
## 739 3 1 4
## 740 4 1 4
## 741 2 1 4
## 742 1 1 4
## 743 4 1 4
## 744 3 1 4
## 745 2 1 4
## 746 4 1 2
## 747 3 1 4
## 748 3 1 4
## 749 2 1 4
## 750 1 1 4
## 751 3 1 3
## 752 3 1 3
## 753 3 1 3
## 754 2 1 4
## 755 3 1 2
## 756 3 1 3
## 757 3 1 4
## 758 3 1 4
## 759 2 3 2
## 760 1 1 4
## 761 3 1 4
## 762 3 1 4
## 763 2 1 4
## 764 3 1 4
## 765 3 1 4
## 766 3 1 2
## 767 3 3 2
## 768 3 1 2
## 769 3 1 3
## 770 2 1 2
## 771 3 1 2
## 772 3 1 2
## 773 4 1 3
## 774 3 1 1
## 775 3 1 1
## 776 2 1 4
## 777 1 1 3
## 778 1 1 4
## 779 4 1 2
## 780 3 1 2
## 781 3 1 2
## 782 4 1 4
## 783 3 1 2
## 784 2 1 2
## 785 1 1 1
## 786 3 1 2
## 787 2 1 1
## 788 4 1 3
## 789 3 1 4
## 790 2 1 4
## 791 2 1 1
## 792 2 1 3
## 793 1 1 1
## 794 2 1 4
## 795 3 1 4
## 796 3 1 4
## 797 3 1 1
## 798 1 1 1
## 799 2 1 2
## 800 3 1 3
## 801 2 1 2
## 802 2 1 4
## 803 2 1 4
## 804 2 1 2
## 805 4 1 2
## 806 2 1 4
## 807 2 1 3
## 808 3 1 4
## 809 3 1 2
## 810 2 1 4
## 811 3 1 2
## 812 3 2 4
## 813 2 1 4
## 814 2 1 2
## 815 2 1 4
## 816 2 1 1
## 817 2 1 4
## 818 3 1 2
## 819 2 1 4
## 820 2 2 2
## 821 3 2 2
## 822 3 1 3
## 823 1 1 3
## 824 2 1 2
## 825 2 1 2
## 826 3 1 4
## 827 3 1 4
## 828 3 2 4
## 829 3 1 2
## 830 2 1 2
## 831 2 1 1
## 832 3 1 2
## 833 3 1 4
## 834 3 1 2
## 835 2 1 4
## 836 2 1 4
## 837 3 1 2
## 838 1 1 3
## 839 3 1 4
## 840 2 1 2
## 841 3 1 4
## 842 3 1 2
## 843 2 1 4
## 844 3 2 3
## 845 3 2 3
## 846 3 1 2
## 847 3 1 3
## 848 2 1 4
## 849 2 2 4
## 850 3 1 4
## 851 3 3 4
## 852 2 1 4
## 853 1 1 4
## 854 3 1 2
## 855 4 2 1
## 856 3 1 4
## 857 3 1 4
## 858 1 1 4
## 859 3 1 3
## 860 4 1 3
## 861 1 1 2
## 862 2 1 4
## 863 4 1 1
## 864 3 1 2
## 865 3 1 3
## 866 3 1 4
## 867 2 1 1
## 868 4 1 4
## 869 2 1 4
## 870 2 1 4
## 871 3 1 4
## 872 2 1 2
## 873 2 2 4
## 874 1 1 1
## 875 2 1 4
## 876 4 1 2
## 877 4 1 2
## 878 2 1 2
## 879 2 1 4
## 880 3 1 3
## 881 3 1 1
## 882 3 1 2
## 883 3 1 4
## 884 4 1 2
## 885 2 1 4
## 886 3 1 2
## 887 2 1 1
## 888 2 1 2
## 889 2 1 4
## 890 3 2 1
## 891 3 1 2
## 892 3 1 4
## 893 4 1 1
## 894 2 1 2
## 895 2 1 2
## 896 2 1 4
## 897 3 1 2
## 898 2 1 3
## 899 3 1 2
## 900 3 3 4
## 901 3 2 3
## 902 3 1 1
## 903 3 1 4
## 904 3 2 3
## 905 2 1 4
## 906 2 1 4
## 907 3 1 3
## 908 2 1 4
## 909 3 1 2
## 910 3 1 4
## 911 3 1 4
## 912 3 1 3
## 913 3 1 2
## 914 3 1 4
## 915 3 1 4
## 916 3 1 2
## 917 2 1 4
## 918 2 1 3
## 919 3 1 4
## 920 3 1 4
## 921 3 1 4
## 922 3 1 2
## 923 2 1 4
## 924 3 1 4
## 925 3 1 1
## 926 2 1 4
## 927 3 1 2
## 928 4 1 4
## 929 3 1 4
## 930 3 1 2
## 931 3 3 3
## 932 2 1 1
## 933 1 1 1
## 934 1 1 3
## 935 3 3 4
## 936 4 3 2
## 937 2 1 2
## 938 3 1 4
## 939 3 1 2
## 940 3 1 4
## 941 3 1 2
## 942 3 1 4
## 943 3 1 4
## 944 3 1 4
## 945 3 1 4
## 946 3 1 2
## 947 3 1 2
## 948 2 1 1
## 949 3 1 4
## 950 2 1 3
## 951 3 1 2
## 952 4 1 2
## 953 2 1 4
## 954 2 1 4
## 955 2 1 1
## 956 2 1 4
## 957 1 1 2
## 958 2 2 4
## 959 2 1 4
## 960 4 1 2
## 961 3 1 4
## 962 3 1 1
## 963 3 1 4
## 964 2 1 4
## 965 3 1 3
## 966 2 1 2
## 967 3 1 2
## 968 4 1 3
## 969 3 1 4
## 970 3 1 2
## 971 3 1 2
## 972 2 1 4
## 973 3 2 2
## 974 3 1 4
## 975 2 1 4
## 976 1 1 1
## 977 2 1 2
## 978 3 1 4
## 979 2 1 2
## 980 3 1 4
## 981 4 1 1
## 982 4 1 2
## 983 2 1 3
## 984 2 1 4
## 985 4 3 1
## 986 3 1 2
## 987 1 1 4
## 988 4 1 1
## 989 2 1 2
## 990 2 1 4
## 991 2 1 1
## 992 2 1 2
## 993 3 1 4
## 994 2 1 4
## 995 3 1 2
## 996 3 1 4
## 997 3 2 1
## 998 3 1 4
## 999 3 1 1
## 1000 3 1 4
## Most.valuable.available.asset Age..years. Concurrent.Credits
## 1 2 21 3
## 2 1 36 3
## 3 1 23 3
## 4 1 39 3
## 5 2 38 1
## 6 1 48 3
## 7 1 39 3
## 8 1 40 3
## 9 3 65 3
## 10 4 23 3
## 11 1 36 3
## 12 3 24 3
## 13 3 31 3
## 14 4 31 3
## 15 3 23 3
## 16 1 44 3
## 17 1 40 3
## 18 1 25 3
## 19 1 36 3
## 20 2 39 3
## 21 1 37 3
## 22 1 49 1
## 23 4 33 3
## 24 2 26 3
## 25 1 44 3
## 26 2 51 3
## 27 2 24 3
## 28 1 37 3
## 29 4 29 3
## 30 4 56 3
## 31 2 47 3
## 32 3 37 3
## 33 3 34 3
## 34 3 28 3
## 35 1 36 3
## 36 4 39 3
## 37 1 38 3
## 38 4 26 3
## 39 2 31 3
## 40 3 41 3
## 41 1 23 3
## 42 1 58 3
## 43 1 36 3
## 44 4 34 3
## 45 4 61 3
## 46 3 23 3
## 47 1 25 3
## 48 1 30 3
## 49 1 33 3
## 50 1 26 3
## 51 1 49 3
## 52 1 23 3
## 53 1 30 3
## 54 1 49 3
## 55 3 41 3
## 56 1 58 3
## 57 1 63 3
## 58 1 27 3
## 59 2 41 3
## 60 1 36 3
## 61 1 44 3
## 62 4 29 3
## 63 1 47 3
## 64 3 45 3
## 65 1 43 3
## 66 2 27 3
## 67 3 52 3
## 68 3 28 3
## 69 3 22 3
## 70 4 60 3
## 71 3 32 3
## 72 3 58 3
## 73 3 39 3
## 74 3 31 2
## 75 3 37 3
## 76 3 24 3
## 77 3 36 3
## 78 1 60 3
## 79 3 30 3
## 80 3 35 3
## 81 3 37 3
## 82 3 51 3
## 83 3 30 3
## 84 3 36 3
## 85 2 63 3
## 86 2 31 3
## 87 3 35 3
## 88 1 34 3
## 89 1 39 3
## 90 3 42 3
## 91 3 27 3
## 92 3 25 3
## 93 3 28 3
## 94 1 59 3
## 95 4 41 3
## 96 1 32 2
## 97 1 23 3
## 98 1 30 2
## 99 1 25 3
## 100 1 41 1
## 101 1 40 3
## 102 2 22 3
## 103 2 34 1
## 104 2 54 3
## 105 3 33 3
## 106 1 31 3
## 107 1 29 3
## 108 1 39 3
## 109 3 38 2
## 110 3 61 3
## 111 2 29 3
## 112 2 49 1
## 113 3 36 3
## 114 1 26 3
## 115 3 35 3
## 116 1 28 3
## 117 3 35 3
## 118 3 28 3
## 119 3 52 3
## 120 4 32 3
## 121 4 30 3
## 122 2 35 3
## 123 3 30 3
## 124 3 43 3
## 125 2 47 2
## 126 4 47 3
## 127 1 24 3
## 128 3 32 3
## 129 2 30 3
## 130 1 36 3
## 131 1 26 3
## 132 1 43 3
## 133 1 41 3
## 134 1 26 3
## 135 3 64 3
## 136 1 33 3
## 137 1 54 3
## 138 3 32 1
## 139 2 39 3
## 140 3 31 3
## 141 1 45 3
## 142 1 64 3
## 143 3 42 3
## 144 3 31 3
## 145 3 25 3
## 146 1 46 3
## 147 4 49 1
## 148 2 49 3
## 149 3 36 3
## 150 2 48 3
## 151 1 42 3
## 152 3 29 1
## 153 4 35 3
## 154 3 38 1
## 155 3 26 3
## 156 1 35 3
## 157 3 23 1
## 158 3 38 3
## 159 4 59 3
## 160 3 28 3
## 161 2 35 3
## 162 1 36 3
## 163 2 25 3
## 164 4 28 3
## 165 2 23 3
## 166 3 48 3
## 167 3 25 3
## 168 1 74 3
## 169 3 24 1
## 170 3 28 3
## 171 3 24 3
## 172 1 24 3
## 173 1 23 3
## 174 3 32 1
## 175 3 31 3
## 176 3 36 3
## 177 2 27 3
## 178 2 44 3
## 179 3 34 2
## 180 3 37 3
## 181 1 23 3
## 182 2 30 3
## 183 3 25 1
## 184 3 33 3
## 185 3 27 3
## 186 3 31 3
## 187 3 50 3
## 188 3 31 3
## 189 3 32 3
## 190 3 28 1
## 191 3 29 3
## 192 3 27 3
## 193 3 24 3
## 194 2 54 3
## 195 3 25 3
## 196 3 35 3
## 197 4 45 3
## 198 4 28 3
## 199 4 35 3
## 200 1 27 2
## 201 3 30 1
## 202 1 40 1
## 203 3 49 1
## 204 2 30 3
## 205 1 24 3
## 206 1 33 1
## 207 1 20 3
## 208 2 23 3
## 209 4 36 3
## 210 3 35 3
## 211 1 29 3
## 212 1 22 2
## 213 1 22 2
## 214 1 74 3
## 215 1 35 3
## 216 2 37 3
## 217 1 31 3
## 218 1 27 3
## 219 1 35 3
## 220 2 45 3
## 221 4 36 1
## 222 2 49 2
## 223 3 35 3
## 224 3 27 3
## 225 3 28 3
## 226 1 43 3
## 227 3 35 3
## 228 3 27 3
## 229 1 36 1
## 230 3 30 3
## 231 1 36 3
## 232 3 39 3
## 233 3 45 3
## 234 2 40 3
## 235 3 25 1
## 236 3 55 3
## 237 1 50 3
## 238 1 64 1
## 239 1 23 3
## 240 3 24 3
## 241 2 47 3
## 242 2 42 3
## 243 2 24 3
## 244 2 32 1
## 245 2 45 1
## 246 3 23 3
## 247 3 24 3
## 248 2 35 3
## 249 1 25 3
## 250 3 26 3
## 251 3 43 3
## 252 1 44 3
## 253 3 38 3
## 254 3 28 3
## 255 3 38 3
## 256 2 26 3
## 257 2 27 3
## 258 1 23 3
## 259 1 52 3
## 260 1 74 3
## 261 2 27 1
## 262 3 35 3
## 263 2 23 3
## 264 3 20 3
## 265 3 34 3
## 266 3 40 3
## 267 1 37 3
## 268 2 36 3
## 269 2 22 3
## 270 3 34 1
## 271 2 50 3
## 272 3 40 3
## 273 1 23 3
## 274 2 53 3
## 275 3 35 3
## 276 1 35 3
## 277 3 54 1
## 278 2 27 3
## 279 3 28 3
## 280 1 49 3
## 281 2 29 1
## 282 3 46 3
## 283 3 20 3
## 284 2 47 3
## 285 3 29 1
## 286 1 54 3
## 287 3 52 3
## 288 1 32 3
## 289 4 51 3
## 290 1 33 1
## 291 2 37 3
## 292 3 20 3
## 293 1 34 3
## 294 3 31 1
## 295 2 30 3
## 296 2 30 1
## 297 2 22 3
## 298 1 34 3
## 299 1 19 3
## 300 1 34 3
## 301 3 45 1
## 302 3 25 1
## 303 3 26 3
## 304 1 33 3
## 305 1 28 3
## 306 1 41 3
## 307 1 36 1
## 308 1 26 2
## 309 2 28 3
## 310 2 39 3
## 311 1 65 3
## 312 3 38 3
## 313 1 41 1
## 314 2 26 3
## 315 1 41 3
## 316 4 45 1
## 317 3 40 1
## 318 3 24 3
## 319 2 31 3
## 320 4 35 1
## 321 4 40 3
## 322 1 28 3
## 323 1 28 3
## 324 1 27 3
## 325 1 31 3
## 326 1 37 3
## 327 1 35 3
## 328 1 46 3
## 329 2 32 3
## 330 3 33 3
## 331 3 33 3
## 332 3 26 3
## 333 3 24 3
## 334 2 25 3
## 335 3 54 3
## 336 2 24 3
## 337 1 48 3
## 338 2 49 3
## 339 1 32 3
## 340 2 55 3
## 341 3 40 3
## 342 3 22 1
## 343 4 38 3
## 344 1 26 3
## 345 3 51 3
## 346 2 38 3
## 347 4 46 3
## 348 4 63 3
## 349 2 30 3
## 350 3 32 3
## 351 3 26 3
## 352 3 34 3
## 353 3 46 1
## 354 1 29 3
## 355 4 42 1
## 356 4 42 3
## 357 4 63 1
## 358 1 32 3
## 359 3 23 3
## 360 3 59 3
## 361 1 61 3
## 362 3 22 3
## 363 2 27 3
## 364 1 26 3
## 365 4 37 3
## 366 2 34 3
## 367 3 57 3
## 368 1 31 3
## 369 3 28 3
## 370 1 24 3
## 371 3 21 2
## 372 3 34 3
## 373 4 29 3
## 374 1 27 3
## 375 1 34 3
## 376 3 27 3
## 377 1 28 3
## 378 3 30 3
## 379 1 22 3
## 380 2 36 3
## 381 3 22 3
## 382 3 26 3
## 383 4 63 1
## 384 1 22 3
## 385 1 36 3
## 386 1 24 3
## 387 2 30 3
## 388 2 43 3
## 389 3 37 3
## 390 1 26 3
## 391 3 33 3
## 392 4 66 1
## 393 2 50 3
## 394 4 35 3
## 395 3 25 2
## 396 1 25 3
## 397 3 33 3
## 398 1 30 1
## 399 1 41 3
## 400 3 32 3
## 401 2 32 3
## 402 1 39 3
## 403 2 23 3
## 404 2 26 3
## 405 3 32 3
## 406 4 40 1
## 407 3 30 3
## 408 1 27 1
## 409 1 36 1
## 410 2 29 3
## 411 1 64 3
## 412 1 32 3
## 413 3 35 3
## 414 3 44 3
## 415 2 42 3
## 416 3 29 3
## 417 1 57 3
## 418 1 27 3
## 419 2 29 3
## 420 3 44 3
## 421 1 28 3
## 422 3 40 3
## 423 3 68 3
## 424 4 52 3
## 425 3 46 3
## 426 1 52 3
## 427 4 32 3
## 428 3 34 3
## 429 2 23 1
## 430 1 33 3
## 431 3 26 3
## 432 4 55 3
## 433 3 27 1
## 434 1 28 1
## 435 4 57 3
## 436 4 36 3
## 437 3 31 3
## 438 1 24 3
## 439 3 43 2
## 440 3 40 3
## 441 2 23 3
## 442 3 26 3
## 443 2 30 3
## 444 1 40 3
## 445 1 56 3
## 446 1 50 3
## 447 4 36 3
## 448 3 21 3
## 449 4 32 3
## 450 1 66 3
## 451 1 66 3
## 452 3 39 3
## 453 4 70 1
## 454 4 24 3
## 455 4 22 3
## 456 1 27 3
## 457 3 29 1
## 458 2 35 3
## 459 2 29 1
## 460 3 26 3
## 461 1 60 3
## 462 2 40 2
## 463 3 23 3
## 464 3 45 3
## 465 1 24 3
## 466 1 55 3
## 467 3 30 3
## 468 4 35 3
## 469 3 24 3
## 470 2 47 1
## 471 4 47 1
## 472 3 25 3
## 473 2 37 3
## 474 1 33 1
## 475 3 31 3
## 476 3 27 3
## 477 2 47 1
## 478 3 25 3
## 479 4 57 1
## 480 3 67 3
## 481 2 48 3
## 482 1 40 3
## 483 4 32 3
## 484 2 49 3
## 485 2 35 3
## 486 1 27 3
## 487 3 35 3
## 488 2 37 3
## 489 1 26 3
## 490 2 45 3
## 491 1 33 3
## 492 2 42 2
## 493 2 31 1
## 494 1 46 3
## 495 1 54 3
## 496 2 26 3
## 497 1 29 3
## 498 2 43 3
## 499 2 38 3
## 500 1 35 3
## 501 1 28 3
## 502 2 27 3
## 503 2 51 3
## 504 1 33 3
## 505 3 38 3
## 506 1 30 3
## 507 1 38 3
## 508 2 46 3
## 509 3 33 3
## 510 2 43 3
## 511 3 24 3
## 512 4 56 3
## 513 3 37 3
## 514 2 22 3
## 515 3 20 3
## 516 3 29 3
## 517 3 36 3
## 518 4 37 2
## 519 3 44 3
## 520 2 23 3
## 521 3 28 3
## 522 3 26 3
## 523 1 29 3
## 524 1 21 3
## 525 3 34 3
## 526 3 31 2
## 527 1 40 3
## 528 1 27 3
## 529 4 32 3
## 530 3 25 3
## 531 1 42 3
## 532 3 43 3
## 533 3 44 3
## 534 2 32 3
## 535 3 27 2
## 536 3 20 3
## 537 1 37 3
## 538 1 42 3
## 539 2 46 3
## 540 3 33 1
## 541 3 22 3
## 542 3 41 3
## 543 2 37 3
## 544 2 27 3
## 545 1 42 3
## 546 1 26 3
## 547 3 26 3
## 548 2 27 3
## 549 1 22 3
## 550 3 37 3
## 551 2 30 3
## 552 1 49 3
## 553 1 27 3
## 554 2 40 3
## 555 1 20 3
## 556 3 26 3
## 557 3 30 3
## 558 2 33 1
## 559 2 26 3
## 560 1 35 3
## 561 1 44 3
## 562 3 27 3
## 563 2 24 3
## 564 4 47 3
## 565 2 26 3
## 566 2 23 3
## 567 2 31 3
## 568 3 52 3
## 569 1 43 3
## 570 3 37 2
## 571 1 26 3
## 572 4 35 3
## 573 3 30 3
## 574 3 34 2
## 575 3 35 3
## 576 3 48 1
## 577 3 42 3
## 578 3 40 3
## 579 3 23 3
## 580 3 30 3
## 581 3 24 1
## 582 2 33 3
## 583 3 31 3
## 584 2 22 3
## 585 4 53 3
## 586 4 34 3
## 587 4 36 3
## 588 2 37 3
## 589 1 25 3
## 590 1 34 3
## 591 1 27 3
## 592 4 51 1
## 593 4 23 3
## 594 4 29 3
## 595 1 32 3
## 596 2 28 3
## 597 2 38 3
## 598 1 65 3
## 599 2 39 3
## 600 2 29 3
## 601 2 26 3
## 602 2 30 3
## 603 2 75 3
## 604 2 21 3
## 605 2 41 1
## 606 2 25 3
## 607 2 35 2
## 608 2 37 3
## 609 2 26 3
## 610 4 30 3
## 611 2 23 1
## 612 3 42 3
## 613 2 30 3
## 614 2 46 3
## 615 4 29 3
## 616 2 29 3
## 617 4 38 3
## 618 3 30 3
## 619 2 31 3
## 620 1 47 3
## 621 4 48 3
## 622 4 27 1
## 623 4 66 3
## 624 2 29 3
## 625 4 75 3
## 626 4 36 3
## 627 4 38 3
## 628 3 46 3
## 629 2 36 3
## 630 4 55 3
## 631 2 25 3
## 632 2 45 3
## 633 2 28 3
## 634 2 30 3
## 635 4 39 1
## 636 4 22 1
## 637 2 60 3
## 638 2 28 1
## 639 2 24 3
## 640 2 63 3
## 641 2 46 3
## 642 2 33 3
## 643 4 44 3
## 644 4 58 2
## 645 4 54 3
## 646 3 43 3
## 647 2 52 1
## 648 3 32 1
## 649 2 41 2
## 650 3 34 3
## 651 2 48 3
## 652 2 38 3
## 653 2 38 3
## 654 2 53 3
## 655 4 38 3
## 656 2 42 3
## 657 4 38 1
## 658 1 64 3
## 659 1 35 3
## 660 1 26 3
## 661 1 33 3
## 662 1 29 3
## 663 1 20 3
## 664 3 28 3
## 665 1 47 3
## 666 1 49 3
## 667 1 45 3
## 668 1 23 3
## 669 1 25 3
## 670 1 34 3
## 671 2 23 3
## 672 1 32 3
## 673 1 26 3
## 674 1 44 3
## 675 1 26 1
## 676 3 28 3
## 677 1 25 3
## 678 1 48 1
## 679 1 35 1
## 680 1 28 1
## 681 1 23 2
## 682 1 40 1
## 683 2 36 1
## 684 1 50 3
## 685 2 24 3
## 686 2 40 3
## 687 3 31 3
## 688 4 29 1
## 689 2 45 2
## 690 3 32 3
## 691 1 21 3
## 692 1 27 3
## 693 2 22 3
## 694 2 46 3
## 695 1 24 3
## 696 3 21 3
## 697 3 36 2
## 698 2 28 3
## 699 3 27 3
## 700 2 57 3
## 701 4 47 3
## 702 3 34 3
## 703 3 23 3
## 704 2 57 3
## 705 1 67 3
## 706 2 36 3
## 707 4 20 3
## 708 1 36 3
## 709 3 37 3
## 710 4 31 1
## 711 4 62 3
## 712 3 65 3
## 713 1 36 3
## 714 2 41 3
## 715 2 26 3
## 716 3 27 3
## 717 4 50 3
## 718 2 54 3
## 719 1 27 3
## 720 3 24 3
## 721 4 50 3
## 722 3 40 3
## 723 1 28 2
## 724 3 31 2
## 725 3 27 2
## 726 3 21 3
## 727 3 31 1
## 728 3 39 3
## 729 3 30 3
## 730 4 27 3
## 731 4 55 1
## 732 4 34 3
## 733 4 23 3
## 734 3 23 3
## 735 4 42 3
## 736 1 62 3
## 737 3 37 3
## 738 1 46 3
## 739 3 38 3
## 740 3 31 1
## 741 1 31 3
## 742 1 61 3
## 743 3 20 3
## 744 3 63 3
## 745 2 24 2
## 746 2 21 3
## 747 4 36 1
## 748 4 44 3
## 749 2 67 3
## 750 4 51 3
## 751 4 30 3
## 752 3 28 3
## 753 4 32 3
## 754 3 28 3
## 755 2 23 3
## 756 3 33 3
## 757 3 60 3
## 758 3 48 1
## 759 4 24 1
## 760 3 27 3
## 761 1 28 3
## 762 4 65 3
## 763 2 29 1
## 764 4 42 3
## 765 3 47 3
## 766 3 22 3
## 767 1 25 3
## 768 2 32 1
## 769 4 29 3
## 770 3 24 3
## 771 3 30 2
## 772 4 27 3
## 773 1 47 3
## 774 3 24 3
## 775 3 24 3
## 776 3 34 3
## 777 4 40 3
## 778 1 44 3
## 779 3 33 3
## 780 2 40 3
## 781 2 49 3
## 782 1 48 2
## 783 4 57 3
## 784 2 24 1
## 785 4 29 3
## 786 3 35 1
## 787 2 32 2
## 788 2 61 2
## 789 1 36 3
## 790 3 25 1
## 791 1 26 3
## 792 1 25 3
## 793 2 55 1
## 794 2 53 3
## 795 1 66 3
## 796 4 61 3
## 797 1 34 3
## 798 3 33 3
## 799 3 29 1
## 800 4 38 1
## 801 2 35 3
## 802 4 32 3
## 803 1 25 3
## 804 2 33 3
## 805 3 23 3
## 806 2 24 3
## 807 3 28 3
## 808 4 63 3
## 809 2 39 3
## 810 4 35 3
## 811 3 23 3
## 812 4 36 3
## 813 1 23 3
## 814 1 24 3
## 815 4 74 1
## 816 1 22 3
## 817 4 48 3
## 818 1 26 3
## 819 1 24 3
## 820 3 19 3
## 821 4 27 1
## 822 2 29 2
## 823 2 32 3
## 824 1 25 3
## 825 3 29 3
## 826 2 47 3
## 827 4 34 3
## 828 2 43 3
## 829 3 30 3
## 830 1 22 3
## 831 3 42 3
## 832 3 26 3
## 833 3 27 3
## 834 3 26 3
## 835 2 32 3
## 836 3 23 3
## 837 3 36 2
## 838 3 43 3
## 839 4 39 1
## 840 2 26 3
## 841 4 40 3
## 842 1 31 3
## 843 3 29 3
## 844 3 29 1
## 845 3 39 3
## 846 2 23 3
## 847 4 30 2
## 848 4 60 1
## 849 4 50 3
## 850 4 47 3
## 851 2 21 3
## 852 1 24 1
## 853 1 31 3
## 854 1 37 1
## 855 2 43 3
## 856 4 46 3
## 857 4 30 3
## 858 3 31 3
## 859 3 34 3
## 860 4 33 3
## 861 1 38 1
## 862 2 24 3
## 863 1 23 3
## 864 2 31 1
## 865 4 27 1
## 866 4 39 3
## 867 3 25 3
## 868 3 28 3
## 869 3 27 1
## 870 3 25 3
## 871 3 54 3
## 872 1 25 2
## 873 1 22 3
## 874 3 28 3
## 875 4 34 1
## 876 3 28 3
## 877 3 28 3
## 878 3 31 3
## 879 2 22 3
## 880 3 40 2
## 881 3 25 3
## 882 3 34 3
## 883 4 42 1
## 884 2 25 3
## 885 3 28 3
## 886 2 24 3
## 887 2 27 3
## 888 4 25 3
## 889 1 35 3
## 890 4 29 3
## 891 4 27 3
## 892 3 24 3
## 893 1 25 3
## 894 3 33 3
## 895 2 34 3
## 896 4 38 3
## 897 1 41 1
## 898 1 21 3
## 899 3 36 3
## 900 2 27 3
## 901 2 31 3
## 902 1 33 3
## 903 4 57 1
## 904 3 42 3
## 905 2 26 3
## 906 1 24 3
## 907 3 44 1
## 908 1 23 3
## 909 1 43 3
## 910 4 53 3
## 911 4 53 3
## 912 2 35 3
## 913 2 26 1
## 914 3 31 1
## 915 4 23 1
## 916 3 22 3
## 917 3 20 3
## 918 2 25 3
## 919 4 24 3
## 920 4 46 3
## 921 3 27 1
## 922 3 46 1
## 923 3 23 3
## 924 2 50 3
## 925 2 26 2
## 926 1 20 3
## 927 2 31 1
## 928 2 21 3
## 929 4 39 3
## 930 3 25 2
## 931 1 30 3
## 932 1 37 1
## 933 1 46 3
## 934 3 36 3
## 935 2 43 3
## 936 2 33 1
## 937 3 29 1
## 938 3 36 3
## 939 1 23 1
## 940 3 42 2
## 941 4 44 3
## 942 3 41 1
## 943 3 41 1
## 944 4 37 1
## 945 1 57 3
## 946 2 34 2
## 947 1 25 3
## 948 1 53 1
## 949 4 32 1
## 950 2 33 3
## 951 2 24 1
## 952 1 28 3
## 953 2 39 3
## 954 3 24 3
## 955 1 26 1
## 956 4 55 3
## 957 3 61 3
## 958 3 21 1
## 959 3 26 3
## 960 3 22 3
## 961 3 68 2
## 962 3 22 3
## 963 4 58 3
## 964 1 23 3
## 965 3 37 3
## 966 3 26 1
## 967 3 27 1
## 968 1 26 3
## 969 4 23 3
## 970 2 40 1
## 971 3 33 3
## 972 4 42 2
## 973 1 37 3
## 974 3 29 3
## 975 2 23 3
## 976 4 34 1
## 977 2 32 1
## 978 4 68 1
## 979 2 25 3
## 980 4 35 3
## 981 2 22 3
## 982 3 28 3
## 983 3 30 3
## 984 3 25 1
## 985 1 34 3
## 986 3 42 2
## 987 2 45 3
## 988 2 20 3
## 989 3 23 3
## 990 2 20 3
## 991 1 27 3
## 992 4 44 3
## 993 2 51 3
## 994 1 33 1
## 995 2 28 3
## 996 1 21 3
## 997 1 45 3
## 998 4 30 3
## 999 4 52 3
## 1000 2 31 3
## Type.of.apartment No.of.Credits.at.this.Bank Occupation
## 1 1 1 3
## 2 1 2 3
## 3 1 1 2
## 4 1 2 2
## 5 2 2 2
## 6 1 2 2
## 7 2 2 2
## 8 2 1 2
## 9 2 2 1
## 10 1 1 1
## 11 1 2 3
## 12 1 2 3
## 13 2 1 3
## 14 2 1 4
## 15 1 2 2
## 16 1 1 3
## 17 2 2 2
## 18 1 1 3
## 19 2 1 3
## 20 2 2 2
## 21 1 3 3
## 22 2 2 2
## 23 1 1 2
## 24 2 1 3
## 25 2 2 2
## 26 2 1 3
## 27 1 1 3
## 28 2 3 2
## 29 2 1 3
## 30 3 1 3
## 31 2 1 3
## 32 2 2 3
## 33 2 2 4
## 34 2 1 3
## 35 2 1 3
## 36 2 2 3
## 37 2 2 2
## 38 2 2 3
## 39 2 1 3
## 40 1 2 4
## 41 2 2 3
## 42 2 1 2
## 43 2 2 3
## 44 2 2 3
## 45 3 1 3
## 46 1 1 3
## 47 2 1 3
## 48 2 2 3
## 49 2 1 3
## 50 2 2 3
## 51 2 1 2
## 52 2 1 3
## 53 2 2 3
## 54 2 1 3
## 55 2 1 4
## 56 2 4 2
## 57 2 2 2
## 58 2 1 3
## 59 2 1 3
## 60 2 1 3
## 61 2 1 3
## 62 2 1 4
## 63 2 1 3
## 64 2 2 3
## 65 2 2 2
## 66 2 2 3
## 67 2 1 3
## 68 2 1 3
## 69 2 1 3
## 70 3 2 3
## 71 2 2 3
## 72 2 1 3
## 73 2 1 3
## 74 2 1 3
## 75 2 1 4
## 76 2 1 3
## 77 2 1 4
## 78 2 1 3
## 79 2 2 3
## 80 2 1 3
## 81 2 1 3
## 82 2 1 3
## 83 2 2 3
## 84 2 1 3
## 85 2 1 3
## 86 2 1 3
## 87 2 2 3
## 88 2 2 3
## 89 2 2 2
## 90 1 2 3
## 91 2 1 3
## 92 2 1 3
## 93 2 2 3
## 94 2 1 3
## 95 2 1 3
## 96 2 2 2
## 97 2 1 2
## 98 2 2 4
## 99 2 1 3
## 100 2 2 2
## 101 2 1 3
## 102 2 1 2
## 103 2 2 4
## 104 1 1 3
## 105 2 2 3
## 106 2 1 3
## 107 2 2 4
## 108 2 1 3
## 109 2 1 3
## 110 2 1 3
## 111 2 1 3
## 112 2 1 3
## 113 2 1 4
## 114 2 1 3
## 115 2 1 3
## 116 1 1 2
## 117 1 1 3
## 118 1 1 3
## 119 2 2 3
## 120 1 1 3
## 121 2 1 4
## 122 2 2 3
## 123 1 1 4
## 124 2 1 2
## 125 2 1 3
## 126 3 3 3
## 127 2 1 3
## 128 2 1 3
## 129 2 1 4
## 130 2 1 3
## 131 2 1 3
## 132 2 1 3
## 133 2 1 3
## 134 2 1 3
## 135 2 1 3
## 136 2 1 3
## 137 2 1 3
## 138 2 1 3
## 139 2 2 2
## 140 2 2 3
## 141 2 1 2
## 142 2 1 2
## 143 2 1 3
## 144 2 1 4
## 145 2 1 3
## 146 2 1 4
## 147 3 1 3
## 148 2 1 2
## 149 2 1 3
## 150 2 2 2
## 151 1 2 3
## 152 2 1 3
## 153 3 2 3
## 154 2 2 3
## 155 2 1 3
## 156 2 2 2
## 157 2 1 3
## 158 2 1 3
## 159 1 1 3
## 160 1 3 3
## 161 2 2 3
## 162 2 2 3
## 163 1 1 3
## 164 3 1 3
## 165 1 1 3
## 166 2 3 3
## 167 2 2 3
## 168 2 1 4
## 169 2 2 3
## 170 2 2 3
## 171 2 1 3
## 172 2 1 2
## 173 1 1 3
## 174 2 1 3
## 175 1 2 4
## 176 2 1 4
## 177 2 2 2
## 178 2 1 3
## 179 2 2 3
## 180 2 1 4
## 181 1 1 3
## 182 2 2 3
## 183 2 3 3
## 184 2 1 3
## 185 2 2 3
## 186 2 2 3
## 187 2 1 3
## 188 2 1 3
## 189 2 2 3
## 190 2 1 4
## 191 1 1 4
## 192 2 1 3
## 193 2 1 3
## 194 2 1 3
## 195 2 1 3
## 196 2 2 4
## 197 2 2 4
## 198 2 2 3
## 199 2 1 3
## 200 2 1 3
## 201 2 1 4
## 202 1 2 3
## 203 2 1 2
## 204 2 1 3
## 205 2 1 2
## 206 2 1 4
## 207 1 1 4
## 208 2 1 3
## 209 3 1 4
## 210 2 1 3
## 211 2 1 2
## 212 2 1 3
## 213 2 1 3
## 214 2 3 1
## 215 2 1 1
## 216 2 1 2
## 217 1 1 3
## 218 2 1 1
## 219 2 1 2
## 220 2 1 2
## 221 3 1 4
## 222 2 2 2
## 223 2 2 2
## 224 2 2 3
## 225 2 1 3
## 226 2 2 2
## 227 2 1 2
## 228 2 2 2
## 229 2 1 2
## 230 2 1 3
## 231 2 1 4
## 232 2 1 2
## 233 2 1 4
## 234 2 1 4
## 235 2 1 2
## 236 2 1 3
## 237 2 2 3
## 238 1 1 2
## 239 1 1 2
## 240 2 1 3
## 241 2 2 2
## 242 2 1 4
## 243 1 1 2
## 244 2 2 4
## 245 2 1 2
## 246 2 1 3
## 247 2 2 3
## 248 2 2 3
## 249 2 1 2
## 250 2 1 3
## 251 2 1 3
## 252 2 1 2
## 253 2 1 3
## 254 2 1 3
## 255 2 2 4
## 256 1 1 3
## 257 2 2 2
## 258 1 2 3
## 259 2 1 2
## 260 2 1 2
## 261 2 2 2
## 262 2 2 4
## 263 2 1 3
## 264 2 1 3
## 265 2 1 3
## 266 2 1 3
## 267 2 1 2
## 268 2 1 3
## 269 1 2 2
## 270 2 1 2
## 271 1 1 3
## 272 2 2 3
## 273 1 1 2
## 274 2 1 3
## 275 2 1 4
## 276 2 1 2
## 277 1 1 4
## 278 2 2 3
## 279 2 1 3
## 280 2 1 3
## 281 2 1 3
## 282 2 1 2
## 283 1 1 3
## 284 2 2 3
## 285 2 1 3
## 286 2 1 1
## 287 2 2 3
## 288 2 1 3
## 289 3 1 2
## 290 2 2 3
## 291 2 2 2
## 292 1 1 3
## 293 2 2 2
## 294 2 2 3
## 295 2 2 3
## 296 2 1 3
## 297 1 1 3
## 298 2 2 2
## 299 1 1 2
## 300 2 2 3
## 301 2 1 2
## 302 2 1 3
## 303 2 1 3
## 304 2 2 3
## 305 2 1 2
## 306 1 1 2
## 307 2 1 2
## 308 2 1 2
## 309 1 1 4
## 310 2 1 2
## 311 2 4 3
## 312 2 2 3
## 313 2 2 2
## 314 2 1 3
## 315 2 1 2
## 316 3 1 3
## 317 2 1 3
## 318 2 1 3
## 319 2 2 3
## 320 1 1 3
## 321 1 1 2
## 322 2 1 3
## 323 2 1 3
## 324 1 2 3
## 325 2 1 2
## 326 2 2 3
## 327 1 1 2
## 328 2 2 3
## 329 2 1 3
## 330 2 2 3
## 331 2 2 3
## 332 2 2 3
## 333 1 2 3
## 334 1 1 3
## 335 2 2 3
## 336 2 1 2
## 337 2 2 3
## 338 2 2 3
## 339 2 1 3
## 340 2 1 3
## 341 2 2 3
## 342 1 1 3
## 343 2 1 4
## 344 1 1 3
## 345 2 2 3
## 346 2 1 3
## 347 3 1 3
## 348 3 2 3
## 349 2 2 3
## 350 2 2 3
## 351 2 2 3
## 352 2 1 3
## 353 2 2 4
## 354 2 2 3
## 355 3 1 3
## 356 3 2 3
## 357 2 1 3
## 358 2 2 2
## 359 2 1 4
## 360 2 1 3
## 361 2 2 2
## 362 1 1 3
## 363 2 2 3
## 364 1 1 3
## 365 3 1 3
## 366 2 2 3
## 367 2 1 2
## 368 2 1 2
## 369 1 1 3
## 370 1 1 2
## 371 2 1 2
## 372 2 1 3
## 373 1 1 3
## 374 2 1 3
## 375 2 2 4
## 376 2 1 4
## 377 2 2 3
## 378 2 2 4
## 379 2 1 3
## 380 2 2 3
## 381 1 1 3
## 382 1 1 2
## 383 3 1 4
## 384 1 1 2
## 385 2 2 3
## 386 2 1 3
## 387 2 1 3
## 388 2 1 2
## 389 2 1 3
## 390 1 1 3
## 391 2 1 3
## 392 3 3 1
## 393 2 1 2
## 394 3 2 3
## 395 2 1 3
## 396 2 1 3
## 397 2 1 3
## 398 2 2 3
## 399 1 1 3
## 400 2 1 3
## 401 2 1 3
## 402 2 1 2
## 403 1 1 1
## 404 2 1 3
## 405 2 1 3
## 406 3 1 1
## 407 2 1 3
## 408 2 1 3
## 409 2 1 3
## 410 1 1 3
## 411 2 1 3
## 412 2 2 3
## 413 2 2 3
## 414 2 2 3
## 415 2 2 3
## 416 2 2 3
## 417 2 3 2
## 418 2 2 3
## 419 2 2 3
## 420 2 2 3
## 421 2 1 3
## 422 2 2 3
## 423 3 3 1
## 424 3 1 4
## 425 2 2 3
## 426 2 3 3
## 427 1 1 3
## 428 2 2 4
## 429 1 1 3
## 430 2 1 2
## 431 1 1 4
## 432 3 2 3
## 433 2 1 3
## 434 2 2 3
## 435 1 1 2
## 436 3 1 3
## 437 2 1 3
## 438 2 1 3
## 439 2 4 4
## 440 2 3 1
## 441 2 1 3
## 442 2 2 3
## 443 2 2 4
## 444 1 1 3
## 445 2 1 3
## 446 2 1 3
## 447 3 2 3
## 448 2 1 3
## 449 3 1 4
## 450 2 1 2
## 451 2 1 2
## 452 2 1 3
## 453 3 1 4
## 454 3 2 3
## 455 3 1 3
## 456 2 1 2
## 457 2 2 3
## 458 2 1 2
## 459 2 1 2
## 460 1 1 3
## 461 2 1 4
## 462 2 2 4
## 463 2 1 3
## 464 2 1 2
## 465 1 1 1
## 466 2 1 4
## 467 2 1 3
## 468 3 1 3
## 469 1 1 3
## 470 2 3 3
## 471 3 2 3
## 472 2 2 3
## 473 2 2 3
## 474 1 1 2
## 475 2 1 3
## 476 2 2 2
## 477 2 3 3
## 478 2 2 3
## 479 3 3 2
## 480 2 1 3
## 481 2 4 3
## 482 1 1 3
## 483 3 1 3
## 484 1 1 3
## 485 2 1 3
## 486 2 2 3
## 487 2 2 4
## 488 2 1 3
## 489 2 1 3
## 490 2 1 4
## 491 2 1 3
## 492 2 1 3
## 493 2 1 3
## 494 2 2 3
## 495 2 1 3
## 496 2 1 3
## 497 1 1 3
## 498 2 2 3
## 499 2 1 1
## 500 2 1 3
## 501 2 1 3
## 502 2 2 3
## 503 2 1 3
## 504 2 2 3
## 505 2 1 4
## 506 1 2 3
## 507 2 2 3
## 508 2 2 4
## 509 2 1 3
## 510 2 1 3
## 511 2 1 3
## 512 2 1 3
## 513 2 1 3
## 514 2 1 3
## 515 1 1 3
## 516 2 1 3
## 517 1 1 4
## 518 3 1 3
## 519 2 2 3
## 520 1 2 3
## 521 2 1 4
## 522 2 2 4
## 523 2 1 3
## 524 1 1 3
## 525 2 2 4
## 526 2 2 3
## 527 2 1 2
## 528 2 1 3
## 529 3 1 4
## 530 2 2 3
## 531 2 2 2
## 532 2 2 3
## 533 1 1 2
## 534 2 2 4
## 535 2 1 3
## 536 2 1 3
## 537 2 1 3
## 538 2 3 2
## 539 1 2 2
## 540 2 2 3
## 541 2 1 3
## 542 2 2 3
## 543 2 1 2
## 544 2 2 3
## 545 2 3 2
## 546 2 1 3
## 547 2 1 3
## 548 2 2 3
## 549 2 1 3
## 550 1 1 3
## 551 1 1 3
## 552 2 1 2
## 553 2 2 3
## 554 2 1 3
## 555 2 1 3
## 556 2 2 3
## 557 2 2 3
## 558 2 1 4
## 559 1 1 4
## 560 2 1 3
## 561 2 2 3
## 562 2 2 3
## 563 2 1 4
## 564 3 1 3
## 565 2 2 2
## 566 1 2 3
## 567 2 2 2
## 568 2 2 2
## 569 2 3 3
## 570 2 1 3
## 571 2 1 3
## 572 3 1 2
## 573 2 2 3
## 574 2 1 3
## 575 1 1 4
## 576 2 1 4
## 577 2 1 3
## 578 1 1 2
## 579 2 2 3
## 580 2 1 4
## 581 1 1 2
## 582 2 1 3
## 583 2 2 3
## 584 2 1 3
## 585 3 1 4
## 586 3 1 4
## 587 3 3 4
## 588 2 1 3
## 589 2 1 3
## 590 1 1 4
## 591 2 1 3
## 592 3 2 4
## 593 1 2 2
## 594 1 2 1
## 595 2 2 3
## 596 2 2 3
## 597 2 1 2
## 598 2 2 3
## 599 2 1 3
## 600 2 1 3
## 601 2 1 3
## 602 2 2 2
## 603 2 1 4
## 604 2 1 2
## 605 2 1 3
## 606 2 2 3
## 607 2 2 4
## 608 2 2 3
## 609 2 1 3
## 610 3 1 3
## 611 2 1 2
## 612 2 1 3
## 613 2 1 3
## 614 1 1 3
## 615 3 1 4
## 616 2 1 3
## 617 3 3 4
## 618 2 1 4
## 619 2 1 2
## 620 2 2 2
## 621 3 1 3
## 622 2 2 4
## 623 3 2 4
## 624 2 1 2
## 625 3 2 4
## 626 3 3 4
## 627 2 1 4
## 628 2 2 3
## 629 2 1 4
## 630 3 1 4
## 631 1 2 3
## 632 3 1 3
## 633 2 1 3
## 634 2 1 4
## 635 3 1 4
## 636 3 1 3
## 637 2 2 3
## 638 2 2 2
## 639 2 2 3
## 640 2 2 3
## 641 2 2 3
## 642 2 2 3
## 643 3 2 4
## 644 3 2 2
## 645 3 2 3
## 646 2 1 4
## 647 2 2 3
## 648 2 2 3
## 649 2 2 3
## 650 2 1 3
## 651 2 1 2
## 652 2 1 3
## 653 2 2 3
## 654 2 2 3
## 655 3 1 3
## 656 2 2 3
## 657 2 2 3
## 658 2 1 3
## 659 2 1 3
## 660 2 1 2
## 661 2 1 3
## 662 2 2 3
## 663 1 2 3
## 664 2 1 3
## 665 2 2 2
## 666 2 2 3
## 667 2 1 3
## 668 2 2 3
## 669 2 1 2
## 670 2 1 3
## 671 2 1 2
## 672 2 1 2
## 673 2 1 2
## 674 2 1 2
## 675 2 1 2
## 676 2 2 3
## 677 2 2 2
## 678 1 2 2
## 679 2 3 3
## 680 2 1 2
## 681 2 1 2
## 682 2 2 2
## 683 1 2 4
## 684 2 2 3
## 685 2 1 2
## 686 2 2 3
## 687 2 1 2
## 688 2 1 1
## 689 2 1 2
## 690 2 1 2
## 691 2 1 3
## 692 2 1 2
## 693 2 1 2
## 694 2 2 2
## 695 1 1 2
## 696 2 2 3
## 697 2 2 3
## 698 2 1 3
## 699 2 1 3
## 700 1 2 4
## 701 3 1 3
## 702 2 2 3
## 703 1 2 3
## 704 1 2 3
## 705 2 2 3
## 706 2 2 3
## 707 1 2 3
## 708 2 2 3
## 709 1 1 3
## 710 3 1 3
## 711 3 1 3
## 712 2 2 1
## 713 2 2 3
## 714 1 2 2
## 715 1 1 3
## 716 2 2 3
## 717 3 1 4
## 718 2 3 4
## 719 1 1 3
## 720 2 1 3
## 721 3 1 3
## 722 1 1 4
## 723 2 2 2
## 724 2 1 4
## 725 2 1 3
## 726 1 1 3
## 727 2 1 4
## 728 2 1 4
## 729 2 1 4
## 730 3 1 4
## 731 3 1 4
## 732 3 1 3
## 733 1 2 3
## 734 1 1 3
## 735 3 1 3
## 736 2 1 3
## 737 2 2 2
## 738 2 2 3
## 739 2 2 2
## 740 2 2 3
## 741 2 1 2
## 742 2 1 2
## 743 2 1 3
## 744 2 2 3
## 745 1 1 2
## 746 1 1 3
## 747 3 1 3
## 748 3 2 3
## 749 2 2 4
## 750 3 1 3
## 751 3 1 3
## 752 2 1 2
## 753 3 2 3
## 754 1 1 3
## 755 2 1 1
## 756 1 2 3
## 757 2 2 2
## 758 2 2 3
## 759 2 1 3
## 760 2 2 3
## 761 2 2 3
## 762 3 2 3
## 763 2 2 3
## 764 3 1 3
## 765 2 2 2
## 766 2 1 3
## 767 2 2 3
## 768 2 2 3
## 769 2 1 3
## 770 1 1 3
## 771 2 1 4
## 772 3 1 4
## 773 2 1 2
## 774 2 1 3
## 775 2 2 3
## 776 2 1 3
## 777 2 1 4
## 778 1 1 4
## 779 2 1 3
## 780 2 1 4
## 781 2 1 3
## 782 2 1 3
## 783 3 1 4
## 784 1 1 3
## 785 3 1 3
## 786 2 2 3
## 787 2 1 2
## 788 2 2 3
## 789 2 3 2
## 790 2 1 2
## 791 1 2 1
## 792 2 1 2
## 793 2 1 3
## 794 2 1 3
## 795 2 1 4
## 796 3 1 4
## 797 2 1 2
## 798 1 1 3
## 799 2 1 3
## 800 3 1 3
## 801 2 1 3
## 802 1 1 3
## 803 1 1 3
## 804 2 1 3
## 805 2 1 3
## 806 1 1 3
## 807 2 2 3
## 808 2 2 3
## 809 1 1 4
## 810 3 1 3
## 811 2 1 3
## 812 1 1 3
## 813 2 1 3
## 814 2 1 3
## 815 3 1 4
## 816 2 1 3
## 817 3 1 2
## 818 2 1 3
## 819 2 1 3
## 820 1 2 3
## 821 2 2 3
## 822 2 1 3
## 823 2 1 3
## 824 2 2 3
## 825 1 1 2
## 826 2 1 4
## 827 3 1 2
## 828 1 2 3
## 829 2 1 3
## 830 2 1 3
## 831 2 1 3
## 832 2 2 4
## 833 1 2 3
## 834 2 1 3
## 835 2 1 3
## 836 1 2 4
## 837 2 2 3
## 838 2 1 3
## 839 2 2 4
## 840 2 1 3
## 841 2 1 4
## 842 2 2 2
## 843 1 1 2
## 844 2 2 4
## 845 2 2 4
## 846 2 2 2
## 847 2 2 4
## 848 3 2 4
## 849 3 1 3
## 850 3 1 3
## 851 1 1 3
## 852 2 1 2
## 853 2 2 3
## 854 2 2 2
## 855 2 1 2
## 856 3 1 3
## 857 3 1 3
## 858 1 1 3
## 859 2 1 3
## 860 2 1 2
## 861 2 1 3
## 862 1 1 3
## 863 1 1 3
## 864 2 2 3
## 865 2 1 3
## 866 3 2 3
## 867 1 1 3
## 868 1 1 4
## 869 1 4 3
## 870 2 1 2
## 871 2 1 3
## 872 2 2 3
## 873 1 1 3
## 874 2 2 3
## 875 3 1 2
## 876 2 2 4
## 877 2 2 4
## 878 2 1 3
## 879 1 1 3
## 880 2 1 4
## 881 2 1 1
## 882 2 2 4
## 883 3 1 4
## 884 1 1 3
## 885 1 2 3
## 886 2 1 3
## 887 2 1 3
## 888 2 2 4
## 889 2 1 3
## 890 1 1 4
## 891 2 1 4
## 892 2 2 3
## 893 2 1 3
## 894 2 1 3
## 895 2 1 4
## 896 3 1 4
## 897 2 1 2
## 898 1 1 3
## 899 2 1 3
## 900 2 1 2
## 901 2 1 3
## 902 2 1 2
## 903 3 2 3
## 904 2 1 3
## 905 1 1 3
## 906 1 2 3
## 907 2 1 3
## 908 1 1 3
## 909 3 2 3
## 910 3 2 3
## 911 3 2 3
## 912 2 2 3
## 913 2 2 3
## 914 2 1 3
## 915 1 2 3
## 916 2 1 3
## 917 1 1 3
## 918 1 2 3
## 919 3 2 3
## 920 3 2 3
## 921 2 1 3
## 922 2 2 3
## 923 1 2 3
## 924 2 2 3
## 925 2 2 3
## 926 1 1 3
## 927 1 1 3
## 928 1 1 3
## 929 3 3 3
## 930 2 1 3
## 931 2 2 3
## 932 2 1 2
## 933 1 2 3
## 934 2 1 3
## 935 1 1 3
## 936 1 2 3
## 937 2 1 3
## 938 2 1 3
## 939 2 1 2
## 940 2 4 4
## 941 3 1 3
## 942 2 1 2
## 943 2 1 2
## 944 3 1 3
## 945 2 1 2
## 946 2 1 4
## 947 1 1 2
## 948 2 1 4
## 949 3 2 2
## 950 2 1 2
## 951 2 2 2
## 952 2 3 3
## 953 2 1 3
## 954 1 2 2
## 955 2 1 1
## 956 3 3 1
## 957 1 2 2
## 958 1 1 3
## 959 1 2 2
## 960 1 1 3
## 961 1 2 3
## 962 2 1 3
## 963 1 1 3
## 964 1 1 2
## 965 2 1 3
## 966 2 1 3
## 967 2 2 3
## 968 2 1 3
## 969 3 1 3
## 970 2 2 2
## 971 1 1 4
## 972 3 2 4
## 973 2 1 3
## 974 1 2 3
## 975 2 1 3
## 976 2 1 2
## 977 2 1 4
## 978 2 1 4
## 979 2 1 3
## 980 3 1 3
## 981 2 1 3
## 982 2 1 3
## 983 2 1 4
## 984 1 2 3
## 985 2 2 3
## 986 2 2 4
## 987 2 1 4
## 988 2 1 3
## 989 2 1 2
## 990 1 1 2
## 991 2 1 1
## 992 3 1 4
## 993 3 1 3
## 994 1 3 3
## 995 1 2 3
## 996 1 1 2
## 997 2 1 3
## 998 3 1 4
## 999 2 1 4
## 1000 2 1 3
## No.of.dependents Telephone Foreign.Worker
## 1 1 1 1
## 2 2 1 1
## 3 1 1 1
## 4 2 1 2
## 5 1 1 2
## 6 2 1 2
## 7 1 1 2
## 8 2 1 2
## 9 1 1 1
## 10 1 1 1
## 11 2 1 1
## 12 1 1 1
## 13 1 1 1
## 14 1 2 1
## 15 1 1 1
## 16 2 1 1
## 17 2 1 1
## 18 1 1 1
## 19 1 1 1
## 20 1 1 1
## 21 2 1 1
## 22 2 1 1
## 23 1 1 1
## 24 1 1 1
## 25 2 1 1
## 26 1 1 1
## 27 1 1 1
## 28 1 1 1
## 29 1 1 1
## 30 1 1 1
## 31 1 1 1
## 32 1 2 1
## 33 1 2 1
## 34 1 1 1
## 35 1 1 1
## 36 1 2 1
## 37 2 1 1
## 38 1 1 1
## 39 1 2 1
## 40 1 2 1
## 41 1 1 1
## 42 1 2 1
## 43 1 1 1
## 44 2 2 1
## 45 1 1 1
## 46 1 2 1
## 47 1 2 1
## 48 1 1 1
## 49 1 2 1
## 50 1 2 1
## 51 1 1 1
## 52 1 2 1
## 53 1 1 1
## 54 1 2 1
## 55 2 2 1
## 56 1 2 1
## 57 1 2 1
## 58 1 1 2
## 59 1 2 1
## 60 1 1 1
## 61 1 2 1
## 62 1 2 1
## 63 1 2 1
## 64 2 2 1
## 65 2 1 1
## 66 1 1 1
## 67 1 2 1
## 68 1 2 1
## 69 1 2 1
## 70 1 2 1
## 71 1 2 1
## 72 1 2 1
## 73 1 1 1
## 74 1 2 1
## 75 1 1 1
## 76 1 2 1
## 77 1 2 1
## 78 1 2 1
## 79 1 2 1
## 80 1 1 1
## 81 1 2 1
## 82 1 2 1
## 83 1 2 1
## 84 1 2 1
## 85 1 1 1
## 86 2 1 1
## 87 1 2 1
## 88 1 1 1
## 89 1 2 1
## 90 1 2 1
## 91 1 1 1
## 92 1 1 1
## 93 1 1 1
## 94 1 1 1
## 95 1 2 1
## 96 2 2 1
## 97 1 1 1
## 98 1 2 1
## 99 1 1 1
## 100 1 1 1
## 101 1 2 1
## 102 1 1 1
## 103 1 2 1
## 104 1 1 1
## 105 1 2 1
## 106 1 2 1
## 107 1 2 1
## 108 1 2 1
## 109 1 2 1
## 110 1 1 1
## 111 1 2 1
## 112 1 2 1
## 113 1 2 1
## 114 1 2 1
## 115 1 2 1
## 116 1 1 1
## 117 1 2 1
## 118 1 2 1
## 119 1 2 1
## 120 1 2 1
## 121 1 2 1
## 122 2 2 1
## 123 1 2 1
## 124 1 1 1
## 125 1 2 1
## 126 1 2 1
## 127 1 1 1
## 128 1 2 1
## 129 1 2 1
## 130 2 2 1
## 131 1 1 1
## 132 1 2 1
## 133 1 2 1
## 134 1 1 1
## 135 1 2 1
## 136 1 1 1
## 137 1 2 1
## 138 1 1 1
## 139 1 1 1
## 140 1 2 1
## 141 1 2 1
## 142 1 1 1
## 143 1 2 1
## 144 1 1 1
## 145 1 1 1
## 146 1 2 1
## 147 2 2 1
## 148 1 2 1
## 149 1 2 1
## 150 1 1 1
## 151 1 1 1
## 152 1 1 1
## 153 1 2 1
## 154 1 2 1
## 155 1 2 1
## 156 1 1 1
## 157 1 1 1
## 158 1 1 1
## 159 1 1 1
## 160 1 2 1
## 161 1 1 1
## 162 1 2 1
## 163 1 2 1
## 164 1 2 1
## 165 1 2 1
## 166 1 2 1
## 167 1 1 1
## 168 1 2 1
## 169 1 1 1
## 170 1 2 1
## 171 1 1 1
## 172 1 1 1
## 173 1 1 1
## 174 2 1 1
## 175 2 2 1
## 176 1 2 1
## 177 1 2 1
## 178 1 1 1
## 179 1 2 1
## 180 1 2 1
## 181 1 2 1
## 182 1 1 1
## 183 1 1 1
## 184 1 2 1
## 185 1 1 1
## 186 1 2 1
## 187 1 2 1
## 188 2 2 1
## 189 2 1 1
## 190 1 2 1
## 191 1 2 1
## 192 1 1 1
## 193 1 1 1
## 194 1 1 1
## 195 1 1 1
## 196 1 2 1
## 197 2 2 1
## 198 1 1 1
## 199 1 1 1
## 200 1 1 1
## 201 1 1 1
## 202 2 2 1
## 203 1 1 1
## 204 1 2 2
## 205 1 1 2
## 206 1 2 1
## 207 2 2 1
## 208 1 1 1
## 209 1 2 1
## 210 1 2 1
## 211 2 1 2
## 212 1 2 1
## 213 1 2 1
## 214 2 1 2
## 215 1 1 1
## 216 2 1 1
## 217 1 1 1
## 218 1 1 2
## 219 1 2 1
## 220 1 1 2
## 221 1 2 1
## 222 1 1 1
## 223 1 2 1
## 224 1 1 1
## 225 1 1 1
## 226 1 1 1
## 227 2 2 1
## 228 1 1 1
## 229 1 1 1
## 230 1 1 1
## 231 1 2 1
## 232 1 1 1
## 233 1 2 1
## 234 1 2 1
## 235 1 1 1
## 236 1 1 1
## 237 1 1 1
## 238 1 1 1
## 239 2 1 1
## 240 1 1 1
## 241 1 1 1
## 242 1 2 1
## 243 1 1 1
## 244 1 2 1
## 245 2 1 1
## 246 1 1 1
## 247 1 1 1
## 248 1 1 1
## 249 1 1 1
## 250 1 1 1
## 251 2 1 1
## 252 2 2 1
## 253 1 1 1
## 254 1 1 1
## 255 1 2 1
## 256 1 2 1
## 257 1 1 1
## 258 1 1 1
## 259 1 1 1
## 260 1 1 1
## 261 1 1 1
## 262 1 1 1
## 263 1 1 1
## 264 1 1 1
## 265 2 1 1
## 266 1 1 1
## 267 2 1 1
## 268 1 1 1
## 269 1 1 1
## 270 2 1 1
## 271 1 1 1
## 272 1 2 1
## 273 1 1 1
## 274 1 1 1
## 275 1 2 1
## 276 2 1 1
## 277 1 2 1
## 278 1 1 1
## 279 1 1 1
## 280 1 1 1
## 281 1 1 1
## 282 1 1 1
## 283 1 1 1
## 284 1 1 1
## 285 1 1 1
## 286 1 2 1
## 287 1 1 1
## 288 2 1 1
## 289 1 1 1
## 290 1 1 1
## 291 2 1 1
## 292 1 1 1
## 293 2 1 1
## 294 2 1 1
## 295 1 1 1
## 296 1 1 1
## 297 1 1 1
## 298 1 1 1
## 299 1 1 1
## 300 1 1 1
## 301 1 1 1
## 302 1 1 1
## 303 1 1 1
## 304 2 1 1
## 305 1 1 1
## 306 1 1 1
## 307 1 2 1
## 308 2 1 1
## 309 1 2 1
## 310 2 1 1
## 311 1 1 1
## 312 2 2 1
## 313 1 1 1
## 314 1 1 1
## 315 2 2 1
## 316 2 1 1
## 317 1 2 1
## 318 1 1 1
## 319 1 1 1
## 320 1 1 2
## 321 2 1 2
## 322 1 1 1
## 323 1 2 1
## 324 1 1 2
## 325 2 1 2
## 326 1 2 1
## 327 1 1 2
## 328 2 1 2
## 329 1 1 2
## 330 1 2 1
## 331 1 2 1
## 332 1 1 1
## 333 1 2 1
## 334 1 1 1
## 335 1 2 1
## 336 1 1 2
## 337 2 1 2
## 338 1 2 1
## 339 2 1 1
## 340 1 1 2
## 341 2 2 1
## 342 1 1 2
## 343 1 2 1
## 344 2 1 2
## 345 1 2 1
## 346 1 2 2
## 347 1 2 1
## 348 1 2 1
## 349 1 1 1
## 350 1 1 1
## 351 1 1 2
## 352 2 2 1
## 353 2 1 1
## 354 1 1 1
## 355 2 2 1
## 356 1 1 1
## 357 2 2 1
## 358 2 1 2
## 359 1 1 1
## 360 1 2 1
## 361 1 1 1
## 362 1 1 1
## 363 1 1 1
## 364 1 1 1
## 365 1 2 1
## 366 1 1 1
## 367 1 1 1
## 368 1 2 1
## 369 1 1 1
## 370 1 1 1
## 371 1 1 1
## 372 1 1 1
## 373 1 1 1
## 374 1 1 1
## 375 1 1 1
## 376 1 1 1
## 377 1 1 1
## 378 1 2 1
## 379 1 1 1
## 380 1 1 1
## 381 1 1 1
## 382 1 1 1
## 383 1 2 1
## 384 1 1 1
## 385 1 2 1
## 386 1 1 1
## 387 1 1 1
## 388 2 1 1
## 389 1 2 1
## 390 1 1 1
## 391 1 1 1
## 392 1 1 1
## 393 1 1 1
## 394 1 2 1
## 395 1 1 1
## 396 1 1 1
## 397 1 1 1
## 398 1 1 1
## 399 1 1 1
## 400 1 1 1
## 401 2 2 1
## 402 1 1 1
## 403 1 2 1
## 404 1 2 1
## 405 1 2 1
## 406 1 2 1
## 407 1 2 1
## 408 1 2 1
## 409 1 2 1
## 410 1 2 1
## 411 1 1 1
## 412 2 2 1
## 413 1 1 1
## 414 2 2 1
## 415 2 2 1
## 416 1 1 1
## 417 1 1 1
## 418 1 1 1
## 419 1 2 1
## 420 2 2 1
## 421 1 1 1
## 422 1 1 1
## 423 1 2 1
## 424 1 2 1
## 425 1 2 1
## 426 1 1 1
## 427 1 2 1
## 428 1 2 1
## 429 1 2 1
## 430 1 1 1
## 431 1 2 1
## 432 2 1 1
## 433 1 1 1
## 434 1 1 1
## 435 1 1 1
## 436 1 1 1
## 437 1 1 1
## 438 1 1 1
## 439 2 2 1
## 440 2 2 1
## 441 1 2 1
## 442 1 1 1
## 443 1 2 1
## 444 1 2 1
## 445 1 1 1
## 446 1 1 1
## 447 1 1 1
## 448 1 1 1
## 449 1 2 1
## 450 1 1 1
## 451 1 1 1
## 452 1 2 1
## 453 1 2 1
## 454 1 2 1
## 455 1 1 1
## 456 1 1 1
## 457 1 2 1
## 458 1 2 1
## 459 1 1 1
## 460 1 2 1
## 461 1 2 1
## 462 1 2 1
## 463 1 2 1
## 464 1 1 1
## 465 1 1 1
## 466 1 2 1
## 467 1 1 1
## 468 1 1 1
## 469 1 1 1
## 470 2 2 1
## 471 1 1 1
## 472 1 1 1
## 473 1 1 1
## 474 1 1 1
## 475 1 1 1
## 476 1 1 1
## 477 2 2 1
## 478 1 1 1
## 479 1 1 1
## 480 1 2 1
## 481 2 2 1
## 482 1 1 1
## 483 1 1 1
## 484 1 2 2
## 485 1 1 1
## 486 1 1 1
## 487 1 2 1
## 488 1 2 2
## 489 1 2 1
## 490 2 2 1
## 491 1 1 1
## 492 1 1 1
## 493 1 2 1
## 494 1 1 1
## 495 1 1 1
## 496 1 2 1
## 497 1 1 1
## 498 1 2 1
## 499 1 1 1
## 500 1 1 1
## 501 1 1 1
## 502 1 2 1
## 503 2 1 1
## 504 1 2 1
## 505 1 2 1
## 506 1 1 1
## 507 1 2 1
## 508 2 2 1
## 509 1 2 1
## 510 1 2 1
## 511 1 1 1
## 512 1 1 1
## 513 1 2 1
## 514 1 1 1
## 515 1 1 1
## 516 1 1 1
## 517 1 2 1
## 518 1 2 1
## 519 1 2 1
## 520 1 2 1
## 521 1 2 1
## 522 1 2 1
## 523 1 1 1
## 524 1 2 1
## 525 1 2 1
## 526 1 1 1
## 527 1 1 1
## 528 1 1 1
## 529 1 2 1
## 530 1 1 1
## 531 2 1 1
## 532 2 2 1
## 533 1 2 1
## 534 1 2 1
## 535 1 1 1
## 536 1 2 1
## 537 2 1 1
## 538 2 1 1
## 539 1 2 1
## 540 1 2 1
## 541 1 2 1
## 542 2 2 1
## 543 1 1 1
## 544 1 1 1
## 545 2 1 1
## 546 1 2 1
## 547 1 1 1
## 548 1 2 1
## 549 1 1 1
## 550 1 2 1
## 551 2 2 1
## 552 2 1 1
## 553 1 2 1
## 554 1 2 1
## 555 1 1 1
## 556 1 2 1
## 557 1 1 1
## 558 1 2 1
## 559 1 2 1
## 560 1 2 1
## 561 1 2 1
## 562 1 1 1
## 563 1 1 1
## 564 1 2 1
## 565 1 1 1
## 566 1 2 1
## 567 2 2 1
## 568 1 1 1
## 569 1 2 1
## 570 1 2 1
## 571 1 1 1
## 572 2 2 1
## 573 1 1 1
## 574 2 2 1
## 575 1 2 1
## 576 1 2 1
## 577 2 1 1
## 578 2 1 1
## 579 1 1 1
## 580 1 2 1
## 581 1 1 1
## 582 1 1 1
## 583 1 1 1
## 584 1 1 1
## 585 1 2 1
## 586 1 2 1
## 587 1 2 1
## 588 2 1 1
## 589 1 1 1
## 590 1 1 1
## 591 1 1 1
## 592 2 2 1
## 593 1 2 1
## 594 1 1 1
## 595 1 1 1
## 596 1 1 1
## 597 2 1 1
## 598 1 1 1
## 599 2 1 1
## 600 1 1 1
## 601 2 1 1
## 602 1 1 1
## 603 1 2 1
## 604 1 1 1
## 605 2 1 1
## 606 1 1 1
## 607 1 2 2
## 608 1 1 1
## 609 2 1 1
## 610 1 1 1
## 611 1 1 1
## 612 1 1 1
## 613 1 1 1
## 614 1 1 1
## 615 1 2 1
## 616 1 2 1
## 617 2 2 1
## 618 2 2 1
## 619 1 1 1
## 620 2 1 1
## 621 1 2 1
## 622 1 2 1
## 623 1 1 1
## 624 2 1 1
## 625 1 2 1
## 626 1 2 1
## 627 1 2 1
## 628 1 1 1
## 629 2 2 1
## 630 1 1 1
## 631 1 1 1
## 632 2 1 1
## 633 1 1 1
## 634 1 2 1
## 635 2 2 1
## 636 1 1 1
## 637 1 1 1
## 638 1 1 1
## 639 1 1 1
## 640 1 2 1
## 641 1 2 1
## 642 1 1 1
## 643 2 2 1
## 644 1 1 1
## 645 2 1 1
## 646 1 1 1
## 647 1 1 1
## 648 2 1 1
## 649 1 1 1
## 650 1 1 1
## 651 1 2 1
## 652 1 1 1
## 653 1 1 1
## 654 1 1 1
## 655 2 2 1
## 656 1 1 1
## 657 2 1 1
## 658 1 1 1
## 659 1 1 2
## 660 1 1 2
## 661 1 1 2
## 662 1 1 1
## 663 1 1 1
## 664 2 1 1
## 665 1 1 1
## 666 1 2 1
## 667 1 1 1
## 668 1 1 1
## 669 1 1 1
## 670 1 1 1
## 671 1 1 1
## 672 1 1 1
## 673 2 1 1
## 674 1 1 1
## 675 1 1 1
## 676 2 2 1
## 677 1 1 1
## 678 1 2 1
## 679 1 2 1
## 680 1 1 1
## 681 1 1 1
## 682 1 1 1
## 683 2 2 1
## 684 1 2 1
## 685 1 1 1
## 686 1 1 1
## 687 1 1 1
## 688 1 1 1
## 689 1 1 1
## 690 1 1 1
## 691 1 2 1
## 692 1 1 1
## 693 1 1 1
## 694 1 1 1
## 695 1 1 1
## 696 1 2 1
## 697 1 2 1
## 698 1 1 1
## 699 1 1 1
## 700 1 2 1
## 701 1 1 1
## 702 1 2 1
## 703 1 2 1
## 704 1 2 1
## 705 1 2 1
## 706 1 2 1
## 707 1 1 1
## 708 1 1 1
## 709 1 1 1
## 710 1 2 1
## 711 1 2 1
## 712 1 1 1
## 713 1 1 1
## 714 1 1 1
## 715 1 1 1
## 716 1 1 1
## 717 1 2 1
## 718 1 2 1
## 719 1 1 1
## 720 1 1 1
## 721 1 1 1
## 722 1 2 1
## 723 1 1 1
## 724 2 2 1
## 725 1 1 1
## 726 1 2 1
## 727 1 1 1
## 728 1 2 1
## 729 1 2 1
## 730 1 1 1
## 731 1 2 1
## 732 2 2 1
## 733 1 2 1
## 734 1 1 1
## 735 2 1 1
## 736 1 1 1
## 737 1 1 1
## 738 1 1 1
## 739 1 1 1
## 740 1 2 1
## 741 1 1 1
## 742 1 1 1
## 743 1 1 1
## 744 1 1 1
## 745 1 1 1
## 746 1 1 1
## 747 1 2 1
## 748 1 1 1
## 749 1 2 1
## 750 1 1 1
## 751 1 1 1
## 752 1 1 1
## 753 2 1 1
## 754 1 1 1
## 755 1 2 1
## 756 2 1 1
## 757 1 1 1
## 758 1 1 1
## 759 1 1 1
## 760 1 1 1
## 761 1 1 1
## 762 1 1 1
## 763 1 2 1
## 764 1 1 1
## 765 2 1 1
## 766 1 1 1
## 767 1 1 1
## 768 1 1 1
## 769 1 1 1
## 770 1 1 1
## 771 2 1 1
## 772 1 2 1
## 773 1 2 1
## 774 1 2 1
## 775 1 2 1
## 776 1 2 1
## 777 1 2 1
## 778 1 2 1
## 779 1 1 1
## 780 1 2 1
## 781 1 1 1
## 782 1 1 1
## 783 1 2 1
## 784 2 1 1
## 785 1 1 1
## 786 1 2 1
## 787 1 1 1
## 788 1 1 1
## 789 1 2 1
## 790 1 1 1
## 791 1 1 1
## 792 1 1 1
## 793 1 2 1
## 794 1 1 1
## 795 1 2 1
## 796 1 2 1
## 797 2 1 1
## 798 1 1 1
## 799 1 1 1
## 800 2 1 1
## 801 1 1 1
## 802 1 1 1
## 803 1 1 1
## 804 1 1 1
## 805 1 1 1
## 806 1 1 1
## 807 1 1 1
## 808 1 2 1
## 809 1 2 1
## 810 1 1 1
## 811 1 2 1
## 812 1 1 1
## 813 1 1 1
## 814 1 1 1
## 815 2 2 1
## 816 1 1 1
## 817 2 1 1
## 818 1 1 1
## 819 1 1 1
## 820 1 1 1
## 821 1 2 1
## 822 1 2 1
## 823 1 1 1
## 824 1 2 1
## 825 1 2 1
## 826 1 2 1
## 827 2 1 1
## 828 1 2 1
## 829 1 1 1
## 830 1 1 1
## 831 1 2 1
## 832 1 2 1
## 833 1 2 1
## 834 1 1 1
## 835 1 1 1
## 836 1 1 1
## 837 2 1 1
## 838 1 2 1
## 839 2 2 1
## 840 1 1 1
## 841 1 2 1
## 842 1 1 1
## 843 1 1 1
## 844 1 2 1
## 845 2 2 1
## 846 1 1 1
## 847 1 1 1
## 848 1 2 1
## 849 1 1 1
## 850 2 2 1
## 851 1 1 1
## 852 1 1 1
## 853 1 2 1
## 854 2 1 1
## 855 2 1 1
## 856 2 1 1
## 857 2 2 1
## 858 1 1 1
## 859 1 1 1
## 860 1 2 1
## 861 1 1 1
## 862 1 1 1
## 863 1 1 1
## 864 1 1 1
## 865 1 2 1
## 866 1 2 1
## 867 1 1 1
## 868 1 2 1
## 869 1 1 1
## 870 1 2 1
## 871 1 1 1
## 872 1 2 1
## 873 1 1 1
## 874 1 1 1
## 875 1 1 1
## 876 1 1 1
## 877 1 1 1
## 878 1 2 1
## 879 1 1 1
## 880 1 2 1
## 881 1 1 1
## 882 1 2 1
## 883 1 1 1
## 884 1 1 1
## 885 1 2 1
## 886 1 1 1
## 887 1 1 1
## 888 1 2 1
## 889 1 2 1
## 890 1 2 1
## 891 1 2 1
## 892 1 2 1
## 893 1 2 1
## 894 1 1 1
## 895 1 2 1
## 896 1 2 1
## 897 2 1 1
## 898 1 1 1
## 899 2 2 1
## 900 1 1 1
## 901 1 2 1
## 902 2 1 1
## 903 1 2 1
## 904 1 1 1
## 905 1 1 1
## 906 1 1 1
## 907 1 1 1
## 908 1 1 1
## 909 2 1 1
## 910 2 1 1
## 911 2 1 1
## 912 1 1 1
## 913 2 2 1
## 914 1 1 1
## 915 2 1 1
## 916 1 1 1
## 917 1 1 1
## 918 1 1 1
## 919 2 1 1
## 920 1 2 1
## 921 1 1 1
## 922 1 2 1
## 923 1 1 1
## 924 1 2 1
## 925 1 1 1
## 926 1 1 1
## 927 1 2 1
## 928 1 1 1
## 929 2 2 1
## 930 1 2 1
## 931 1 1 1
## 932 1 1 1
## 933 1 1 1
## 934 1 1 1
## 935 1 2 2
## 936 1 1 2
## 937 1 1 1
## 938 2 2 1
## 939 1 1 1
## 940 1 2 1
## 941 1 1 1
## 942 2 1 1
## 943 2 1 1
## 944 1 2 1
## 945 1 1 1
## 946 2 2 1
## 947 1 1 1
## 948 1 2 1
## 949 2 1 1
## 950 2 1 1
## 951 1 1 1
## 952 1 2 1
## 953 2 1 1
## 954 1 1 1
## 955 1 1 1
## 956 2 1 1
## 957 1 1 1
## 958 1 1 1
## 959 1 1 1
## 960 1 2 1
## 961 1 1 1
## 962 1 1 1
## 963 1 2 1
## 964 1 2 1
## 965 2 1 1
## 966 1 2 1
## 967 1 2 1
## 968 1 1 1
## 969 1 2 1
## 970 2 1 1
## 971 1 2 1
## 972 1 2 1
## 973 1 1 1
## 974 1 1 1
## 975 1 1 1
## 976 1 2 1
## 977 1 2 2
## 978 1 2 1
## 979 1 2 1
## 980 1 2 1
## 981 1 2 1
## 982 1 2 1
## 983 1 2 1
## 984 1 1 1
## 985 1 2 1
## 986 1 2 1
## 987 1 2 2
## 988 1 1 1
## 989 1 1 1
## 990 1 2 1
## 991 1 1 1
## 992 1 2 1
## 993 2 2 1
## 994 1 2 1
## 995 1 2 1
## 996 2 1 1
## 997 1 1 1
## 998 1 2 1
## 999 1 2 1
## 1000 1 1 1
library(naivebayes)
## Warning: package 'naivebayes' was built under R version 3.4.3
naive_model<- naive_bayes(Creditability~., data=credit_train)
naive_model
## ===================== Naive Bayes =====================
## Call:
## naive_bayes.formula(formula = Creditability ~ ., data = credit_train)
##
## A priori probabilities:
##
## 0 1
## 0.3146667 0.6853333
##
## Tables:
##
## Account.Balance 0 1
## mean 1.923729 2.793774
## sd 1.036826 1.252008
##
##
## Duration.of.Credit..month. 0 1
## mean 24.46610 19.20039
## sd 13.82208 11.13433
##
##
## Payment.Status.of.Previous.Credit 0 1
## mean 2.161017 2.665370
## sd 1.071649 1.045219
##
##
## Purpose 0 1
## mean 2.927966 2.803502
## sd 2.944722 2.633253
##
##
## Credit.Amount 0 1
## mean 3964.195 2984.177
## sd 3597.093 2379.685
##
## # ... and 15 more tables
(conf_nat <- table(predict(naive_model, credit_test), credit_test$Creditability))
##
## 0 1
## 0 42 35
## 1 22 151
(Accuracy <- sum(diag(conf_nat))/sum(conf_nat)*100)
## [1] 77.2
this shows that the model is 77.2% accurate. The model also shows that 35 credit asker were classified by the model as not good creditors while they actually are, and also classifies 22 as good creditors while they are not.
library(caret)
## Warning: package 'caret' was built under R version 3.4.4
## Loading required package: lattice
## Loading required package: ggplot2
## Warning: package 'ggplot2' was built under R version 3.4.4
## Warning in as.POSIXlt.POSIXct(Sys.time()): unable to identify current timezone 'U':
## please set environment variable 'TZ'
credit_rand <- credit[order(runif(1000)),]
creditDataScaled <- scale(credit_rand[,2:ncol(credit_rand)], center= TRUE, scale = TRUE)
m <- cor(creditDataScaled)
highlycor <- findCorrelation(m, 0.30)
filteredData <- credit_rand[, -(highlycor[5]+1)]
filteredTraining <- filteredData[1:750, ]
filteredTest <- filteredData[751:1000, ]
filteredTraining$Creditability<- as.factor(filteredTraining$Creditability)
nb_model <- naive_bayes(filteredTraining$Creditability~., data = filteredTraining)
nb_model
## ===================== Naive Bayes =====================
## Call:
## naive_bayes.formula(formula = filteredTraining$Creditability ~
## ., data = filteredTraining)
##
## A priori probabilities:
##
## 0 1
## 0.3066667 0.6933333
##
## Tables:
##
## Account.Balance 0 1
## mean 1.943478 2.896154
## sd 1.082342 1.226232
##
##
## Duration.of.Credit..month. 0 1
## mean 24.92174 19.20385
## sd 13.60044 11.05028
##
##
## Purpose 0 1
## mean 2.856522 2.694231
## sd 2.992177 2.533164
##
##
## Credit.Amount 0 1
## mean 3837.087 2948.110
## sd 3393.488 2380.472
##
##
## Value.Savings.Stocks 0 1
## mean 1.691304 2.328846
## sd 1.365646 1.653377
##
## # ... and 14 more tables
filteredTestPred <- predict(nb_model, newdata = filteredTest)
table(filteredTestPred, filteredTest$Creditability)
##
## filteredTestPred 0 1
## 0 49 44
## 1 21 136
With this method, it shows that 38 credit asker were classified by the model as not good creditors while they actually are, and also classifies 44 as good creditors while they are not. Basically the difference between the two methods, more people were classified as bad in part 2 and less bad creditor were shown as good creditors. Overall i would say that method 2 is less risky but no significant difference.
news <- read.csv("OnlineNewsPopularity.csv")
str(news)
## 'data.frame': 39644 obs. of 61 variables:
## $ url : Factor w/ 39644 levels "http://mashable.com/2013/01/07/amazon-instant-video-browser/",..: 1 2 3 4 5 6 7 8 9 10 ...
## $ timedelta : num 731 731 731 731 731 731 731 731 731 731 ...
## $ n_tokens_title : num 12 9 9 9 13 10 8 12 11 10 ...
## $ n_tokens_content : num 219 255 211 531 1072 ...
## $ n_unique_tokens : num 0.664 0.605 0.575 0.504 0.416 ...
## $ n_non_stop_words : num 1 1 1 1 1 ...
## $ n_non_stop_unique_tokens : num 0.815 0.792 0.664 0.666 0.541 ...
## $ num_hrefs : num 4 3 3 9 19 2 21 20 2 4 ...
## $ num_self_hrefs : num 2 1 1 0 19 2 20 20 0 1 ...
## $ num_imgs : num 1 1 1 1 20 0 20 20 0 1 ...
## $ num_videos : num 0 0 0 0 0 0 0 0 0 1 ...
## $ average_token_length : num 4.68 4.91 4.39 4.4 4.68 ...
## $ num_keywords : num 5 4 6 7 7 9 10 9 7 5 ...
## $ data_channel_is_lifestyle : num 0 0 0 0 0 0 1 0 0 0 ...
## $ data_channel_is_entertainment: num 1 0 0 1 0 0 0 0 0 0 ...
## $ data_channel_is_bus : num 0 1 1 0 0 0 0 0 0 0 ...
## $ data_channel_is_socmed : num 0 0 0 0 0 0 0 0 0 0 ...
## $ data_channel_is_tech : num 0 0 0 0 1 1 0 1 1 0 ...
## $ data_channel_is_world : num 0 0 0 0 0 0 0 0 0 1 ...
## $ kw_min_min : num 0 0 0 0 0 0 0 0 0 0 ...
## $ kw_max_min : num 0 0 0 0 0 0 0 0 0 0 ...
## $ kw_avg_min : num 0 0 0 0 0 0 0 0 0 0 ...
## $ kw_min_max : num 0 0 0 0 0 0 0 0 0 0 ...
## $ kw_max_max : num 0 0 0 0 0 0 0 0 0 0 ...
## $ kw_avg_max : num 0 0 0 0 0 0 0 0 0 0 ...
## $ kw_min_avg : num 0 0 0 0 0 0 0 0 0 0 ...
## $ kw_max_avg : num 0 0 0 0 0 0 0 0 0 0 ...
## $ kw_avg_avg : num 0 0 0 0 0 0 0 0 0 0 ...
## $ self_reference_min_shares : num 496 0 918 0 545 8500 545 545 0 0 ...
## $ self_reference_max_shares : num 496 0 918 0 16000 8500 16000 16000 0 0 ...
## $ self_reference_avg_sharess : num 496 0 918 0 3151 ...
## $ weekday_is_monday : num 1 1 1 1 1 1 1 1 1 1 ...
## $ weekday_is_tuesday : num 0 0 0 0 0 0 0 0 0 0 ...
## $ weekday_is_wednesday : num 0 0 0 0 0 0 0 0 0 0 ...
## $ weekday_is_thursday : num 0 0 0 0 0 0 0 0 0 0 ...
## $ weekday_is_friday : num 0 0 0 0 0 0 0 0 0 0 ...
## $ weekday_is_saturday : num 0 0 0 0 0 0 0 0 0 0 ...
## $ weekday_is_sunday : num 0 0 0 0 0 0 0 0 0 0 ...
## $ is_weekend : num 0 0 0 0 0 0 0 0 0 0 ...
## $ LDA_00 : num 0.5003 0.7998 0.2178 0.0286 0.0286 ...
## $ LDA_01 : num 0.3783 0.05 0.0333 0.4193 0.0288 ...
## $ LDA_02 : num 0.04 0.0501 0.0334 0.4947 0.0286 ...
## $ LDA_03 : num 0.0413 0.0501 0.0333 0.0289 0.0286 ...
## $ LDA_04 : num 0.0401 0.05 0.6822 0.0286 0.8854 ...
## $ global_subjectivity : num 0.522 0.341 0.702 0.43 0.514 ...
## $ global_sentiment_polarity : num 0.0926 0.1489 0.3233 0.1007 0.281 ...
## $ global_rate_positive_words : num 0.0457 0.0431 0.0569 0.0414 0.0746 ...
## $ global_rate_negative_words : num 0.0137 0.01569 0.00948 0.02072 0.01213 ...
## $ rate_positive_words : num 0.769 0.733 0.857 0.667 0.86 ...
## $ rate_negative_words : num 0.231 0.267 0.143 0.333 0.14 ...
## $ avg_positive_polarity : num 0.379 0.287 0.496 0.386 0.411 ...
## $ min_positive_polarity : num 0.1 0.0333 0.1 0.1364 0.0333 ...
## $ max_positive_polarity : num 0.7 0.7 1 0.8 1 0.6 1 1 0.8 0.5 ...
## $ avg_negative_polarity : num -0.35 -0.119 -0.467 -0.37 -0.22 ...
## $ min_negative_polarity : num -0.6 -0.125 -0.8 -0.6 -0.5 -0.4 -0.5 -0.5 -0.125 -0.5 ...
## $ max_negative_polarity : num -0.2 -0.1 -0.133 -0.167 -0.05 ...
## $ title_subjectivity : num 0.5 0 0 0 0.455 ...
## $ title_sentiment_polarity : num -0.188 0 0 0 0.136 ...
## $ abs_title_subjectivity : num 0 0.5 0.5 0.5 0.0455 ...
## $ abs_title_sentiment_polarity : num 0.188 0 0 0 0.136 ...
## $ shares : int 593 711 1500 1200 505 855 556 891 3600 710 ...
newsShort <- data.frame(news$n_tokens_title, news$n_tokens_content, news$n_unique_tokens, news$n_non_stop_words, news$num_hrefs, news$num_imgs, news$num_videos, news$average_token_length, news$num_keywords, news$kw_max_max, news$global_sentiment_polarity, news$avg_positive_polarity, news$title_subjectivity, news$title_sentiment_polarity, news$abs_title_subjectivity, news$abs_title_sentiment_polarity, news$shares)
colnames(newsShort) <- c("n_tokens_title", "n_tokens_content", "n_unique_tokens", "n_non_stop_words", "num_hrefs", "num_imgs", "num_videos", "average_token_length", "num_keywords", "kw_max_max", "global_sentiment_polarity", "avg_positive_polarity", "title_subjectivity", "title_sentiment_polarity", "abs_title_subjectivity", "abs_title_sentiment_polarity", "shares")
set.seed(12345)
news_rand <- newsShort[order(runif(10000)), ]
news_train <- news_rand[1:9000, ]
news_test <- news_rand[9001:10000, ]
prop.table(table(news_train$shares))
##
## no yes
## 0.4308889 0.5691111
nb_model <- naive_bayes(shares ~ ., data=news_train)
nb_model
## ===================== Naive Bayes =====================
## Call:
## naive_bayes.formula(formula = shares ~ ., data = news_train)
##
## A priori probabilities:
##
## no yes
## 0.4308889 0.5691111
##
## Tables:
##
## n_tokens_title no yes
## mean 9.852243 9.697384
## sd 1.934198 1.984855
##
##
## n_tokens_content no yes
## mean 456.2597 507.5463
## sd 356.0001 438.3436
##
##
## n_unique_tokens no yes
## mean 0.5702261 0.5544309
## sd 0.1123952 0.1235964
##
##
## n_non_stop_words no yes
## mean 0.99432697 0.99043342
## sd 0.07511524 0.09734940
##
##
## num_hrefs no yes
## mean 9.142599 10.496486
## sd 8.655057 11.309569
##
## # ... and 11 more tables
news_Pred <- predict(nb_model, newdata = news_test)
(conf_nat <- table(news_Pred, news_test$shares))
##
## news_Pred no yes
## no 338 421
## yes 76 165
(Accuracy <- sum(diag(conf_nat))/sum(conf_nat)*100)
## [1] 50.3
news <- news[order(runif(10000)), ]
newsDataScaled <- scale(news[,2:ncol(news)], center= TRUE, scale = TRUE)
m <- cor(newsDataScaled)
highlycor <- findCorrelation(m, 0.30)
filteredData <- news[, -(highlycor[5]+1)]
filteredTraining <- filteredData[1:9000, ]
filteredTest <- filteredData[9000:10000, ]
filteredTraining$shares<- as.factor(filteredTraining$shares)
nb_model <- naive_bayes(filteredTraining$shares~., data = filteredTraining)
nb_model
## ===================== Naive Bayes =====================
## Call:
## naive_bayes.formula(formula = filteredTraining$shares ~ ., data = filteredTraining)
##
## A priori probabilities:
##
## 4 23 41 45 47
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 48 51 60 64 66
## 0.0001111111 0.0001111111 0.0002222222 0.0002222222 0.0001111111
## 70 80 82 84 86
## 0.0001111111 0.0001111111 0.0003333333 0.0001111111 0.0001111111
## 87 88 90 91 95
## 0.0001111111 0.0002222222 0.0001111111 0.0001111111 0.0002222222
## 97 98 99 102 106
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 109 111 116 119 123
## 0.0001111111 0.0001111111 0.0003333333 0.0002222222 0.0002222222
## 127 129 130 134 135
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 137 138 140 141 143
## 0.0001111111 0.0002222222 0.0002222222 0.0001111111 0.0001111111
## 144 146 149 150 151
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 154 158 160 162 163
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 168 176 178 180 181
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0002222222
## 183 186 190 191 192
## 0.0001111111 0.0001111111 0.0002222222 0.0001111111 0.0001111111
## 196 201 202 205 206
## 0.0001111111 0.0001111111 0.0001111111 0.0003333333 0.0001111111
## 211 213 215 217 218
## 0.0002222222 0.0002222222 0.0002222222 0.0002222222 0.0002222222
## 221 223 224 226 228
## 0.0002222222 0.0001111111 0.0002222222 0.0001111111 0.0002222222
## 233 236 237 238 240
## 0.0002222222 0.0001111111 0.0003333333 0.0001111111 0.0001111111
## 241 245 246 248 250
## 0.0002222222 0.0002222222 0.0001111111 0.0001111111 0.0001111111
## 251 256 258 261 262
## 0.0002222222 0.0001111111 0.0002222222 0.0001111111 0.0001111111
## 264 266 268 269 277
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 278 279 280 285 286
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 287 292 294 295 296
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 300 301 302 305 308
## 0.0002222222 0.0001111111 0.0001111111 0.0001111111 0.0002222222
## 309 313 317 318 321
## 0.0001111111 0.0001111111 0.0001111111 0.0002222222 0.0001111111
## 322 324 325 326 331
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 336 339 340 341 342
## 0.0001111111 0.0001111111 0.0001111111 0.0002222222 0.0002222222
## 343 346 348 349 350
## 0.0002222222 0.0002222222 0.0002222222 0.0001111111 0.0002222222
## 354 356 357 358 365
## 0.0002222222 0.0001111111 0.0002222222 0.0002222222 0.0001111111
## 366 368 369 371 373
## 0.0003333333 0.0001111111 0.0002222222 0.0002222222 0.0002222222
## 375 377 378 379 380
## 0.0002222222 0.0002222222 0.0001111111 0.0001111111 0.0001111111
## 381 382 383 384 386
## 0.0001111111 0.0002222222 0.0001111111 0.0001111111 0.0002222222
## 387 390 391 392 393
## 0.0001111111 0.0002222222 0.0001111111 0.0002222222 0.0003333333
## 395 396 397 398 399
## 0.0002222222 0.0001111111 0.0001111111 0.0002222222 0.0002222222
## 400 401 402 403 404
## 0.0003333333 0.0003333333 0.0002222222 0.0001111111 0.0001111111
## 407 408 410 411 412
## 0.0001111111 0.0002222222 0.0002222222 0.0001111111 0.0004444444
## 413 414 416 417 419
## 0.0002222222 0.0001111111 0.0005555556 0.0003333333 0.0002222222
## 420 421 422 423 424
## 0.0001111111 0.0002222222 0.0001111111 0.0003333333 0.0001111111
## 425 426 427 428 429
## 0.0003333333 0.0001111111 0.0001111111 0.0001111111 0.0003333333
## 430 431 432 434 435
## 0.0002222222 0.0001111111 0.0003333333 0.0001111111 0.0003333333
## 436 437 438 440 441
## 0.0004444444 0.0003333333 0.0002222222 0.0003333333 0.0002222222
## 444 445 446 447 448
## 0.0001111111 0.0003333333 0.0002222222 0.0002222222 0.0004444444
## 449 450 451 452 454
## 0.0001111111 0.0003333333 0.0003333333 0.0001111111 0.0003333333
## 455 456 458 459 460
## 0.0003333333 0.0004444444 0.0002222222 0.0001111111 0.0003333333
## 461 462 463 464 465
## 0.0003333333 0.0003333333 0.0003333333 0.0001111111 0.0001111111
## 466 467 468 469 471
## 0.0001111111 0.0003333333 0.0004444444 0.0004444444 0.0003333333
## 472 473 474 475 476
## 0.0002222222 0.0004444444 0.0001111111 0.0004444444 0.0001111111
## 477 478 480 482 483
## 0.0001111111 0.0002222222 0.0002222222 0.0002222222 0.0002222222
## 484 485 486 488 489
## 0.0004444444 0.0001111111 0.0001111111 0.0002222222 0.0002222222
## 490 492 493 494 495
## 0.0001111111 0.0003333333 0.0003333333 0.0003333333 0.0004444444
## 496 497 498 500 501
## 0.0002222222 0.0002222222 0.0005555556 0.0003333333 0.0001111111
## 502 503 504 505 506
## 0.0001111111 0.0003333333 0.0004444444 0.0004444444 0.0005555556
## 507 508 510 511 512
## 0.0002222222 0.0001111111 0.0003333333 0.0003333333 0.0001111111
## 513 514 515 516 517
## 0.0002222222 0.0001111111 0.0002222222 0.0004444444 0.0001111111
## 518 519 520 521 522
## 0.0004444444 0.0001111111 0.0001111111 0.0001111111 0.0003333333
## 523 525 526 527 528
## 0.0003333333 0.0002222222 0.0004444444 0.0006666667 0.0003333333
## 529 530 531 532 533
## 0.0004444444 0.0001111111 0.0005555556 0.0004444444 0.0005555556
## 534 535 536 537 538
## 0.0002222222 0.0004444444 0.0004444444 0.0004444444 0.0005555556
## 539 541 542 544 545
## 0.0003333333 0.0002222222 0.0004444444 0.0003333333 0.0002222222
## 546 547 548 549 550
## 0.0002222222 0.0001111111 0.0005555556 0.0004444444 0.0002222222
## 552 553 555 556 557
## 0.0002222222 0.0002222222 0.0002222222 0.0003333333 0.0001111111
## 558 559 560 561 562
## 0.0001111111 0.0003333333 0.0003333333 0.0002222222 0.0001111111
## 563 564 565 566 567
## 0.0002222222 0.0004444444 0.0004444444 0.0006666667 0.0001111111
## 568 569 570 571 572
## 0.0002222222 0.0002222222 0.0003333333 0.0003333333 0.0002222222
## 573 574 575 576 577
## 0.0001111111 0.0005555556 0.0005555556 0.0005555556 0.0004444444
## 578 579 580 581 582
## 0.0004444444 0.0005555556 0.0001111111 0.0006666667 0.0003333333
## 583 584 585 586 588
## 0.0003333333 0.0003333333 0.0005555556 0.0005555556 0.0002222222
## 589 590 591 592 593
## 0.0005555556 0.0003333333 0.0005555556 0.0001111111 0.0005555556
## 594 595 596 597 598
## 0.0002222222 0.0001111111 0.0003333333 0.0003333333 0.0003333333
## 599 600 601 602 603
## 0.0004444444 0.0001111111 0.0001111111 0.0006666667 0.0003333333
## 604 605 606 607 608
## 0.0002222222 0.0004444444 0.0007777778 0.0001111111 0.0003333333
## 609 610 612 613 614
## 0.0002222222 0.0003333333 0.0007777778 0.0002222222 0.0006666667
## 615 616 618 619 620
## 0.0001111111 0.0002222222 0.0004444444 0.0002222222 0.0006666667
## 621 622 623 624 625
## 0.0004444444 0.0002222222 0.0005555556 0.0004444444 0.0001111111
## 626 627 628 629 630
## 0.0004444444 0.0001111111 0.0003333333 0.0003333333 0.0003333333
## 631 632 633 634 635
## 0.0003333333 0.0003333333 0.0002222222 0.0002222222 0.0007777778
## 636 637 638 639 640
## 0.0002222222 0.0002222222 0.0002222222 0.0008888889 0.0005555556
## 641 642 643 644 645
## 0.0001111111 0.0004444444 0.0004444444 0.0003333333 0.0006666667
## 646 647 648 649 650
## 0.0003333333 0.0001111111 0.0005555556 0.0004444444 0.0004444444
## 651 652 653 654 655
## 0.0004444444 0.0001111111 0.0001111111 0.0003333333 0.0002222222
## 656 657 658 659 660
## 0.0006666667 0.0008888889 0.0005555556 0.0003333333 0.0004444444
## 661 662 663 664 665
## 0.0005555556 0.0003333333 0.0003333333 0.0002222222 0.0001111111
## 666 667 668 669 670
## 0.0001111111 0.0003333333 0.0002222222 0.0002222222 0.0004444444
## 671 672 673 674 675
## 0.0004444444 0.0003333333 0.0003333333 0.0003333333 0.0005555556
## 676 677 678 679 680
## 0.0006666667 0.0003333333 0.0003333333 0.0004444444 0.0003333333
## 681 682 683 684 685
## 0.0007777778 0.0006666667 0.0004444444 0.0002222222 0.0002222222
## 686 687 688 689 690
## 0.0004444444 0.0004444444 0.0003333333 0.0005555556 0.0006666667
## 691 692 693 694 695
## 0.0003333333 0.0004444444 0.0003333333 0.0004444444 0.0002222222
## 696 697 698 699 700
## 0.0004444444 0.0003333333 0.0007777778 0.0003333333 0.0004444444
## 701 702 703 704 705
## 0.0010000000 0.0002222222 0.0003333333 0.0003333333 0.0004444444
## 706 707 708 709 710
## 0.0003333333 0.0004444444 0.0002222222 0.0003333333 0.0007777778
## 711 712 713 714 715
## 0.0003333333 0.0007777778 0.0004444444 0.0003333333 0.0004444444
## 716 717 718 719 720
## 0.0003333333 0.0005555556 0.0004444444 0.0003333333 0.0005555556
## 721 722 723 724 725
## 0.0001111111 0.0002222222 0.0001111111 0.0001111111 0.0005555556
## 726 727 728 729 730
## 0.0006666667 0.0006666667 0.0006666667 0.0005555556 0.0012222222
## 731 732 733 734 735
## 0.0006666667 0.0006666667 0.0006666667 0.0002222222 0.0007777778
## 736 737 738 739 740
## 0.0005555556 0.0003333333 0.0004444444 0.0002222222 0.0006666667
## 741 742 743 744 745
## 0.0006666667 0.0007777778 0.0002222222 0.0005555556 0.0006666667
## 746 748 749 750 751
## 0.0006666667 0.0003333333 0.0002222222 0.0007777778 0.0008888889
## 752 753 754 755 756
## 0.0010000000 0.0005555556 0.0005555556 0.0006666667 0.0005555556
## 757 758 759 760 761
## 0.0006666667 0.0002222222 0.0005555556 0.0004444444 0.0003333333
## 762 763 764 765 766
## 0.0002222222 0.0005555556 0.0004444444 0.0004444444 0.0001111111
## 767 768 769 770 771
## 0.0004444444 0.0004444444 0.0004444444 0.0004444444 0.0005555556
## 772 773 774 775 776
## 0.0002222222 0.0004444444 0.0005555556 0.0007777778 0.0002222222
## 777 778 779 780 781
## 0.0002222222 0.0001111111 0.0002222222 0.0001111111 0.0001111111
## 782 783 784 785 786
## 0.0004444444 0.0010000000 0.0002222222 0.0004444444 0.0004444444
## 787 788 789 790 791
## 0.0005555556 0.0003333333 0.0005555556 0.0010000000 0.0004444444
## 792 793 794 795 796
## 0.0008888889 0.0001111111 0.0007777778 0.0005555556 0.0002222222
## 797 798 799 800 801
## 0.0003333333 0.0007777778 0.0004444444 0.0005555556 0.0003333333
## 802 803 804 805 806
## 0.0007777778 0.0002222222 0.0005555556 0.0006666667 0.0004444444
## 807 808 809 810 811
## 0.0004444444 0.0006666667 0.0006666667 0.0005555556 0.0006666667
## 812 813 814 815 816
## 0.0004444444 0.0002222222 0.0002222222 0.0004444444 0.0005555556
## 817 818 819 820 821
## 0.0005555556 0.0005555556 0.0003333333 0.0002222222 0.0007777778
## 822 823 824 825 826
## 0.0005555556 0.0008888889 0.0005555556 0.0011111111 0.0002222222
## 827 828 829 830 831
## 0.0006666667 0.0004444444 0.0003333333 0.0003333333 0.0007777778
## 832 833 834 835 836
## 0.0006666667 0.0007777778 0.0005555556 0.0004444444 0.0004444444
## 837 838 839 840 841
## 0.0005555556 0.0007777778 0.0005555556 0.0005555556 0.0002222222
## 842 843 844 845 846
## 0.0002222222 0.0005555556 0.0005555556 0.0007777778 0.0004444444
## 847 848 849 850 851
## 0.0001111111 0.0002222222 0.0004444444 0.0003333333 0.0004444444
## 852 853 854 855 856
## 0.0004444444 0.0003333333 0.0004444444 0.0006666667 0.0006666667
## 857 858 859 860 861
## 0.0007777778 0.0004444444 0.0006666667 0.0005555556 0.0003333333
## 862 863 864 865 866
## 0.0003333333 0.0005555556 0.0006666667 0.0001111111 0.0003333333
## 867 868 869 870 871
## 0.0004444444 0.0005555556 0.0004444444 0.0004444444 0.0005555556
## 872 873 874 875 876
## 0.0006666667 0.0005555556 0.0005555556 0.0002222222 0.0004444444
## 877 878 879 880 881
## 0.0004444444 0.0007777778 0.0001111111 0.0007777778 0.0002222222
## 882 883 884 885 886
## 0.0004444444 0.0003333333 0.0005555556 0.0003333333 0.0004444444
## 887 888 889 890 891
## 0.0006666667 0.0002222222 0.0006666667 0.0006666667 0.0007777778
## 892 894 895 896 897
## 0.0005555556 0.0005555556 0.0007777778 0.0005555556 0.0003333333
## 898 899 900 901 902
## 0.0004444444 0.0006666667 0.0007777778 0.0003333333 0.0010000000
## 903 904 905 906 907
## 0.0006666667 0.0005555556 0.0005555556 0.0002222222 0.0008888889
## 908 909 910 911 912
## 0.0002222222 0.0007777778 0.0004444444 0.0004444444 0.0006666667
## 913 914 915 916 917
## 0.0007777778 0.0007777778 0.0005555556 0.0007777778 0.0006666667
## 918 919 920 921 922
## 0.0010000000 0.0005555556 0.0003333333 0.0002222222 0.0006666667
## 923 924 925 926 927
## 0.0004444444 0.0008888889 0.0003333333 0.0005555556 0.0002222222
## 928 929 930 931 932
## 0.0005555556 0.0002222222 0.0006666667 0.0001111111 0.0003333333
## 933 934 935 936 937
## 0.0006666667 0.0006666667 0.0003333333 0.0003333333 0.0006666667
## 938 939 940 941 942
## 0.0002222222 0.0011111111 0.0005555556 0.0001111111 0.0005555556
## 943 944 945 946 947
## 0.0003333333 0.0004444444 0.0003333333 0.0006666667 0.0004444444
## 948 949 950 951 952
## 0.0001111111 0.0005555556 0.0007777778 0.0007777778 0.0005555556
## 953 954 955 956 957
## 0.0007777778 0.0005555556 0.0003333333 0.0006666667 0.0007777778
## 958 959 960 961 962
## 0.0003333333 0.0004444444 0.0004444444 0.0002222222 0.0007777778
## 963 964 965 966 967
## 0.0004444444 0.0006666667 0.0004444444 0.0006666667 0.0004444444
## 968 969 970 971 972
## 0.0004444444 0.0006666667 0.0007777778 0.0006666667 0.0007777778
## 973 974 975 976 977
## 0.0006666667 0.0002222222 0.0001111111 0.0003333333 0.0003333333
## 978 979 980 981 982
## 0.0005555556 0.0010000000 0.0004444444 0.0003333333 0.0002222222
## 983 984 985 986 987
## 0.0008888889 0.0006666667 0.0003333333 0.0004444444 0.0007777778
## 988 989 990 991 992
## 0.0002222222 0.0005555556 0.0008888889 0.0007777778 0.0008888889
## 993 994 995 996 997
## 0.0002222222 0.0005555556 0.0002222222 0.0001111111 0.0003333333
## 998 999 1000 1100 1200
## 0.0012222222 0.0004444444 0.0238888889 0.0505555556 0.0502222222
## 1300 1400 1500 1600 1700
## 0.0405555556 0.0424444444 0.0360000000 0.0290000000 0.0270000000
## 1800 1900 2000 2100 2200
## 0.0233333333 0.0238888889 0.0206666667 0.0215555556 0.0191111111
## 2300 2400 2500 2600 2700
## 0.0151111111 0.0132222222 0.0133333333 0.0120000000 0.0126666667
## 2800 2900 3000 3100 3200
## 0.0107777778 0.0112222222 0.0088888889 0.0090000000 0.0100000000
## 3300 3400 3500 3600 3700
## 0.0066666667 0.0088888889 0.0067777778 0.0046666667 0.0063333333
## 3800 3900 4000 4100 4200
## 0.0054444444 0.0060000000 0.0038888889 0.0047777778 0.0053333333
## 4300 4400 4500 4600 4700
## 0.0043333333 0.0040000000 0.0047777778 0.0036666667 0.0028888889
## 4800 4900 5000 5100 5200
## 0.0044444444 0.0035555556 0.0034444444 0.0032222222 0.0032222222
## 5300 5400 5500 5600 5700
## 0.0025555556 0.0023333333 0.0023333333 0.0018888889 0.0024444444
## 5800 5900 6000 6100 6200
## 0.0020000000 0.0014444444 0.0024444444 0.0020000000 0.0018888889
## 6300 6400 6500 6600 6700
## 0.0026666667 0.0018888889 0.0025555556 0.0018888889 0.0014444444
## 6800 6900 7000 7100 7200
## 0.0017777778 0.0020000000 0.0008888889 0.0013333333 0.0015555556
## 7300 7400 7500 7600 7700
## 0.0014444444 0.0020000000 0.0008888889 0.0012222222 0.0012222222
## 7800 7900 8000 8100 8200
## 0.0014444444 0.0011111111 0.0013333333 0.0011111111 0.0010000000
## 8300 8400 8500 8600 8700
## 0.0006666667 0.0007777778 0.0007777778 0.0006666667 0.0007777778
## 8800 8900 9000 9100 9200
## 0.0004444444 0.0005555556 0.0006666667 0.0010000000 0.0011111111
## 9300 9400 9500 9600 9700
## 0.0005555556 0.0008888889 0.0007777778 0.0004444444 0.0013333333
## 9800 9900 10000 10100 10200
## 0.0010000000 0.0004444444 0.0007777778 0.0005555556 0.0004444444
## 10300 10400 10500 10600 10700
## 0.0006666667 0.0006666667 0.0002222222 0.0008888889 0.0011111111
## 10800 10900 11000 11100 11200
## 0.0006666667 0.0004444444 0.0005555556 0.0008888889 0.0002222222
## 11300 11400 11500 11600 11700
## 0.0003333333 0.0006666667 0.0002222222 0.0001111111 0.0008888889
## 11800 11900 12000 12100 12200
## 0.0004444444 0.0006666667 0.0006666667 0.0003333333 0.0002222222
## 12300 12400 12500 12600 12700
## 0.0010000000 0.0006666667 0.0005555556 0.0002222222 0.0002222222
## 12800 12900 13000 13100 13200
## 0.0004444444 0.0002222222 0.0004444444 0.0001111111 0.0002222222
## 13300 13400 13500 13600 13700
## 0.0003333333 0.0003333333 0.0002222222 0.0002222222 0.0004444444
## 13800 13900 14000 14100 14200
## 0.0002222222 0.0007777778 0.0001111111 0.0001111111 0.0001111111
## 14300 14400 14500 14600 14700
## 0.0005555556 0.0004444444 0.0004444444 0.0001111111 0.0004444444
## 14800 14900 15000 15200 15300
## 0.0004444444 0.0002222222 0.0004444444 0.0004444444 0.0002222222
## 15400 15500 15600 15700 15800
## 0.0004444444 0.0001111111 0.0002222222 0.0004444444 0.0002222222
## 15900 16100 16200 16300 16400
## 0.0002222222 0.0003333333 0.0004444444 0.0004444444 0.0002222222
## 16500 16600 16700 16800 16900
## 0.0002222222 0.0004444444 0.0003333333 0.0003333333 0.0002222222
## 17000 17100 17200 17300 17400
## 0.0001111111 0.0005555556 0.0001111111 0.0002222222 0.0001111111
## 17500 17600 17800 17900 18000
## 0.0002222222 0.0003333333 0.0002222222 0.0003333333 0.0002222222
## 18100 18200 18300 18400 18700
## 0.0003333333 0.0002222222 0.0001111111 0.0005555556 0.0001111111
## 18900 19100 19200 19400 19800
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0002222222
## 20200 20300 20500 20600 20700
## 0.0002222222 0.0001111111 0.0001111111 0.0002222222 0.0002222222
## 20800 20900 21000 21100 21400
## 0.0002222222 0.0003333333 0.0001111111 0.0001111111 0.0002222222
## 21500 21700 21800 21900 22000
## 0.0002222222 0.0002222222 0.0001111111 0.0001111111 0.0002222222
## 22100 22200 22300 23000 23100
## 0.0002222222 0.0001111111 0.0003333333 0.0001111111 0.0001111111
## 23300 23500 23600 23700 23800
## 0.0001111111 0.0003333333 0.0001111111 0.0002222222 0.0001111111
## 23900 24000 24200 24300 24400
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0002222222
## 24500 24800 24900 25000 25100
## 0.0003333333 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 25200 25300 25700 26200 26300
## 0.0003333333 0.0002222222 0.0001111111 0.0001111111 0.0001111111
## 26400 26600 26900 27000 27300
## 0.0003333333 0.0001111111 0.0001111111 0.0002222222 0.0002222222
## 27400 27700 27900 28200 28300
## 0.0001111111 0.0002222222 0.0001111111 0.0003333333 0.0001111111
## 28600 28900 30000 30200 30400
## 0.0001111111 0.0001111111 0.0001111111 0.0002222222 0.0001111111
## 31400 31600 32200 32600 32700
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 33100 33900 34900 35100 35300
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 35800 36100 36200 36700 36800
## 0.0002222222 0.0001111111 0.0003333333 0.0001111111 0.0001111111
## 37400 39200 39400 40100 40400
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0002222222
## 41200 41600 41700 42200 42600
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 43100 44700 45400 48800 49000
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 50200 51900 53100 53700 54300
## 0.0002222222 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 56400 57600 61500 61600 62300
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 65300 68300 71800 73100 80400
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 81200 87000 93800 97200 104100
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 112500 118700 144400 196700 210300
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
## 227300 306100 617900 690400 843300
## 0.0001111111 0.0001111111 0.0001111111 0.0001111111 0.0001111111
##
## Tables:
##
## url 4
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 23
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 41
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 45
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 47
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 48
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 51
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 60
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 64
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 66
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 70
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 80
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 82
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 84
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 86
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 87
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 88
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 90
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 91
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 95
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 97
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 98
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 99
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 102
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 106
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 109
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 111
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 116
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 119
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 123
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 127
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 129
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 130
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 134
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 135
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 137
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 138
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 140
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 141
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 143
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 144
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 146
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 149
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 150
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 151
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 154
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 158
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 160
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 162
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 163
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 168
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 176
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 178
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 180
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 181
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 183
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 186
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 190
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 191
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 192
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 196
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 201
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 202
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 205
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 206
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 211
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 213
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 215
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 217
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.500000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 218
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 221
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 223
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 224
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 226
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 228
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 233
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 236
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 237
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 238
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 240
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 241
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 245
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 246
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 248
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 250
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 251
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 256
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 258
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 261
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 262
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 264
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 266
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 268
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 269
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 277
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 278
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 279
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 280
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 285
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 286
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 287
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 292
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 294
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 295
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 296
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 300
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 301
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 302
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 305
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 308
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 309
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 313
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 317
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 318
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 321
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 322
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 324
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 325
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 326
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 331
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 336
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 339
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 340
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 341
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 342
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 343
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 346
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 348
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 349
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 350
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 354
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 356
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 357
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 358
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 365
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 366
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 368
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 369
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 371
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 373
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 375
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 377
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 378
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 379
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 380
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 381
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 382
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.500000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 383
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 384
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 386
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 387
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 390
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 391
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 392
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 393
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 395
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 396
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 397
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 398
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 399
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 400
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.333333333
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 401
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.333333333
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 402
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 403
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 404
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 407
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 408
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 410
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 411
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 412
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 413
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 414
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 416
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 417
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 419
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 420
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 421
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 422
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 423
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 424
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 425
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.333333333
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 426
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 427
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 428
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 429
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 430
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 431
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 432
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 434
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 435
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 436
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 437
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 438
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 440
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 441
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 444
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 445
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.333333333
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 446
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 447
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 448
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 449
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 450
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 451
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 452
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 454
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 455
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.333333333
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 456
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 458
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 459
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 1.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 460
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 461
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 462
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.333333333
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 463
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 464
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 465
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 466
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 467
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 468
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.250000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 469
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 471
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 472
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 473
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 474
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 475
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 476
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 477
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 478
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 480
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.500000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 482
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 483
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 484
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 485
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 486
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 488
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 489
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 490
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 492
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 493
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 494
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 495
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.250000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 496
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 497
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 498
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 500
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.333333333
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 501
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 502
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 503
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 504
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.250000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 505
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.250000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 506
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 507
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.500000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 508
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 510
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 511
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 512
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 513
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 514
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 515
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 516
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 517
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 518
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 519
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 520
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 521
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 522
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 523
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 525
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 526
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 527
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 528
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 529
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 530
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 531
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 532
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 533
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 534
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 535
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 536
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.250000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 537
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 538
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 539
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 541
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 542
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 544
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 545
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.500000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 546
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 547
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 548
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 549
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 550
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 552
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 553
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 555
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 556
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.333333333
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 557
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 558
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 559
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 560
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 561
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 562
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 563
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 564
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 565
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 566
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 567
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 568
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 569
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 570
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 571
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 572
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 573
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 1.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 574
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 575
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.200000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 576
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 577
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 578
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 579
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 580
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 581
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 582
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 583
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 584
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 585
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.200000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 586
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 588
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 589
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 590
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 591
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 592
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 593
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.200000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 594
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 595
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 596
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 597
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 598
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.333333333
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.333333333
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 599
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 600
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 601
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 602
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 603
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 604
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 605
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 606
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 607
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 608
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 609
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 610
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 612
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 613
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 614
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 615
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 616
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 618
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 619
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 620
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 621
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 622
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 623
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 624
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 625
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 626
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 627
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 628
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 629
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 630
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 631
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.333333333
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 632
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 633
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 634
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 635
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 636
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 637
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 638
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 639
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 640
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 641
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 642
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 643
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 644
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 645
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.166666667
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 646
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 647
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 648
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 649
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 650
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 651
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 652
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 653
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 654
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 655
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 656
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 657
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 658
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 659
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 660
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 661
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 662
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 663
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 664
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 665
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 666
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 667
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 668
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 669
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 670
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 671
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 672
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 673
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 674
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 675
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 676
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 677
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 678
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 679
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 680
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 681
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 682
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 683
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 684
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 685
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 686
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 687
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 688
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 689
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 690
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.166666667
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 691
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 692
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 693
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 694
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 695
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.500000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 696
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 697
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 698
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 699
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 700
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 701
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 702
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 703
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 704
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 705
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 706
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 707
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 708
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 709
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 710
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.142857143
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 711
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.333333333
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 712
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 713
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 714
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 715
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 716
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 717
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 718
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 719
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 720
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 721
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 722
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 723
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 724
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 725
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 726
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 727
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 728
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 729
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 730
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 731
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 732
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.166666667
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 733
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 734
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 735
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 736
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 737
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 738
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 739
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 740
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 741
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 742
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/ 0.000000000
## http://mashable.com/2013/01/07/monster-ea-gaming-headphones/ 0.000000000
## http://mashable.com/2013/01/07/monster-katana-bluetooth-speake/ 0.000000000
## http://mashable.com/2013/01/07/nectar-mobile-powe/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-project-shield/ 0.000000000
## http://mashable.com/2013/01/07/nvidia-tegra-4/ 0.000000000
## http://mashable.com/2013/01/07/obama-boombox-israeli-radio-station-ad/ 0.000000000
## http://mashable.com/2013/01/07/omron-fitness-monitors/ 0.000000000
## http://mashable.com/2013/01/07/one-directions-kiss-you-video-is-here-after-barrage-of-web-teasers/ 0.000000000
## http://mashable.com/2013/01/07/panasonic-second-screen/ 0.000000000
## http://mashable.com/2013/01/07/pantech-discover-att/ 0.000000000
## http://mashable.com/2013/01/07/papertab/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-p8-speaker/ 0.000000000
## http://mashable.com/2013/01/07/philips-fidelio-soundbar/ 0.000000000
## http://mashable.com/2013/01/07/pitchfork-advance-album-stream/ 0.000000000
## http://mashable.com/2013/01/07/polaroid-android-camera/ 0.000000000
## http://mashable.com/2013/01/07/power-matters-alliance-organization/ 0.000000000
## http://mashable.com/2013/01/07/rage-comics-dying/ 0.000000000
## http://mashable.com/2013/01/07/reeddit-reddit/ 0.000000000
## http://mashable.com/2013/01/07/roku-adds-channels-device-partners-ces/ 0.000000000
## http://mashable.com/2013/01/07/samsung-2013-ces-press-conference/ 0.000000000
## http://mashable.com/2013/01/07/samsung-85-inch-uhd-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-mulit-view-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-quad-core-tv/ 0.000000000
## http://mashable.com/2013/01/07/samsung-smart-hub/ 0.000000000
## http://mashable.com/2013/01/07/samsung-uhd-blu-ray/ 0.000000000
## http://mashable.com/2013/01/07/sharp-intros-worlds-largest-led-hdtv/ 0.000000000
## http://mashable.com/2013/01/07/sharp-unveils-next-gen-igo-hdtvs/ 0.000000000
## http://mashable.com/2013/01/07/social-media-iran/ 0.000000000
## http://mashable.com/2013/01/07/social-tv-movies-getglue-2012/ 0.000000000
## http://mashable.com/2013/01/07/sony-stops-manufacturing-playstation-2/ 0.000000000
## http://mashable.com/2013/01/07/stolen-iphone-dating/ 0.000000000
## http://mashable.com/2013/01/07/targus-touch-pen-windows-8/ 0.000000000
## http://mashable.com/2013/01/07/ticketmaster-inauguration/ 0.000000000
## http://mashable.com/2013/01/07/top-twitter-pics-1-7/ 0.000000000
## http://mashable.com/2013/01/07/toshiba-4k-tv/ 0.000000000
## http://mashable.com/2013/01/07/traffic-signals-bugs/ 0.000000000
## http://mashable.com/2013/01/07/vh1-new-logo-plus-sign/ 0.000000000
## http://mashable.com/2013/01/07/youtube-future-tv/ 0.000000000
## http://mashable.com/2013/01/07/youtube-vs-cable/ 0.000000000
## http://mashable.com/2013/01/08/artist-drone-pilots-craigslist-fbi/ 0.000000000
## http://mashable.com/2013/01/08/japanese-cat-bomb-hacker/ 0.000000000
## http://mashable.com/2013/01/08/lego-iphone-case/ 0.000000000
## http://mashable.com/2013/01/08/nfl-arian-foster-twitter-avatar/ 0.000000000
## http://mashable.com/2013/01/08/personal-for-education/ 0.000000000
## http://mashable.com/2013/01/08/ro-marley-ces-2013/ 0.000000000
## http://mashable.com/2013/01/08/samsung-curved-oled/ 0.000000000
## http://mashable.com/2013/01/08/snow-dogs/ 0.000000000
## http://mashable.com/2013/01/08/star-trek-into-darkness-app/ 0.000000000
## http://mashable.com/2013/01/08/star-wars-episode-vii-who-will-direct-it-now/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-data/ 0.000000000
## http://mashable.com/2013/01/08/t-mobile-value-plan/ 0.000000000
## http://mashable.com/2013/01/09/1600-penn-sprinkles-cupcakes/ 0.000000000
## http://mashable.com/2013/01/09/50-cent-ces/ 0.000000000
## http://mashable.com/2013/01/09/amazon-predictions-2013/ 0.000000000
## http://mashable.com/2013/01/09/apple-phablet/ 0.000000000
## http://mashable.com/2013/01/09/arrested-development-may/ 0.000000000
## http://mashable.com/2013/01/09/bad-instagram-filters/ 0.000000000
##
## url 743
## http://mashable.com/2013/01/07/amazon-instant-video-browser/ 0.000000000
## http://mashable.com/2013/01/07/ap-samsung-sponsored-tweets/ 0.000000000
## http://mashable.com/2013/01/07/apple-40-billion-app-downloads/ 0.000000000
## http://mashable.com/2013/01/07/astronaut-notre-dame-bcs/ 0.000000000
## http://mashable.com/2013/01/07/att-u-verse-apps/ 0.000000000
## http://mashable.com/2013/01/07/beewi-smart-toys/ 0.000000000
## http://mashable.com/2013/01/07/bodymedia-armbandgets-update/ 0.000000000
## http://mashable.com/2013/01/07/canon-poweshot-n/ 0.000000000
## http://mashable.com/2013/01/07/car-of-the-future-infographic/ 0.000000000
## http://mashable.com/2013/01/07/chuck-hagel-website/ 0.000000000
## http://mashable.com/2013/01/07/cosmic-events-doomsday/ 0.000000000
## http://mashable.com/2013/01/07/crayon-creatures/ 0.000000000
## http://mashable.com/2013/01/07/creature-cups/ 0.000000000
## http://mashable.com/2013/01/07/dad-jokes/ 0.000000000
## http://mashable.com/2013/01/07/downton-abbey-tumblrs/ 0.000000000
## http://mashable.com/2013/01/07/earth-size-planets-milky-way/ 0.000000000
## http://mashable.com/2013/01/07/echo-game/ 0.000000000
## http://mashable.com/2013/01/07/entrepreneur-trends-2013/ 0.000000000
## http://mashable.com/2013/01/07/facebook-sick-app/ 0.000000000
## http://mashable.com/2013/01/07/felt-audio-pulse-speaker/ 0.000000000
## http://mashable.com/2013/01/07/ford-glympse/ 0.000000000
## http://mashable.com/2013/01/07/ftc-google-leaks/ 0.000000000
## http://mashable.com/2013/01/07/fujifilm-50x-superzoom/ 0.000000000
## http://mashable.com/2013/01/07/hillary-clinton-helmet/ 0.000000000
## http://mashable.com/2013/01/07/htc-q1/ 0.000000000
## http://mashable.com/2013/01/07/huawei-ascend-mate/ 0.000000000
## http://mashable.com/2013/01/07/iheartradio-app-perfect-for/ 0.000000000
## http://mashable.com/2013/01/07/intel-awesome-laptop/ 0.000000000
## http://mashable.com/2013/01/07/isp02-iphone-take-your-pulse/ 0.000000000
## http://mashable.com/2013/01/07/jobs-contently/ 0.000000000
## http://mashable.com/2013/01/07/land-a-job-at-spotify/ 0.000000000
## http://mashable.com/2013/01/07/lego-taking-robotics-to-next-level-with-mindstorms-ev3/ 0.000000000
## http://mashable.com/2013/01/07/lg-oled-tv-price/ 0.000000000
## http://mashable.com/2013/01/07/lionel-messi-fashion-moments/ 0.000000000
## http://mashable.com/2013/01/07/living-room-pinterest-contest/ 0.000000000
## http://mashable.com/2013/01/07/livio-connect-expands/ 0.000000000
## http://mashable.com/2013/01/07/magisto-ces/ 0.000000000
## http://mashable.com/2013/01/07/man-instagram-images-blind/ 0.000000000
## http://mashable.com/2013/01/07/mcafee-spying/ 0.000000000
## http://mashable.com/2013/01/07/messi-year-all-goals/