Variable |
Type |
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
var block : @objc_block (NSString!) -> Void = { | |
[unowned self] (string : NSString!) -> Void in | |
let jsText = "\(string)\n" | |
self.outputTextView.setText(jsText, concatenate: true) | |
} | |
context.setObject(unsafeBitCast(block, AnyObject.self), | |
forKeyedSubscript: "print") |
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
import UIKit | |
extension UIViewController { | |
func addChildVC(viewController: UIViewController) { | |
addChildViewController(viewController) | |
view.addSubview(viewController.view) | |
viewController.didMoveToParentViewController(self) | |
} | |
} |
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
func poll() { | |
let backgroundQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0) | |
let source = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, backgroundQueue) | |
let interval: UInt64 = UInt64(10) * NSEC_PER_SEC | |
let leeway: UInt64 = UInt64(0.1) * NSEC_PER_SEC | |
dispatch_source_set_timer(source, DISPATCH_TIME_NOW, interval, leeway) | |
dispatch_source_set_event_handler(source) { () -> Void in | |
self.pollDidFinish(source: source) |
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
Verifying my Blockstack ID is secured with the address 13XP5d1aPsUQZHt55f3WyYMCHvaWQjgDKu https://explorer.blockstack.org/address/13XP5d1aPsUQZHt55f3WyYMCHvaWQjgDKu |
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
#import "UIImage+Extension.h" | |
@implementation UIImage (Extension) | |
- (UIImage *)imageWithColor:(UIColor *)color | |
{ | |
UIGraphicsBeginImageContextWithOptions(self.size, NO, self.scale); | |
CGContextRef context = UIGraphicsGetCurrentContext(); | |
CGContextTranslateCTM(context, 0, self.size.height); | |
CGContextScaleCTM(context, 1.0, -1.0); |
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
// First, delete the two storyboard entries in the Info.plist (one newer one for SceneDelegate and a newer one for AppDelegate) | |
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { | |
guard let windowScene = scene as? UIWindowScene else { | |
return | |
} | |
let blueViewController = UIViewController() | |
blueViewController.view.backgroundColor = .blue | |
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
static func load(_ entityId: Int, completion: @escaping ( (SampleServiceResponse?) -> Void)) { | |
let urlString = "https://api.sweetpeamobile.com/v1/sampleService?locationId=\(locationId)" | |
AF.request(urlString).responseDecodable(of: SampleServiceResponse.self) { response in | |
switch response.result { | |
case .success(let decodedResponse): | |
completion(decodedResponse) | |
case .failure(let error): | |
print("Networking error: \(error.localizedDescription)") | |
completion(nil) | |
} |
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
#!/bin/bash | |
set -e | |
# Sets up an new myql instalation (Ubuntu 20.04)s | |
# 1. Downloads mysql-server if necessary | |
# 2. Secures the installation | |
# 3. Sets the root password | |
# 4. Creates an app related DB |
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
define( 'WP_HOME', 'https://yoursite.com/blog'); | |
define( 'WP_SITEURL', 'https://yoursite.com/blog'); | |
/** | |
* This is needed for a reverse proxy setup that terminates SSL and forwards /blog to another host. | |
* Without it, the Wordpress host doesn't know that it needs to make requests to itself using https. | |
*/ | |
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { | |
$_SERVER['HTTPS'] = 'on'; | |
} |