La Película Viviente: Mixtape

La Película Viviente: Mixtape (English: The Living Movie) is the mixtape by Guelo Star, released in 2009.

La Película Viviente: Mixtape
Mixtape by
Released2009
Recorded2008-2009
GenreReggaeton
LabelLive Music
White Lion Records
Nativos Music (Yai & Toly)
ProducerDJ Sincero

Track listing

  1. La Película Viviente (Intro)
  2. Se Reventó El Party
  3. La Peli La Peli
  4. Fuma Blones (feat. Chyno Nyno)
  5. La Puti Puerca (Remix) (feat. Jamsha, De La Ghetto, Chyno Nyno & Ñejo & Dalmata)
  6. Sendo Cohete (feat. Jamsha)
  7. Reggaeton Pa Tol Mundo
  8. Déjate Sentir (feat. Zion & Lennox)
  9. Mala Influencia (feat. Jory)
  10. What You Wanna Do (feat. De La Ghetto)
  11. Te Conocí (feat. DJ Blass)
  12. Guillate Cabrón (feat. Speedy)
  13. Disco Party (feat. Arcángel)
  14. Película Viviente
  15. Azótala Bien
  16. Bailoteo (feat. Syko)
  17. Adicta Al Perreo
  18. Confusión (Remix) (feat. MC Ceja)
  19. Pobre Igual Que Yo (feat. Pito Piquete & Tony Lenta)
  20. Que Tú Dices
  21. La Impresión (feat. Jory & Nova)
  22. Los Celos (feat. Neme de Ponce)
  23. Levantese (feat. Voltio)
  24. Actívate (feat. MC Ceja)
  25. Así Es Mi Vida (feat. Syko, Cosculluela, De La Ghetto & Yomo)
  26. Somos de Calle (Remix) (feat. Daddy Yankee, Arcángel, De La Ghetto, MC Ceja, Voltio, Ñejo, Chyno Nyno, Cosculluela, Baby Rasta)
gollark: It's kind of bad.
gollark: ```python#!/bin/env python3chars = [chr(n) for n in range(126)]firstchar = chars[0]lastchar = chars[len(chars) - 1]def increment_char(character): return chr(ord(character) + 1)def old_increment_string(string_to_increment): reversed_string = list(reversed(string_to_increment)) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed(reversed_string)))def increment_string(to_increment): reversed_string = list(to_increment) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed_string))def string_generator(): length = 0 while 1: length += 1 string = chars[0] * length while True: try: string = increment_string(string) except IndexError: # Incrementing has gone out of the char array, move onto next length break yield string```
gollark: Except it enumerates all possible ASCII strings instead.
gollark: I made that!
gollark: no.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.