I hereby claim:
- I am segiddins on github.
- I am segiddins (https://keybase.io/segiddins) on keybase.
- I have a public key ASBUfziuAe8qODgXz8UeuEIre6ZlOV8BdSUn4RcyApdEYAo
To claim this, I am signing this object:
| #!/usr/bin/python | |
| from collections import namedtuple | |
| from math import sqrt | |
| import random | |
| import os | |
| import sys | |
| import time | |
| from PIL import Image |
| #!/bin/sh | |
| # ~/bin/repod | |
| set -e | |
| if [ ! -e Podfile ]; then | |
| echo "Podfile not found" >&2 | |
| exit 1 | |
| fi | |
| if [ -z "$1" ]; then | |
| echo "Missing pod to reinstall" >&2 |
| find /Applications /Applications/Utilities -maxdepth 1 -name "*.app" | while read a ; do codesign -vd "${a}" 2>&1 | awk '/version/ {print $3}' ; done | sort | uniq -c |
| { | |
| "rack": [ | |
| { | |
| "name": "rack", | |
| "version": "0.8", | |
| "platform": "ruby", | |
| "dependencies": { | |
| } | |
| }, | |
| { |
| gem 'ruby-graphviz' |
| require 'cocoapods' | |
| master = Pod::SourcesManager.master.first | |
| pods = {} | |
| # names = master.pods | |
| names = %w(AFAmazonS3Client AFNetworking AFOAuth2Client CargoBay) | |
| names.each do |n| |
| #!/usr/bin/ruby | |
| require 'json' | |
| require 'open-uri' | |
| gems = %w(rails capybara bundler) | |
| specs = [] | |
| begin |
I hereby claim:
To claim this, I am signing this object:
| func drop<S: SequenceType, T where S.Generator.Element == T>(sequence: S, count: Int) -> GeneratorOf<T> { | |
| var generator = sequence.generate() | |
| for _ in 0..<count { | |
| generator.next() | |
| } | |
| return GeneratorOf<T>(generator) | |
| } |