- 浏览: 163873 次
- 性别:
- 来自: 杭州
最新评论
-
GunChin:
有些复杂,看得不是很懂
RAILS -
shellfish:
恩,红帽默认的SELinux的级别是强制,这个一般我不大用,装 ...
华思服务器一个奇怪问题的解决方法 -
机器人:
你说得太好了了了了了了了 子 啊啊啊啊,呼啦啦。
GIT handbook -
hbxiao135:
能介绍下 fat free crm的 流程分析吗?
(CRM)customer relationship management sysetm
文章列表
<!--
@page { size: 21.59cm 27.94cm; margin: 2cm }
P { margin-bottom: 0.21cm }
-->
#BEGIN CONFIG INFO
#DESCR: 4GB RAM, 只使用
InnoDB,
ACID, 少量的连接
, 队列负载大
#TYPE: SYSTEM
#END CONFIG INFO
#
# 此
mysql配置文件例子针对
4G内存
# 主要使用
INNODB
#处理复杂队列并且连接数量较少的
mysql服务器
...
- 2009-07-07 09:25
- 浏览 1025
- 评论(0)
解决方法一:(适合于找不到mysql安装路径的ubuntu环境里)
sudo apt-get install libmysqlclient15-dev
sudo gem install mysql
- 2009-07-07 09:19
- 浏览 1084
- 评论(0)
流程:取代码
-> 每次工作前更新代码到最新版本
-> 修改代码
->
提交代码到服务器
h3. 取代码及修改全局设置
设置用户名与邮箱
git config --global user.name "My
Name"
git config --global user.email
"my@email.com"
从已有的
git库中提取代码
git clone git@server:app.git myrepo
h3. 每次更改代码的 ...
- 2009-07-07 08:47
- 浏览 2373
- 评论(1)
Git 在
Mac OS下的安装
export TCL_PATH=`which tclsh`
export NO_MSGFMT=1
export GIT_VERSION='1.6.1'
curl -O "http://kernel.org/pub/software/scm/git/git-1.6.1.tar.gz"
tar zxvf git-1.6.1.tar.gz
cd git-1.6.1
./configure
make
sudo make install
git --version
<!- ...
- 2009-07-07 08:45
- 浏览 2554
- 评论(0)
1.hello world
def hello
puts "hello ruby"
end
2.String
a, b = "a double quoted string.\n", %Q|this is also a double quoted string.|
b, c = 'a single quoted string', %q{another single quoted string.}
d = <<EOF
This is a multi-line double
quoted string
EOF
...
- 2009-07-07 08:41
- 浏览 1373
- 评论(0)
//安装插件:
script/plugin install git://github.com/thoughtbot/paperclip.git
script/generate migration add_columns-to_tasks
def self.up
add_column :tasks, :photo_file_name, :string
add_column :tasks, :photo_content_type, :string
add_column :tasks, :photo_file_size, :integer
...
- 2009-06-30 14:26
- 浏览 986
- 评论(0)
要為Ruby on Rails程式加入拖曳排序功能~我們可以使用sortable_element helper function
他可近呼自動地為程式加入拖曳排序功能
script/plugin install git://github.com/rails/acts_as_list.git
這個程式中會用到acts_as_list插件,請先行安裝~ 我們現在先用scaffold建立基本CRUD功能
ruby generate scaffold task title:string position:integer
現在我們修改Task Model如下
...
- 2009-06-30 10:55
- 浏览 1351
- 评论(0)
在rails 的activesupport中有一个方法叫 ago,他可以得到1天前,1分钟前,1小时前……的时间
在以前的开发过程中有这么一个需求,就是要得到一个现在时间之后的某个时间,想1天后、1小时后……,以前一直去寻找ago的对称方法会是after/later什么的,但是没有这个方法,其实只要将时间改为负数就可以实现了。
>> 1.days.ago(now)
=> Thu Jun 25 13:41:53 +0800 2009
>> -1.days.ago(now)
=> Sat Jun 27 13:41:53 +0800 2009
>& ...
- 2009-06-26 13:53
- 浏览 878
- 评论(0)
今天看了一点关于with_scope的知识,有点感觉,写点东西
with_scope 与 named_scope 没有关系,named_scope 是依赖于with_scope工作的。
1、with_scope
with_scope是给一个model添加一个scope来扩展功能
def self.all_male
with_scope(:find => {:conditions => "gender = 'm'"}) do
all_active
end
end
def self.all_active
with_scope ...
- 2009-06-23 10:53
- 浏览 1154
- 评论(0)
提高网站可用性的10个小技巧
在本文中我希望能够提供一个可用性清单,内容覆盖了从视觉设计,到可以用在任何项目中的简单导航提示等多个方面。
发表于:2009-06-08 15:47
分类:首页
> 交互设计
> 设计教程
> , ...
- 2009-06-10 10:55
- 浏览 491
- 评论(0)
1.什么是URI
Web上可用的每种资源 - HTML文档、图像、视频片段、程序等 - 由一个通过通
用资源标志符(Universal Resource Identifier, 简称"URI")进行定位。
URI一般由三部分组成:
访问资源的命名机制。
存放资源的主机名。
资源自身的名称,由路径表示。
考虑下面的URI,它表示了当前的HTML 4.0规范:
http://www.webmonkey.com.cn/html/html40/
这个URI是这样的:这是一个可通过HTTP协议访问的资源,位于主
机www.webmonke ...
- 2009-06-10 09:12
- 浏览 953
- 评论(0)
Add jQuery datagrids to your Rails applications
Update : added support for subgrids. Have a look at the last example!
The jQuery grid plugin
is an amazing Javascript project providing multi-functions Ajax datagrids for your web applications. With the 2dcJqgrid Rails plugin
, you can now ...
- 2009-06-03 10:39
- 浏览 1519
- 评论(0)
Multiple Attachments in Rails
the orginal URL:http://www.practicalecommerce.com/blogs/post/432-Multiple-Attachments-in-Rails
Creating intuitive interfaces can be challenging, particularly when
it comes to uploading files such as images or attachments. Suppose that
we are creating an applicatio ...
- 2009-06-03 10:19
- 浏览 1820
- 评论(0)
swfchart
from LetRails
by admin
简介
Swfchart能够让你很轻松的将maani.us的SWF/XML Chart绘图工具
集成到你的Rails应用中。
安装
首先你需要去maani.us下载SWF/XML Chart
,目前经过测试的版本是4.6版,然后将其解压缩到你的public目录下:
public
|-- charts.swf
`-- charts_library
|-- arno.swf
|-- arst.swf
|...........
`-- ...
- 2009-06-03 10:06
- 浏览 1206
- 评论(0)