I hereby claim:
- I am anthonycastelli on github.
- I am anth (https://keybase.io/anth) on keybase.
- I have a public key whose fingerprint is 8899 4C18 86B5 4780 34D4 F9B9 6034 348C AADD C434
To claim this, I am signing this object:
+ (UIImage *)snapshotView:(UIView *)view { | |
UIGraphicsBeginImageContextWithOptions(view.frame.size, NO, [[UIScreen mainScreen] scale]); //0 | |
[view drawViewHierarchyInRect:view.frame afterScreenUpdates:YES]; | |
UIImage *snapshot = UIGraphicsGetImageFromCurrentImageContext(); | |
UIGraphicsEndImageContext(); | |
return snapshot; | |
} | |
+ (UIImage *)snapshot { | |
CGSize imageSize = CGSizeZero; |
I hereby claim:
To claim this, I am signing this object:
- (void)replaceViewController:(UIViewController *)replacementViewController { | |
// Load the new view controller | |
[self addChildViewController:replacementViewController]; | |
[replacementViewController.view setFrame:self.view.bounds]; | |
[self.view addSubview:replacementViewController.view]; | |
[replacementViewController didMoveToParentViewController:self]; | |
// Get rid of the old one | |
[self.selectedViewController willMoveToParentViewController:nil]; | |
[self.selectedViewController.view removeFromSuperview]; |
# To run this script, simply call | |
# $ python renamer.py "/path/to/folder" "S01" " - " | |
# This will take a file with a divider in it and add | |
# the appropriate formatting to work better with | |
# Plex Media Server. | |
# i.e. "Season 1 Episode 21 Episode Name.mp4" would become | |
# "S01E21 Episode Name.mp4" | |
import os | |
import sys |
import os | |
import sys | |
import numpy | |
from PIL import Image | |
if len(sys.argv) < 3: | |
print('You must specifiy an image and an output folder') | |
print('i.e. "resizer.py image.png output_folder_name') | |
sys.exit(1) |
Verifying I am +anth on my passcard. https://onename.com/anth |
// You'll need this https://gist.github.com/jorgenisaksson/76a8dae54fd3dc4e31c2 | |
extension NSBezierPath { | |
func toCGPath () -> CGPath? { | |
if self.elementCount == 0 { | |
return nil | |
} | |
let path = CGPathCreateMutable() | |
var didClosePath = false |
init() { | |
print("•", RLMRealm.default().configuration.fileURL?.path) | |
var config = Realm.Configuration( | |
// Set the new schema version. This must be greater than the previously used | |
// version (if you've never set a schema version before, the version is 0). | |
schemaVersion: 1, | |
// Set the block which will be called automatically when opening a Realm with | |
// a schema version lower than the one set above |
// | |
// Fluent+Date.swift | |
// | |
// | |
// Created by Anthony Castelli on 12/10/16. | |
// | |
// | |
import Foundation | |
import Fluent |