Skip to content

Instantly share code, notes, and snippets.

View vroy's full-sized avatar

Vincent Roy vroy

View GitHub Profile
[2010-08-20 10:54:36] INFO Restoring "%04%08%7B%07:%0Avalueo:%1ARamaze::Session::Hash%07:%0D@sessiono:%14Ramaze::Session%09:%0D@droppedF:%10@session_id%22E6f45947e79f097123cf3049bae945cfb090f2023eb6d25d88cc21af403b33086:%0D@current@%06:%0B@flasho:%1BRamaze::Session::Flash%06;%07@%07:%0A@hash%7B%0A:%09user%22%22exploid%22%1BVoloThrottleController%7B%0C:%0Bactivei%06:%0Bpausedi%07:%0Bserveri%00:%0Csegmenti%00:%0Fstart_dateu:%09Date=%04%08[%08o:%0DRational%07:%11@denominatori%07:%0F@numeratori%03%CB%EEJi%00i%03%19%15%23:%0Dend_dateu;%15=%04%08[%08o:%0DRational%07:%11@denominatori%07:%0F@numeratori%03%09%EFJi%00i%03%19%15%23:%0Bsourcei%00:%13FLASH_PREVIOUS%7B%00:%0AadminT:%0Cuser_id%22%061:%0Cexpires0" (flags 5)
This is the result of the last Restoring before the error message. I have no idea what do to with that though :/
@ids = [1,2,3]
string = %q(
<ul>
<?r @ids.each do |i| ?>
<li>#{i}</li>
<?r end ?>
</ul>
)
class SuperModel < Sequel::Model
def display(column)
# This method would use @some_kind_of_configuration_here to display the value.
end
end
class User < SuperModel
@some_kind_of_configuration_here = {
:column => "Column"
}
irb(main):002:0> (Date.today+1).strftime("%Y-%m-%d")
=> "2010-02-24"
irb(main):003:0> (Date.today +1).strftime("%Y-%m-%d")
=> "2010-02-23"
irb(main):004:0> (Date.today + 1).strftime("%Y-%m-%d")
=> "2010-02-24"
irb(main):005:0> (Date.today+ 1).strftime("%Y-%m-%d")
=> "2010-02-24"
[Thu Jan 28 17:54:33 2010] [error] [client ip] proxy: error reading status line from remote server localhost
[Thu Jan 28 17:54:33 2010] [error] [client ip] proxy: Error reading from remote server returned by /action
$> yum install gcc gcc-c++ autoconf automake
Loaded plugins: rhnplugin
Excluding Packages in global exclude list
Finished
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package autoconf.noarch 0:2.59-12 set to be updated
--> Processing Dependency: imake for package: autoconf
--> Processing Dependency: m4 for package: autoconf
require 'net/ftp'
@filename = File.expand_path(ARGV[0])
ftp = Net::FTP.connect("HOST", "PORT")
ftp.login "USERNAME", "PASSWORD"
ftp.chdir("FOLDER")
ftp.putbinaryfile(@filename) # or ftp.puttextfile(@filename)
ftp.close
VirtualHost configuration:
wildcard NameVirtualHosts and _default_ servers:
*:80 is a NameVirtualHost
default server vroy.ca (/etc/apache2/sites-enabled/000-default:1)
port 80 namevhost vroy.ca (/etc/apache2/sites-enabled/000-default:1)
port 80 namevhost 208.88.124.71 (/etc/apache2/sites-enabled/001-test:1)
Syntax OK
vals = {
:album_id => nil,
:mime_type => file[:type],
:description => h(request[:description]),
:real_filename => real_filename,
}
p vals
new = Picture.create(vals)
require 'rubygems'
require 'ramaze'
# Start this example with `ruby hello.rb`.
# After startup you will be able to access it at http://localhost:7000/
# This should output "Hello, World!" in your browser.
class MainController < Ramaze::Controller
map '/'