Skip to content

Instantly share code, notes, and snippets.

@alexserver
Created May 23, 2015 22:14
Algoritmo de la gente normal que quiere ver peliculas en internet
//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