Skip to content

Instantly share code, notes, and snippets.

View chipp's full-sized avatar

Vladimir Burdukov chipp

View GitHub Profile
begin
require 'xcodeproj'
rescue LoadError
$stderr.puts 'Cannot find xcodeproj. Please install it `gem install xcodeproj`'
exit 3
end
project_path = ARGV[1]
project = Xcodeproj::Project.open project_path
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDKFjsRnam+CDtgfQWfg4Zb0wbr9t9FKX+qr/gzFNpUe/ZWF7EmoFvvvMviJJkXtkKkhku/bMYYMlfp7Tb86AgBdr8o36uZIamxsAziswOBAeTSl+NnItpOIlWzPq0x0LRUeTXjuv53vlPD3XsDqP44dDixIhSD5LxHI/waXtXQ18RDm5azPV78jiPNztBW1oiM37G8TfTwvYCaLN72LhjVTBE3hJGVMwoSScPOHieevkAsuhB9/zyOjbIbnSSWNZ7HuQwBB70SGVnYkFBAi6kSAZWTNxlfQig6cyKnne+tfWGVWDikMtQEJaNMqFVrP3B/KjJYWM8c1es4zsRFcysh vladimir@burdukov.by
@chipp
chipp / objectify.rb
Last active May 11, 2016 15:52
objectify.rb
#!/Users/chipp/.rvm/bin/rvm-auto-ruby
require 'json'
IDENT = " "
def objectify(json, comma: false, newline: true, ident_level: 0)
terminator = (comma ? "," : "") + (newline ? "\n" : "")
case json
when Hash
root_identation = IDENT * ident_level

Keybase proof

I hereby claim:

  • I am chipp on github.
  • I am chippcheg (https://keybase.io/chippcheg) on keybase.
  • I have a public key whose fingerprint is 55A4 5CCB 4F79 3DC8 D069 004A 8A05 B637 20DB B04B

To claim this, I am signing this object:

@chipp
chipp / CustomViewCell.h
Created September 6, 2011 18:22
custom view cell
//
// ChildEditTableViewCell.h
// BabyBook
//
// Created by Vladimir Burdukov on 8/31/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>