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 "rubygems" | |
#list through the current folder and call git pull on each repository | |
home = ARGV[0] == nil ? Dir.pwd : ARGV[0] | |
home_d = Dir.open(home) | |
home_count = home_d.count | |
c_idx = 1 | |
home_d.each do |current| |
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/env ruby | |
# Analyzes your twitter friends if they are following someone interesting | |
# akshully it just shows you, who has the most many followers | |
# usage: ./twitteggester.rb <username> <how many followers to research> | |
# | |
# works by reading your twitter page (the span class vcard) | |
require "rubygems" | |
require "open-uri" |
NewerOlder