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 PerfectPostgreSQL | |
import PostgresStORM | |
import StORM | |
extension PostgresStORM { | |
static func doWithTransaction<Result>(closure: () throws -> Result) throws -> Result { | |
let thisConnection = PostgresConnect( | |
host: PostgresConnector.host, | |
username: PostgresConnector.username, | |
password: PostgresConnector.password, |
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 PostgresStORM | |
extension PostgresStORM { | |
/// Set Next ID Value to MAX ID | |
/// | |
/// This is a workaround for issue [ISS-546](http://jira.perfect.org:8080/browse/ISS-546) | |
/// | |
/// When inserting new rows then I'm getting errors like this: | |
/// | |
/// ERROR: duplicate key value violates unique constraint "president_key" |
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
# Install QEMU OSX port with ARM support | |
sudo port install qemu +target_arm | |
export QEMU=$(which qemu-system-arm) | |
# Dowload kernel and export location | |
curl -OL \ | |
https://github.com/dhruvvyas90/qemu-rpi-kernel/blob/master/kernel-qemu-4.1.7-jessie | |
export RPI_KERNEL=./kernel-qemu-4.1.7-jessie | |
# Download filesystem and export location |
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
extension String { | |
func matchingStrings(regex: String) -> [[String]] { | |
guard let regex = try? NSRegularExpression(pattern: regex, options: []) else { return [] } | |
let nsString = self as NSString | |
let results = regex.matches(in: self, options: [], range: NSMakeRange(0, nsString.length)) | |
return results.map { result in | |
(0..<result.numberOfRanges).map { result.rangeAt($0).location != NSNotFound | |
? nsString.substring(with: result.rangeAt($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
PROMPT> hostname | |
abcdef.local | |
PROMPT> ifconfig -a | |
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384 | |
options=3<RXCSUM,TXCSUM> | |
inet6 ::1 prefixlen 128 | |
inet 127.0.0.1 netmask 0xff000000 | |
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 |
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
user neoneye staff; | |
worker_processes 1; | |
error_log /Library/Logs/nginx/error.log debug; | |
events { | |
worker_connections 256; | |
} |
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
// Copyright © 2015 Simon Strandgaard. All rights reserved. | |
// MIT license | |
#include "environment.hpp" | |
#include <unistd.h> | |
#include <iostream> | |
#include <boost/algorithm/string/predicate.hpp> | |
extern char **environ; | |
void Environment::populateWithGlobalEnvironment() { |
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
// Inspired by Paul Slot's awesome PSCustomViewFromXib, https://github.com/PaulSolt/CustomUIView | |
class CustomViewFromXib: UIView { | |
var customView: UIView? | |
override init(frame: CGRect) { | |
super.init(frame: frame) | |
let className = String(self.dynamicType) | |
let anyObjectOrNil: AnyObject? = NSBundle.mainBundle().loadNibNamed(className, owner: self, options: nil)?.first | |
guard let anyObject = anyObjectOrNil else { |
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 | |
import Forbind | |
import ForbindExtensions | |
class RemoteImageView: UIImageView { | |
private(set) var URL: NSURL? | |
private var imagePromise: Promise<Result<UIImage>>? | |
init() { |
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 lldb | |
import re | |
import shlex | |
# This script allows Xcode to selectively ignore Obj-C exceptions | |
# based on any selector on the NSException instance | |
def getRegister(target): | |
if target.triple.startswith('x86_64'): | |
return "rdi" |