Skip to content

Instantly share code, notes, and snippets.

Pod::Spec.new do |s|
s.name = "ReactiveCocoaIO"
s.version = "0.0.1"
s.summary = "Reactive file management framework built on top of ReactiveCocoa."
s.homepage = "https://github.com/ReactiveCocoa/ReactiveCocoaIO"
s.author = { "ReactiveCocoa" => "ReactiveCocoa" }
s.source = { :git => "https://github.com/zakdances/ReactiveCocoaIO.git", :commit => "7088c256fa55afe98dd60c880fa755fb4dc8265b" }
s.license = 'Simplified BSD License'
s.description = "ReactiveCocoaIO is a framework for accessing and manipulating a file system through signals, based on ReactiveCocoa."
Pod::Spec.new do |s|
s.name = "ReactiveCocoaLayout"
s.version = "0.4"
s.summary = "Reactive layout framework built on top of ReactiveCocoa."
s.homepage = "https://github.com/ReactiveCocoa/ReactiveCocoaLayout"
s.author = { "ReactiveCocoa" => "ReactiveCocoa" }
s.source = { :git => "https://github.com/ReactiveCocoa/ReactiveCocoaLayout.git", :commit => "c3da93e6cae28649ff03b344895cb9a4d9e78ccb" }
s.license = 'Simplified BSD License'
s.description = "ReactiveCocoaLayout is a framework for describing Cocoa and Cocoa Touch layouts in a reactive way, based on ReactiveCocoa."
@zakdances
zakdances / Git Cheatsheet
Last active April 28, 2016 09:04
Git cheatsheet
// Create new branch 👉 track new branch 👉 switch to new branch
git checkout -b <branch> --track
git update-index --assume-unchanged <file>
git remote -v
git remote add upstream -f https://github.com/otheruser/repo.git
git remote set-url origin git://new.url.here
Pod::Spec.new do |s|
s.name = "ReactiveCocoa"
s.version = "2.1"
s.summary = "A framework for composing and transforming streams of values."
s.homepage = "https://github.com/blog/1107-reactivecocoa-is-now-open-source"
s.author = { "Josh Abernathy" => "josh@github.com" }
s.source = { :git => "https://github.com/ReactiveCocoa/ReactiveCocoa.git", :tag => "v#{s.version}" }
s.license = 'MIT'
s.description = "ReactiveCocoa (RAC) is an Objective-C framework for Functional Reactive Programming. It provides APIs for composing and transforming streams of values."
Pod::Spec.new do |s|
s.name = "ReactiveCocoaLayout"
s.version = "0.3.2"
s.summary = "Reactive layout framework built on top of ReactiveCocoa."
s.homepage = "https://github.com/ReactiveCocoa/ReactiveCocoaLayout"
s.author = { "ReactiveCocoa" => "ReactiveCocoa" }
s.source = { :git => "https://github.com/ReactiveCocoa/ReactiveCocoaLayout.git", :commit => "7fb59a52633bd9c51fab63acc2387b831b5f9d9c" }
s.license = 'Simplified BSD License'
s.description = "ReactiveCocoaLayout is a framework for describing Cocoa and Cocoa Touch layouts in a reactive way, based on ReactiveCocoa."
// MyParser.H
#import <Foundation/Foundation.h>
@class PKParser;
@interface MyParser : NSObject {
__strong NSString *scssGrammar;
__strong PKParser *scssParser;
}
@zakdances
zakdances / gist:6314916
Created August 23, 2013 02:20
`brew doctor` says:
Warning: Broken symlinks were found. Remove them with `brew prune`:
/usr/local/bin/subl
/usr/local/bin/r.js
/usr/local/bin/jitter
/usr/local/bin/coffee
/usr/local/bin/cake
/usr/local/bin/bower
Warning: /usr/local/share/python is not needed in PATH.
Formerly homebrew put Python scripts you installed via `pip` or `pip3`
@zakdances
zakdances / dabblet.css
Created July 29, 2013 21:05
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.svgbox {
width: 160px;
height: 160px;
background-color: #eee;
generateUniqueID = () ->
_p8 = (s) ->
p = (Math.random().toString(16)+"000000000").substr(2,8)
if s then "-" + p.substr(0,4) + "-" + p.substr(4,4) else p
_p8() + _p8(true) + _p8(true) + _p8()
@zakdances
zakdances / dabblet.css
Created June 24, 2013 11:14 — forked from anonymous/dabblet.css
Matrix 3d transform for obtaining trapezoid? (SO)
/**
* Matrix 3d transform for obtaining trapezoid? (SO)
* http://stackoverflow.com/q/14480341/1397351
*/
* {
transform-style: preserve-3d;
}