Super crappy and thrown together as fast as possible :)
- Install node and casperjs, and make sure you have python
- Fill out fields in sub.js
- Run check.py
- Get first sub :)
#!/bin/bash | |
#Requires ImageMagick to be installed. | |
#Some builds of ImageMagick on OSX have problems generating the images correctly. | |
#This script scales and creates images at the correct dpi level for Android. | |
#It gets placed in a folder called res/drawable/source_images/ in your #Android project along with all your svg files. | |
#When creating svg files set the image size to the size that you want your hdpi images to be. | |
#To use simply run the create_images script from its folder and it will generate images for all the svg files. |
#!/bin/bash | |
#Requires Inkscape to be installed. | |
#This script scales and creates images at the correct dpi level for Android. | |
#It gets placed in a folder called res/drawable/_source_images/ in your | |
#Android project along with all your svg files. | |
#When creating svg files set the image size to the size that you want your hdpi images to be. | |
#To use simply run the create_images script from its folder and it will generate images for all the svg files. |
;ff6_victory | |
M300 S2349 P53 | |
M300 S0 P53 | |
M300 S2349 P53 | |
M300 S0 P53 | |
M300 S2349 P53 | |
M300 S0 P53 | |
M300 S2349 P428 | |
M300 S932 P428 | |
M300 S2093 P428 |
# | |
Pod::Spec.new do |s| | |
s.name = "Bypass" | |
s.version = "1.0" | |
s.summary = "Skip the HTML, Bypass takes markdown and renders it directly on Android and iOS." | |
s.homepage = "http://uncodin.github.com/bypass/" | |
s.license = 'Apache 2.0' | |
s.authors = { "Colin Edwards" => "[email protected]", "Damian Carrillo" => "[email protected]" } |
Intent pickIntent = new Intent(); | |
pickIntent.setType("image/*"); | |
pickIntent.setAction(Intent.ACTION_GET_CONTENT); | |
Intent takePhotoIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); | |
File f = null; | |
try { | |
f = Util.createImageFile(); | |
mCurrentPhotoPath = f.getAbsolutePath(); |
// | |
// UIDeviceHardware.h | |
// | |
// Used to determine EXACT version of device software is running on. | |
#import <Foundation/Foundation.h> | |
@interface UIDeviceHardware : NSObject | |
- (NSString *) platform; |
Super crappy and thrown together as fast as possible :)
import requests | |
from bs4 import BeautifulSoup | |
import unicodecsv as csv | |
r = requests.get("https://www.txdirectory.com/online/txsenate/") | |
c = r.content | |
soup = BeautifulSoup(c, "html.parser") | |
reps = [] |
public class GameWispResponse<T> { | |
List<T> data; | |
Result result; | |
} | |
public class Result { | |
int status; | |
String message; | |
} |
public class SigningClient implements Client { | |
final Client wrapped; | |
public SigningClient(Client client) { | |
wrapped = client; | |
} | |
@Override public Response execute(Request request) { | |
Request newRequest = sign(request); | |
return wrapped.execute(newRequest); |