- 浏览: 77276 次
- 性别:
- 来自: 地球
最近访客 更多访客>>
最新评论
-
zhou1986lin:
[flash=200,200][b]引用[size=x-sma ...
新浪编辑器 -
vb2005xu:
晕 想不出来 为什么要实现 什么什么语言的 版本的好处
不都是 ...
新浪编辑器 -
minma_yuyang:
还不错,借鉴了。
Code style -
天机老人:
谢谢啊,这文章不错!
Sphinx -
suncanoe:
<iframe id="myEditor&qu ...
新浪编辑器
文章列表
内存信息
$ cat /proc/meminfo
$ free -M
CPU信息
$cat /proc/cpuinfo
硬盘信息
$df
在日志中过滤password
- 博客分类:
- ROR
在user controller中加入
filter_parameter_logging "password"
如果想完全禁止POST logging,则可以在production.rb中修改:config.log_level = :warn
google go: 入门
参考: http://www.infoq.com/articles/google-go-primer
特点: simple, fast, safe and concurrent
Variable Declarations
var sum int // Just a declaration
var total int = 42 // A declaration with initialization
name := "Samuel"
Conditionals
if result := someFunc(); result > 0 ...
IP 命令行配置如下
sudo gedit /etc/network/interfaces
然后重启
sudo /etc/init.d/networking restart
- 2009-11-20 10:43
- 浏览 669
- 评论(0)
require 'ftools'
namespace :ae do
task :symlink_assets => :environment do
vender_dir = 'vendor/plugins/activeext/public/assets/activeext'
new_dir = 'public/assets/activeext'
d=Dir.open(vender_dir)
for dir in d
if dir != '..' && dir != '.'
dirname = ...
- 2009-06-23 14:39
- 浏览 865
- 评论(0)
namespace :ae do
desc "Copies the ActiveExt javascripts, images and css to public. HINT: use rake ae:symlink if you are unix based systems"
task :copy_assets do
puts "1. Creating /public/assets/activeext if it doesn't exist"
FileUtils.mkdir_p(RAILS_ROOT + '/pu ...
- 2009-06-23 14:35
- 浏览 739
- 评论(0)
rails action
def get_gallery_type
data = []
gallery_type = GalleryType.find:all
gallery_type.each do |t|
data << {:gallery_type_id => t.id, :name => t.name}
end
render :json => {:gallery_type => data }
end
store
var store = new Ex ...
- 2009-06-01 14:16
- 浏览 884
- 评论(0)
git fetch
git rebase origin
then git push
- 2009-06-01 10:29
- 浏览 2166
- 评论(0)
配置 environment -- development.rb
# Don't care if the mailer can't send
config.action_mailer.raise_delivery_errors = true
#set delivery method to :smtp, :sendmail or :test
config.action_mailer.delivery_method = :smtp
#these options are only needed if you choose smtp delivery
config.action_mailer.smt ...
- 2009-05-19 18:57
- 浏览 924
- 评论(0)
1,建立xhtml的目的就是实现html向xml的过渡。
2,真正符合标准的网页设计是指能够灵活使用web标准对web内容进行结构、表现、与行为的分离。
3,xhtml是一门面向结构的语言。表格的职能不在于进行网页布局,而是用来显示数据。
4,CSS代码一般放置位于head标签之中。
5,Transitional类型是xhtml文档类型的过渡类型,strct类型是严格类型,不允许使用任何表现样式的标识和属性。
6,对于每一个页面上,同样的id名称只能使用一次。
7,xhtml规范提出,使用id作为统一的名称标记,不推荐使用html中的name属性。
8,类型选择符例如:body{};包含选择符例 ...
- 2009-05-16 17:16
- 浏览 1190
- 评论(0)
task :import_projects => :environment do
o_projects = T4uproject.find(:all)
for o_project in o_projects
unless TimeTree.find_by_original_id(o_project.id)
new_object = o_project.attributes
new_object['original_id'] = new_object['id']
new_object['task'] = false
...
- 2009-05-14 15:20
- 浏览 864
- 评论(0)
Mini_magick
- 博客分类:
- ROR
MiniMagick中Image对象有一个shave方法,正好可以满足这个需求。在irb中运行:
require ‘mini_magick’
img = MiniMagick::Image.from_file “1.jpg”
#取得宽度和高度
w,h = img[:width],img[:height] #=> [2048, 1536]
shaved_off = ((w-h)/2).round #=> 256
img.shave “#{shaved_off}x0″ #此处表示宽度上左右各截取256个像素,高度上截取0像素
img.write “2.jpg”
在使用shave方法处理后 ...
- 2009-05-14 13:18
- 浏览 1315
- 评论(0)
SELECT
root_proj.r_proj AS root_project_name ,
great_proj.g_proj AS great_project_name ,
parent_proj.p_proj AS parent_project_name ,
proj.project AS project_name,
task.task_name AS task_name,
root_proj.Time AS root_time,
great_proj.Time AS great_time ,
parent_pro ...
- 2009-05-14 12:57
- 浏览 728
- 评论(0)
SELECT items.Name AS Name ,
Work_Items AS '#no Workitems',
sec_to_time(Project_Time) AS 'Client/Project Total Time',
sec_to_time(Ticket_project_Time) AS 'Client/Project Time (With Ticket)',
sec_to_time(Total_Hours) AS 'Total Time (not inc breaks)',
Research_Time AS ...
- 2009-05-14 12:02
- 浏览 756
- 评论(0)