Skip to content

Instantly share code, notes, and snippets.

View ksmandersen's full-sized avatar
🏠
Working from home

Kristian Andersen ksmandersen

🏠
Working from home
View GitHub Profile
// This is a generated file, do not edit!
// Generated by R.swift, see https://github.com/mac-cain13/R.swift
import Foundation
import Rswift
import UIKit
/// This `R` struct is code generated, and contains references to static resources.
struct R {
/// This `R.color` struct is generated, and contains static references to 0 color palettes.
import UIKit
import GenericViewKit
public class StateView: GenericView {
public enum State {
case Loading
case Loaded
case Error
}
import UIKit
import GenericViewKit
public class StateView: GenericView {
public enum State {
case Loading
case Loaded
case Error
}
import UIKit
import GenericViewKit
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
private let applicationController = ApplicationController()
func application(application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
applicationController.configureReporting()
public extension UIView {
func alignCenterX(_ constant: CGFloat = 0, multiplier: CGFloat = 1, to view: UIView,
attribute: NSLayoutAttribute = .centerX,
relation: NSLayoutRelation = .equal,
priority: UILayoutPriority = UILayoutPriorityRequired) -> NSLayoutConstraint {
return alignAttribute(attribute: .centerX, relation: relation,
to: view, otherAttribute: attribute,
multiplier: multiplier,
constant: constant, priority: priority)
}
let firstView = UIView()
let otherView = UIView()
// align.swift:
firstView.alignTop(20, to: otherView)
// vanilla:
firstView.topAnchor.constraint(equalTo: otherView.topAnchor, constant: 20)
# initialization file (not found)

Keybase proof

I hereby claim:

  • I am ksmandersen on github.
  • I am ksmandersen (https://keybase.io/ksmandersen) on keybase.
  • I have a public key whose fingerprint is AAA6 F6F2 F1B0 5FD0 A55B C524 2AF1 13BD 1A2B C11D

To claim this, I am signing this object:

@ksmandersen
ksmandersen / flac_to_alac.sh
Created January 5, 2017 08:55
FLAC to ALAC
for f in ./*.flac; do avconv -n -i "$f" -c:a alac "${f%.*}.m4a" && rm "$f"; done
@ksmandersen
ksmandersen / .babelrc
Last active April 3, 2017 07:42
Vapor + Gulp + BrowserSync
{
"presets": ["es2015"]
}