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 python | |
# | |
# iTunes Connect Earnings Report Merger Script | |
# By Brandon Smith ([email protected]) | |
# | |
import os, csv, json | |
import requests | |
### | |
# Config |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> | |
<meta name="keywords" content="Ping 4,Ping chapter 4,Ping,Ping manga,Ping chapter 4 page 26" /> | |
<meta name="description" content="Ping 4 - Read Ping 4 Manga Scans Page 26. Free and No Registration required for Ping 4 v01" /> | |
<title>Ping 4 v01 - Read Ping 4 Online - Page 26</title> | |
<meta property="og:title" content="Ping 4 Page 26" /> | |
<meta property="og:description" content="Ping 4" /> |
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
int bufferWidth = CVPixelBufferGetWidth(pixelBuffer); | |
int bufferHeight = CVPixelBufferGetHeight(pixelBuffer); | |
uint8_t *pixel = CVPixelBufferGetBaseAddress(pixelBuffer); | |
uint8_t * baseAddressGray = (uint8_t *) malloc(bufferWidth*bufferHeight); | |
intrinsicBGRAtoGrayscale(baseAddressGray, pixel, bufferWidth*bufferHeight); | |
for (int i = 0; i < (bufferWidth * bufferHeight); i++) { | |
pixel[0] = baseAddressGray[0]; | |
pixel[1] = baseAddressGray[0]; |
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 python | |
# | |
# Internal Speaker Beeping Module for Windows | |
# | |
import time | |
import winsound | |
### | |
# Notes Config | |
### |
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 python | |
# | |
# Fortune Cookie Saying Grabber | |
# By James Penguin ([email protected]) | |
# | |
import BeautifulSoup | |
import urllib2 | |
def get_fortune(): | |
try: |
NewerOlder