Skip to content

Instantly share code, notes, and snippets.

View yosit's full-sized avatar

Yosi Taguri yosit

  • ZipRecruiter
  • Israel
  • X @yosit
View GitHub Profile
Pod::Spec.new do |s|
s.name = 'KissXML'
s.license = 'MIT'
s.summary = 'A replacement for Cocoa\'s NSXML cluster of classes. Based on libxml.'
s.homepage = 'https://github.com/robbiehanson/KissXML'
s.author = { 'Robbie Hanson' => 'robbiehanson@deusty.com' }
s.source = { :git => 'git@github.com:Labgoo/KissXML.git' }
s.source_files = 'KissXML/**/*.{h,m}'
s.library = 'xml2'
s.requires_arc = true
Pod::Spec.new do |s|
s.name = 'XMPPFramework'
s.homepage = 'https://github.com/robbiehanson/XMPPFramework'
s.version = '3.6.1'
s.author = { 'Robbie Hanson' => 'robbiehanson@deusty.com' }
s.license = { :type => 'BSD', :file => 'copying.txt' }
s.summary = 'An XMPP Framework in Objective-C for Mac and iOS'
s.description = <<-DESC
An XMPP Framework in Objective-C for the Mac / iOS development
community.
@yosit
yosit / gist:5180495
Created March 17, 2013 07:25
Install the most up to date ruby on mac - the right way
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
brew install ruby
@yosit
yosit / gist:5129129
Last active December 14, 2015 18:28
build pjsip from source.
build pjsip
​http://svn.pjsip.org/repos/pjproject/trunk
cd /path/to/your/pjsip/dir
for armv7
ARCH='-arch armv7' ./configure-iphone
or for armv7s
ARCH='-arch armv7s' ./configure-iphone
@yosit
yosit / gist:5124420
Created March 9, 2013 14:58
show all files on mac finder
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
@yosit
yosit / gist:5124146
Created March 9, 2013 13:22
Convert NEF to JPEG using dcraw
for n in *.NEF ; do dcraw -c -v $n | cjpeg >${n/%NEF/JPG} ; done