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
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." |
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
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." |
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
// 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 |
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
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" => "[email protected]" } | |
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." | |
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
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." |
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
// MyParser.H | |
#import <Foundation/Foundation.h> | |
@class PKParser; | |
@interface MyParser : NSObject { | |
__strong NSString *scssGrammar; | |
__strong PKParser *scssParser; | |
} |
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
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` |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
.svgbox { | |
width: 160px; | |
height: 160px; | |
background-color: #eee; |
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
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() |
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
/** | |
* Matrix 3d transform for obtaining trapezoid? (SO) | |
* http://stackoverflow.com/q/14480341/1397351 | |
*/ | |
* { | |
transform-style: preserve-3d; | |
} |