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
/*{"k":"0.10.0","mac":"1:2e55af9895fe193a2966ce7d808ef313d38e823ed5892dda725cd5e8f3c4fba5","version":"8173121","created":"2012-01-24T20:45:58Z"}*/ | |
; | |
(function (window, document, undefined) { | |
var j = true, | |
o = null, | |
q = false; | |
function r(a) { | |
return function (c) { | |
this[a] = 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
images/100px.jpg | |
/images/100px.jpg | |
../images/100px.jpg | |
../../images/100px.jpg | |
../../../images/100px.jpg | |
http://example.com/images/100px.jpg | |
aimages/100px.jpga | |
1images/100px.jpg1 | |
.images/100px.jpg. | |
-images/100px.jpg- |
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
module Middleman::Features::TransmitSync | |
class << self | |
def registered(app) | |
app.after_build do | |
project_transmitsync_favorite_name = app.transmit_sync_favorite | |
macruby_eval = <<-macrubyEval | |
framework 'ScriptingBridge' | |
@transmit = SBApplication.applicationWithBundleIdentifier('com.panic.Transmit') | |
@transmitsync_favorite_name = ARGV.join('') | |
@transmitsync_favorite = false |
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
rvm debug | |
/Users/arron/.rvm/scripts/info: line 5: /base: No such file or directory | |
/Users/arron/.rvm/scripts/info: line 6: /version: No such file or directory | |
/Users/arron/.rvm/scripts/info: line 176: /match: No such file or directory | |
/Users/arron/.rvm/scripts/info: line 195: __rvm_become: command not found | |
/Users/arron/.rvm/scripts/info: line 197: __rvm_environment_identifier: command not found | |
: | |
system: |
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 | |
require 'optparse' | |
require 'webrick' | |
class NonCachingFileHandler < WEBrick::HTTPServlet::FileHandler | |
def prevent_caching(res) | |
res['ETag'] = nil | |
res['Last-Modified'] = Time.now + 100**4 | |
res['Cache-Control'] = 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0' | |
res['Pragma'] = 'no-cache' |
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
# via http://my.rails-royce.org/2010/07/21/email-validation-in-ruby-on-rails-without-regexp/ | |
class User < ActiveRecord::Base | |
validates :email, :presence => true, :email => true | |
end | |
# Just put a file in app/validators/email_validator.rb |
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
# Via http://www.slideshare.net/freelancing_god/zsh-and-rvm | |
#!/usr/bin/env zsh | |
source ~/.rvm/scripts/rvm | |
if [[ -s "${TM_PROJECT_DIRECTORY}/.rvmrc" ]] | |
then | |
source "${TM_PROJECT_DIRECTORY}/.rvmrc" | |
fi |
NewerOlder