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 :)
Super crappy and thrown together as fast as possible :)
// | |
// UIDeviceHardware.h | |
// | |
// Used to determine EXACT version of device software is running on. | |
#import <Foundation/Foundation.h> | |
@interface UIDeviceHardware : NSObject | |
- (NSString *) platform; |
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(); |
# | |
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]" } |
;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 |
#!/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. |
#!/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. |