This file contains 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
############################# | |
# fixutdates.rb | |
# Fixes uTorrent added on / completed on dates | |
# | |
# by Brian Scholer | |
# http://www.briantist.com/ | |
# | |
############################# | |
require 'rubygems' |
This file contains 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
Flat profile: | |
Each sample counts as 0.01 seconds. | |
% cumulative self self total | |
time seconds seconds calls ms/call ms/call name | |
31.88 39.37 39.37 _mcount_private | |
11.17 53.16 13.79 378645098 0.00 0.00 safegrowarray | |
9.47 64.86 11.70 726534633 0.00 0.00 strbuf_append | |
5.52 71.67 6.82 makerle | |
4.19 76.84 5.17 countnode234 |
This file contains 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
Receiver Resolver Table: | |
Non-Data Actions: | |
com.genymobile.gnirehtet.STOP: | |
99bea96 com.genymobile.gnirehtet/.GnirehtetControlReceiver | |
com.genymobile.gnirehtet.START: | |
99bea96 com.genymobile.gnirehtet/.GnirehtetControlReceiver | |
Service Resolver Table: | |
Non-Data Actions: | |
android.net.VpnService: |
This file contains 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
development: &development | |
adapter: mysql2 | |
encoding: utf8 | |
database: fat_free_crm_development | |
pool: 5 | |
username: root | |
# password: | |
socket: /var/run/mysqld/mysqld.sock | |
# Warning: The database defined as "test" will be erased and |
This file contains 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
$i = 0 | |
o = Object.new | |
def o.each | |
yield $i += 1 | |
yield $i += 1 | |
yield $i += 1 | |
end |
This file contains 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
module Fix | |
module ClassMethods | |
def fixit | |
alias_method :fixed, :fixme | |
end | |
end | |
def self.included(base) | |
base.extend(ClassMethods) |
This file contains 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
<?xml version='1.0' encoding='UTF-8'?> | |
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml | |
1-strict.dtd'> | |
<html xmlns='http://www.w3.org/1999/xhtml' lang='en' xml:lang='en'> | |
<head> | |
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' /> | |
<title>Ajax FTL Proxy</title> | |
<script type='text/javascript'> | |
function pushDataToParent() { | |
var responseContainer = document.getElementById('response'); |