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
https://re-engines.com/2018/12/25/swiftios%E3%81%AE%E8%84%B1%E7%8D%84%E3%83%81%E3%82%A7%E3%83%83%E3%82%AF%E3%82%92%E8%A1%8C%E3%81%86%E3%80%82/ | |
var isJailBroken :Bool{ | |
if TARGET_OS_SIMULATOR != 1{ | |
if checkCydia||checkPass||checkWritable{ | |
return true | |
} | |
} | |
return false | |
} |
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/python | |
import json | |
import urllib2 | |
import base64 | |
API_KEY = "API_KEY" | |
API_URL = "https://vision.googleapis.com/v1/images:annotate?key=" + API_KEY | |
with open("faulkner.jpg", "rb") as image_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
// | |
// ViewController.m | |
// | |
// Created by nhn on 2016. 4. 1. | |
// Copyright © 2016 HONGSEOK. All rights reserved. | |
// | |
#import "ViewController.h" | |
#import <CoreLocation/CoreLocation.h> |