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
203.208.46.166 www.google.com | |
203.208.46.166 www.google.com.hk | |
203.208.46.166 encrypted.google.com | |
203.208.46.166 encrypted.google.com.hk | |
203.208.46.166 mail.google.com | |
203.208.46.166 webcache.googleusercontent.com | |
203.208.46.166 plus.google.com | |
203.208.46.166 talkgadget.google.com | |
203.208.46.166 picasaweb.google.com | |
203.208.46.166 feedproxy.google.com |
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 'formula' | |
class Vim < Formula | |
homepage 'http://www.vim.org/' | |
url 'ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2' | |
head 'https://vim.googlecode.com/hg/' | |
sha256 '5c5d5d6e07f1bbc49b6fe3906ff8a7e39b049928b68195b38e3e3d347100221d' | |
version '7.3.200' | |
def features; %w(tiny small normal big huge) end |
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
diff --git a/plugin/vim-rspec.vim b/plugin/vim-rspec.vim | |
index 88d9907..fe5d42c 100644 | |
--- a/plugin/vim-rspec.vim | |
+++ b/plugin/vim-rspec.vim | |
@@ -12,8 +12,9 @@ | |
let s:xsltproc_cmd = "" | |
let s:grep_cmd = "" | |
let s:hpricot_cmd = "" | |
-let s:xslt = 0 | |
-let s:hpricot = 0 |
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
[ | |
{ | |
marker: { | |
lat: <lat>, | |
lng: <lng>, | |
pathTP: true | |
} | |
}, | |
{ | |
marker: { |
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
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb | |
index 60798fe..ffe4ca5 100644 | |
--- a/app/helpers/issues_helper.rb | |
+++ b/app/helpers/issues_helper.rb | |
@@ -35,11 +35,12 @@ module IssuesHelper | |
@cached_label_assigned_to ||= l(:field_assigned_to) | |
@cached_label_priority ||= l(:field_priority) | |
- link_to_issue(issue) + "<br /><br />" + | |
- "<strong>#{@cached_label_start_date}</strong>: #{format_date(issue.start_date)}<br />" + |
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
diff --git a/lib/capistrano/recipes/deploy/strategy/copy.rb b/lib/capistrano/recipes/deploy/strategy/copy.rb | |
index 351d6e9..1ca84b2 100644 | |
--- a/lib/capistrano/recipes/deploy/strategy/copy.rb | |
+++ b/lib/capistrano/recipes/deploy/strategy/copy.rb | |
@@ -101,7 +101,7 @@ module Capistrano | |
logger.trace "compressing #{destination} to #{filename}" | |
Dir.chdir(tmpdir) { system(compress(File.basename(destination), File.basename(filename)).join(" ")) } | |
- upload(filename, remote_filename) | |
+ upload(filename, remote_filename, { :via => copy_via }) |
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/ruby | |
require 'open-uri' | |
require 'base64' | |
url = 'http://autoproxy-gfwlist.googlecode.com/svn/trunk/gfwlist.txt' | |
list_txt = Base64.decode64(open(url).read) | |
list = list_txt.split("\n").reject do |item| | |
item.start_with?('@@') || | |
item.start_with?('!') || |
NewerOlder