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
[~] : rvm reset ; mv ~/.rvm/src/rvm ~/rvm ; rvm implode ; cd ~/rvm; scripts/rvm-install ; rvm reload ; rvm 1.8.6 ; rvm debug | |
<w> Are you SURE you wish for rvm to implode? This will remove /Users/dylanfm/.rvm ? (type 'yes' or 'no') | |
yes | |
<i> Hai! Removing /Users/dylanfm/.rvm | |
rm: /Users/dylanfm/.rvm//ruby-1.8.6-p383/lib/ruby/gems/1.8/doc/actionmailer-2.2.2/rdoc/classes/ActionMailer/Base.html: Permission denied | |
rm: /Users/dylanfm/.rvm//ruby-1.8.6-p383/lib/ruby/gems/1.8/doc/actionmailer-2.2.2/rdoc/classes/ActionMailer/Base.src/M002508.html: Permission denied | |
rm: /Users/dylanfm/.rvm//ruby-1.8.6-p383/lib/ruby/gems/1.8/doc/actionmailer-2.2.2/rdoc/classes/ActionMailer/Base.src/M002509.html: Permission denied | |
rm: /Users/dylanfm/.rvm//ruby-1.8.6-p383/lib/ruby/gems/1.8/doc/actionmailer-2.2.2/rdoc/classes/ActionMailer/Base.src/M002510.html: Permission denied |
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> Please visit the website for much more information: http://rvm.beginrescueend.com/ | |
w⦿‿⦿t! | |
~ Wayne | |
rvm 0.0.36 (2009.09.06) [http://rvm.beginrescueend.com/] | |
rvm 0.0.35 (2009.09.05) [http://rvm.beginrescueend.com/] | |
[~/.rvm/src/rvm] master: rvm -v | |
rvm 0.0.35 (2009.09.05) [http://rvm.beginrescueend.com/] |
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
[~] : rvm 1.8.6 --debug | |
+ case "$rvm_action" in | |
+ __rvm_use ruby 1.8.6 | |
+ '[' -z '' ']' | |
+ __rvm_select ruby 1.8.6 | |
+ rvm_ruby_interpreter=ruby | |
+ rvm_ruby_interpreter=ruby | |
+ '[' 1.8.6 = 1.8 ']' | |
+ '[' 1.8.6 = 1.9 ']' | |
+ case "$rvm_ruby_interpreter" in |
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
# Default passenger | |
# LoadModule passenger_module /Library/Ruby/Gems/1.8/gems/passenger-2.2.5/ext/apache2/mod_passenger.so | |
# PassengerRoot /Library/Ruby/Gems/1.8/gems/passenger-2.2.5 | |
# PassengerRuby /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby | |
# Use RVM 1.8.6 ruby | |
LoadModule passenger_module /Users/dylanfm/.rvm/gems/ruby/1.8.6/gems/passenger-2.2.5/ext/apache2/mod_passenger.so | |
PassengerRoot /Users/dylanfm/.rvm/gems/ruby/1.8.6/gems/passenger-2.2.5 | |
PassengerRuby /Users/dylanfm/.rvm/bin/ruby-1.8.6-p383 |
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
ruby-1.8.6-p383 > postcode = Postcode.find_by_postcode(2251) | |
=> #<Postcode id: 1026, postcode: 2251, suburb: "AVOCA BEACH", state: "NSW", dc: "TERRIGAL DC", type_str: "Delivery Area", lat: #<BigDecimal:10451f1a8,'-0.33464937E2',18(27)>, lng: #<BigDecimal:10451f108,'0.151432387E3',18(27)>, created_at: nil, updated_at: nil> | |
ruby-1.8.6-p383 > Course.find(:all, :origin => [postcode.lat, postcode.lng], :within => 20) | |
=> [#<Course id: 25996, type: "Course", title: "", raw_body: nil, html_body: "", start_time: nil, end_time: nil, v4_id: 2284, created_at: "2009-01-07 23:06:26", updated_at: "2009-01-08 02:30:48", start_date: nil, end_date: nil, slug: "25996-palm-beach-golf-club", v4_slug: "2284-palm-beach-golf-club", lat: #<BigDecimal:1044faf38,'-0.33590081E2',18(27)>, lng: #<BigDecimal:1044fadf8,'0.151323109E3',18(27)>, reviews_count: 6, average_review: #<BigDecimal:1044faba0,'0.1667E1',18(18)>, featured: "", forum_id: nil, topic_id: nil, cached_tag_list: "", delta: false, workflow_state: "new">, #<Course id: 2552 |
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
var GAImporter = function() { | |
this.busy = false; | |
this.poller = setInterval((function(that) { | |
return function() { | |
that.pollJob(); | |
}; | |
})(this), 5000); | |
this.pollJob = function() { |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<title>Testa</title> | |
</head> |
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
# | |
# bash completion support for core Git. | |
# | |
# Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). | |
# Distributed under the GNU General Public License, version 2.0. | |
# | |
# The contained completion routines provide support for completing: | |
# | |
# *) local and remote branch names |
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
// NS is a global variable for a namespace for the app's code | |
var NS = {}; | |
NS.Obj = (function() { | |
// Private vars and methods always available to returned object via closure | |
return { | |
method: function() { | |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<title>untitled</title> | |
</head> |