Created
May 23, 2015 22:14
-
-
Save alexserver/1d81b97e2f5d0000bb0b to your computer and use it in GitHub Desktop.
Algoritmo de la gente normal que quiere ver peliculas en internet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//algoritmo de la gente normal que busca películas en internet | |
if (pelicula.release_date>(now.substract("2 months") ) ) { | |
download.from("thepiratebay") | |
} | |
else { | |
if (pelicula.is.in("netflix")) { | |
watch.it.in("netflix") | |
} | |
else { | |
download.from("thepiratebay") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment