This file contains 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) |
This file has been truncated, but you can view the full file.
This file contains 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 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 <[email protected]> | |
# 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 contains 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 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 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 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 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
diff --git a/blink.vcxproj b/blink.vcxproj | |
index 9b7d33d..ca98f43 100644 | |
--- a/blink.vcxproj | |
+++ b/blink.vcxproj | |
@@ -21,7 +21,7 @@ | |
<PropertyGroup Label="Globals"> | |
<ProjectGuid>{188B7270-046B-476D-A32D-34390DA1A885}</ProjectGuid> | |
<Keyword>Win32Proj</Keyword> | |
- <WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion> | |
+ <WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion> |
This file contains 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
Launching in target application ... | |
Entry point was written to address 002A0000 | |
Reading PE import directory ... | |
Reading PE debug info directory ... | |
Found program debug database: C:\Users\Josh\Documents\cocos_projects\magnolia_cocos\proj.win32\Debug.win32\magnolia_cocos_proj.pdb | |
Found source file: c:\users\josh\documents\cocos_projects\magnolia_cocos\proj.win32\main.cpp | |
Found source file: c:\users\josh\documents\cocos_projects\magnolia_cocos\classes\videoutil.cpp | |
Found source file: c:\users\josh\documents\cocos_projects\magnolia_cocos\classes\utilities\vibration.cpp | |
Found source file: c:\users\josh\documents\cocos_projects\magnolia_cocos\classes\utilities\textformatting.cpp | |
Found source file: c:\users\josh\documents\cocos_projects\magnolia_cocos\classes\utilities\sceneutilities.cpp |
This file contains 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
{-| Returns a random time and the midnight time in a TimeZone | |
-} | |
fuzzMidnightAndToday : Time.Zone -> Fuzz.Fuzzer ( Time.Zone, Time.Posix, Time.Posix ) | |
fuzzMidnightAndToday timezone = | |
let | |
currentTimeInDays : Time.Posix -> Duration.Duration | |
currentTimeInDays currentTime = | |
let | |
conversionFunc toTime inTime = | |
toTime timezone currentTime |
OlderNewer