This file contains hidden or 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
| convert input.jpg -transparent white -fuzz 80%% output.png |
This file contains hidden or 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
| <html> | |
| <head> | |
| <style> | |
| body { | |
| background: url('./carbon.png'); | |
| font-family: Helvetica, Arial, sans-serif; | |
| } | |
| .content { |
This file contains hidden or 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
| /** | |
| * guiders.js | |
| * | |
| * version 2.0.0 | |
| * | |
| * Released under the Apache License 2.0. | |
| * www.apache.org/licenses/LICENSE-2.0.html | |
| * | |
| * Questions about Guiders? | |
| * Email me (Jeff Pickhardt) at pickhardt@gmail.com |
This file contains hidden or 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.0.0" | |
| s.summary = "A framework for composing and transforming sequences 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" } | |
| s.license = 'Simplified BSD License' | |
| s.description = "ReactiveCocoa offers:\n" \ | |
| "1. The ability to compose operations on future data.\n" \ |
This file contains hidden or 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
| @interface UILabel (Fit) | |
| - (void)fitFontSize | |
| @end |
This file contains hidden or 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 = 'SVWebViewController' | |
| s.version = '0.2' | |
| s.summary = 'A drop-in inline browser for your iOS app.' | |
| s.homepage = 'http://samvermette.com/173' | |
| s.license = 'MIT' | |
| s.author = { 'Sam Vermette' => 'hello@samvermette.com' } | |
| s.source = { :git => 'https://github.com/nmutiara/SVWebViewController.git' } | |
| s.platform = :ios | |
| s.source_files = 'SVWebViewController/*.{h,m}' |
This file contains hidden or 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
| @interface UISegmentedControl (iOS7Flat) | |
| - (void)flattenUIWithFont:(UIFont *)font tintColor:(UIColor *)tintColor highlightedTextColor:(UIColor *)highlightedTextColor; | |
| @end |
This file contains hidden or 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 = 'JSMessagesViewController' | |
| s.version = '4.0.4' | |
| s.summary = 'A messages UI for iPhone and iPad.' | |
| s.homepage = 'https://github.com/jessesquires/MessagesTableViewController' | |
| s.social_media_url = 'https://twitter.com/jesse_squires' | |
| s.license = 'MIT' | |
| s.authors = { 'Jesse Squires' => 'jesse.squires.developer@gmail.com' } | |
| s.source = { :git => 'https://github.com/nmutiara/MessagesTableViewController.git' } | |
| s.platform = :ios, '6.0' |
This file contains hidden or 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 ObjectiveC; | |
| @interface NSObject (LN_FORCE_SHAPES) | |
| @end | |
| @implementation NSObject (LN_FORCE_SHAPES) | |
| + (void)load | |
| { |
This file contains hidden or 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
| cat ~/.ssh/key.pub | ssh user@123.45.56.78 "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys" |