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
| /******************************************************************************/ | |
| // SIMPLE INPUT RECORD/PLAYBACK | |
| // (c) 2015 Brian Provinciano | |
| // | |
| // You are free to use this code for your own purposes, no strings attached. | |
| // | |
| // This is a very basic sample to record and playback button input. | |
| // It's most useful when activated on startup, deactivated on shutdown for | |
| // global button recording/playback. | |
| // |
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
| // (c) 2011 detunized (http://detunized.net) | |
| // Paste the shader below into http://shadertoy.com | |
| // Click and drag the mouse around | |
| #ifdef GL_ES | |
| precision highp float; | |
| #endif | |
| uniform vec2 resolution; | |
| uniform sampler2D tex0; |
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
| const std::vector<const std::string> suffixes = { | |
| "", | |
| "M", | |
| "B", | |
| "T", | |
| "Qa", | |
| "Qi", | |
| "Sx", | |
| "Sp", | |
| "Oc", |
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
| subreddits = ["thewalkingdead", "leagueoflegends", "wow", "soccer", "jokes", "aww", "redditlaqueristas", "pokemon", "ladyboners", "detroitlions", "cfb", "creepypms", "kotakuinaction", "gaming", "patriots", "polandball", "trollxchromosomes", "nba", "earthporn", "knitting", "standupshots", "tinytits", "ladybonersgw", "suicidegirls", "squaredcircle", "ainbow", "subaru", "teenagers", "azcardinals", "tumblrinaction", "airsoft", "massivecock", "baseball", "formula1", "mma", "fantasyfootball", "seahawks", "sourcefed", "gaybrosgonemild", "greenbaypackers", "hockey", "climbing", "womenofcolor", "anal", "gaybrosgonewild", "gamerghazi", "autos", "shorthairedhotties", "nascar", "rabbits", "askgaybros", "49ers", "kansascitychiefs", "steelers", "redditisfun", "dbz", "battlestations", "roosterteeth", "gaymers", "wheredidthesodago", "thelastairbender", "4chan", "forwardsfromgrandma", "classic4chan", "photoshopbattles", "oldschoolcool", "circlejerk", "cats", "malefashionadvice", "shittyaskscience", "milf", "pcmasterrace", "tr |
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
| #!/usr/bin/env bash | |
| # Author: Boris Guéry <guery.b@gmail.com> | |
| # https://github.com/borisguery/git-keywords-checker | |
| # Add or remove keywords here | |
| KEYWORDS_REGEX="var_dump\(|die\(|Zend_Debug::|print_r\(|console\.(debug|info|log|warn)\(|.*ipdb.*\(" | |
| # Add extensions to check here | |
| EXTENSIONS_REGEX="(.php$|.phtml$|.js$|.py$)" | |
| ERRORS_BUFFER="" |
This file has been truncated, but you can view the full file.
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
| Carmencita | |
| Pauvre Pierrot | |
| Un bon bock | |
| Corbett and Courtney Before the Kinetograph | |
| Arrival of a Train at La Ciotat | |
| Autour d'une cabine | |
| The Clown Barber | |
| The Derby 1895 | |
| Opening of the Kiel Canal | |
| Jumping the Blanket |
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
| from bs4 import BeautifulSoup | |
| import requests | |
| import os | |
| images = [] | |
| final = "" | |
| r = requests.get('http://xkcd.com/') | |
| soup = BeautifulSoup(r.content) |
NewerOlder