Skip to content

Instantly share code, notes, and snippets.

View Faisalawanisee's full-sized avatar
🎯
Focusing

Faisal Khalid Faisalawanisee

🎯
Focusing
View GitHub Profile
@Faisalawanisee
Faisalawanisee / netflix-ids.txt
Created September 27, 2018 16:39 — forked from zrobit/netflix-ids.txt
https://www.netflix.com/browse/genre/{id} netflix códigos que desbloquean géneros
1365 = Action & Adventure
77232 = Asian Action Movies
46576 = Classic Action & Adventure
43040 = Action Comedies
43048 = Action Thrillers
@Faisalawanisee
Faisalawanisee / Movies.csv
Created September 27, 2018 16:38 — forked from ogsteinke/Movies.csv
Movies
Film Genre Lead Studio Audience score % Profitability Rotten Tomatoes % Worldwide Gross Year
Jane Eyre Romance Universal 77 0 85 $30.15 2011
Our Family Wedding Comedy Independent 49 0 14 $21.37 2010
When in Rome Comedy Disney 44 0 15 $43.04 2010
Waiting For Forever Romance Independent 53 0.005 6 $0.03 2011
Miss Pettigrew Lives for a Day Comedy Independent 70 0.2528949 78 $15.17 2008
A Dangerous Method Drama Independent 89 0.44864475 79 $8.97 2011
Across the Universe Romance Independent 84 0.652603178 54 $29.37 2007
My Week with Marilyn Drama The Weinstein Company 84 0.8258 83 $8.26 2011
Youth in Revolt Comedy The Weinstein Company 52 1.09 68 $19.62 2010
*****2015*****
.The Hateful Eight (2015)
~Spectre (2015)
~The Martian (2015)
~The Grand Budapest Hotel (2014)
-Close Range (2015)
+The Stanford Prison Experiment (2015)
+The Divide (2011)
-Only God Forgives (2013)
+German Angst (2015)
@Faisalawanisee
Faisalawanisee / movie_list.txt
Created September 27, 2018 16:24 — forked from FracKenA/movie_list.txt
Movie List
The 5th Wave
Alien: Covenant
Allied
The Amazing Spider-Man
The Amazing Spider-Man 2
American Assassin
American Made
Angry Birds
Argo
Arrival (2016)
@Faisalawanisee
Faisalawanisee / top_100_anime_movies.md
Created September 27, 2018 16:24 — forked from bomberstudios/top_100_anime_movies.md
Top 100 Anime Movies Of All Time (from http://imgur.com/a/k2vwE)
  1. Colorful (2010) [T]

    Probably not the title that most people expected to see in the #1 slot. I urge everyone to give it a shot though. No other film has ever brought me through a greater spectrum of emotions. It's a supernatural film, but the characters are so well fleshed out and developed that they feel real. I've probably seen a hundred films since, but none have compared.

  2. Time of Eve (2010) [T]

Director: Yasuhiro Yoshiura - "Sometime in future Japan, androids have been involved in every aspect of peoples lives. One day, upon checking his android's behavioral log, Rikuo, a student, noticed his android's returning times have been odd recently. With his friend Masaki, they found out the place where his android, Sammy, have been visiting: a small cafe called Eve no Jikan where an

  • Jeunet/caro (delicatessen, TS spivet, etc)
  • Pulp fiction
  • Cornetto's (Hot fuzz, shaun of the dead, etc)
  • Zombieland
  • District 9
  • Kill bill (1 & 2)
  • Grand budapest hotel
  • Reservoir dogs
  • Inglourious Basterds
  • ExistenZ
@Faisalawanisee
Faisalawanisee / unzip.php
Created August 10, 2018 09:46 — forked from solepixel/unzip.php
When load balancers have set timeouts at 30 seconds, this script will process requests that may take longer than 30 seconds (up to 15 minutes) without causing a timeout.
<?php
$cmd = "zip -9prv content_backup.zip .";
$pipe = popen($cmd, 'r');
if (empty($pipe)) {
throw new Exception("Unable to open pipe for command '$cmd'");
}
stream_set_blocking($pipe, false);
echo "\n";
@Faisalawanisee
Faisalawanisee / activate-plugin.php
Created August 10, 2018 09:39 — forked from solepixel/activate-plugin.php
Originally design to activate Andrew Norcross's Airplane Mode plugin (https://github.com/norcross/airplane-mode), this little script will allow you to activate a plugin when the WordPress admin plugin screen cannot be loaded, for whatever reason.
<?php
/**
* This file will activate the Airplane Mode plugin if not already activated. This is helpful when you do not have internet connection and you're unable to reach the WP Admin Plugins page to activate the plugin.
*/
// get WP bootstrap
define('WP_USE_THEMES', false);
require(__DIR__ . '/wp/wp-blog-header.php');
@Faisalawanisee
Faisalawanisee / iso-639-1-codes.php
Created July 16, 2018 19:07 — forked from DimazzzZ/iso-639-1-codes.php
ISO 639-1 language codes array
<?php
$codes = [
'ab' => 'Abkhazian',
'aa' => 'Afar',
'af' => 'Afrikaans',
'ak' => 'Akan',
'sq' => 'Albanian',
'am' => 'Amharic',
'ar' => 'Arabic',
@Faisalawanisee
Faisalawanisee / example_post_status.php
Created January 16, 2018 10:35 — forked from franz-josef-kaiser/example_post_status.php
Add a custom post status for WP (custom) post types
<?php
// No, Thanks. Direct file access forbidden.
! defined( 'ABSPATH' ) AND exit;
// INIT
add_action( 'after_setup_theme', array( 'unavailable_post_status', 'init' ) );
class unavailable_post_status extends wp_custom_post_status
{
/**