Skip to content

Instantly share code, notes, and snippets.

@Revolucent
Revolucent / copyright
Last active April 10, 2016 03:59
Insert copyright headers
@Revolucent
Revolucent / xcode
Created August 13, 2017 06:51
Launch project in current directory with selected Xcode
#!/bin/bash
XCODE='Xcode';
XCODEPATH="$(xcode-select -p)";
if [[ $XCODEPATH =~ /([^/]+)\.app ]]; then
XCODE="${BASH_REMATCH[1]}"
fi;
open -a "$XCODE" "${1:-.}";
@Revolucent
Revolucent / Median.pgsql
Created December 2, 2017 15:57
Calculate a median
-- https://wiki.postgresql.org/wiki/Aggregate_Median
CREATE OR REPLACE FUNCTION _final_median(NUMERIC[])
RETURNS NUMERIC AS
$$
SELECT AVG(val)
FROM (
SELECT val
FROM unnest($1) val
ORDER BY 1
LIMIT 2 - MOD(array_upper($1, 1), 2)
@Revolucent
Revolucent / Semicircle.swift
Created May 20, 2018 18:11
Draw Semircle Between Any Two Arbirtary CGPoints
extension CGContext {
// via https://stackoverflow.com/a/50419334/27779
func drawSemicircle(from: CGPoint, to: CGPoint, clockwise: Bool) {
let center = CGPoint(x: 0.5 * (from.x + to.x), y: 0.5 * (from.y + to.y))
let radius = 0.5 * hypot(to.x - from.x, to.y - from.y)
let startAngle = atan2(to.y - from.y, to.x - from.x)
let endAngle = startAngle + .pi
move(to: from)
addArc(center: center, radius: radius, startAngle: startAngle, endAngle: endAngle, clockwise: clockwise)
@Revolucent
Revolucent / ThrowIfNil.swift
Created July 7, 2018 01:32
Throw if nil, otherwise return value
infix operator ??!: NilCoalescingPrecedence
/**
If the left-hand side in nil, the error on the right-hand side is thrown. Otherwise,
the unwrapped value is returned. For example:
```
// Instead of this…
guard let x = y else {
@Revolucent
Revolucent / RxReSwift.swift
Created September 24, 2018 07:23
Observe ReSwift subscriptions using RxSwift
import Foundation
import ReSwift
import RxSwift
private class StoreObserver<SelectedState>: StoreSubscriber {
private let onNext: (SelectedState) -> Void
init(onNext: @escaping (SelectedState) -> Void) {
self.onNext = onNext
}
func newState(state: SelectedState) {
@Revolucent
Revolucent / UIView+Rx.swift
Created October 5, 2018 02:53
isFirstResponder observable with RxSwift
import RxCocoa
import RxSwift
import UIKit
extension Reactive where Base: UIView {
var isFirstResponder: Observable<Bool> {
return Observable
.merge(
methodInvoked(#selector(UIView.becomeFirstResponder)),
methodInvoked(#selector(UIView.resignFirstResponder))
@Revolucent
Revolucent / Family.swift
Last active October 28, 2018 07:49
Functions for recursively finding ancestor and descendants in Swift. Useful for creating extension methods.
public func descendants<Descendant>(of parent: Descendant, in attribute: KeyPath<Descendant, [Descendant]>, where: (Descendant) throws -> Bool) rethrows -> [Descendant] {
var descendants: [Descendant] = []
for child in parent[keyPath: attribute] {
if try `where`(child) {
descendants.append(child)
}
try descendants.append(contentsOf: MASCore.descendants(of: child, in: attribute, where: `where`))
}
return descendants
}
@Revolucent
Revolucent / MapDispatchToProps.js
Created January 5, 2019 20:56
mapDispatchToProps
import parse from 'obj-parse'
/*
In its simplest usage, mapStateToProps('foo', 'bar')
maps the state keys 'foo' and 'bar' to keys of the same
name in the props.
To alias, use an object literal: mapStateToProps('foo', {baz: 'bar.buzz'}).
In this case, we're mapping state that's more deeply nested to the 'baz' prop.
The parse method of obj-parse takes care of this for us.
@Revolucent
Revolucent / Api.hs
Last active September 21, 2019 15:08
A simple wrapper around Network.HTTP.Req to talk to an API.
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TupleSections #-}