Created
May 23, 2015 22:14
Algoritmo de la gente normal que quiere ver peliculas en internet
This file contains hidden or 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