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
require 'cocoapods' | |
master = Pod::SourcesManager.master.first | |
pods = {} | |
# names = master.pods | |
names = %w(AFAmazonS3Client AFNetworking AFOAuth2Client CargoBay) | |
names.each do |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
gem 'ruby-graphviz' |
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
{ | |
"rack": [ | |
{ | |
"name": "rack", | |
"version": "0.8", | |
"platform": "ruby", | |
"dependencies": { | |
} | |
}, | |
{ |
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
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 |
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
#!/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 |
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
#!/usr/bin/python | |
from collections import namedtuple | |
from math import sqrt | |
import random | |
import os | |
import sys | |
import time | |
from PIL import Image |
NewerOlder