Skip to content

Instantly share code, notes, and snippets.

@alexserver
Created May 23, 2015 22:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexserver/1d81b97e2f5d0000bb0b to your computer and use it in GitHub Desktop.
Save alexserver/1d81b97e2f5d0000bb0b to your computer and use it in GitHub Desktop.
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