Google docs無法建立舊文件格式,怎麼辦?
如何使用Google docs的舊文件格式。(可以設定CSS及編輯HTML的版本)
其實很簡單,先拿一份舊文件,再按"檔案"->"建立副本"即可
如果要讓History很乾淨,就把這份副本"清單淨",然後再建立副本。
不過這種舊格式,將來會被Google怎麼處理?實在是不知道。
2011年1月28日 星期五
2011年1月15日 星期六
Ruby heredoc note
- print <<EOF
- The price is #{$Price}.
- EOF
- print <<"EOF"; # same as above
- The price is #{$Price}.
- EOF
- print <<`EOC` # execute commands
- echo hi there
- echo lo there
- EOC
- print <<"foo", <<"bar" # you can stack them
- I said foo.
- foo
- I said bar.
- bar
- myfunc(<<"THIS", 23, <<'THAT')
- Here's a line
- or two.
- THIS
- and here's another.
- THAT
- if need_define_foo
- eval <<-EOS # delimiters can be indented
- def foo
- print "foo\n"
- end
- EOS
- end
From: Ruby Language Reference Manual - Syntax
Passenger-top 0.3 released
passenger-top is like unix top command for passenger.
Ruby on Rails passenger has passenger-status can view instance status. but I wanted it similar to top command, so I created this project.
Download
checkout or download “passenger-top.rb“
How to use?
Ruby on Rails passenger has passenger-status can view instance status. but I wanted it similar to top command, so I created this project.
Download
checkout or download “passenger-top.rb“
How to use?
訂閱:
文章 (Atom)