`
xf986321
  • 浏览: 163873 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论
文章列表
地址:http://www.yeeyan.com/articles/view/57288/22841
<!-- @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服务器 ...
解决方法一:(适合于找不到mysql安装路径的ubuntu环境里) sudo apt-get install libmysqlclient15-dev sudo gem install mysql
流程:取代码 -> 每次工作前更新代码到最新版本 -> 修改代码 -> 提交代码到服务器     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. 每次更改代码的 ...
  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   <!- ...
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 ...
//安装插件: 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 ...
        要為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如下 ...
在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 >& ...
今天看了一点关于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 ...
提高网站可用性的10个小技巧 在本文中我希望能够提供一个可用性清单,内容覆盖了从视觉设计,到可以用在任何项目中的简单导航提示等多个方面。 发表于:2009-06-08 15:47 分类:首页 > 交互设计 > 设计教程 > , ...
1.什么是URI Web上可用的每种资源 - HTML文档、图像、视频片段、程序等 - 由一个通过通 用资源标志符(Universal Resource Identifier, 简称"URI")进行定位。 URI一般由三部分组成: 访问资源的命名机制。 存放资源的主机名。 资源自身的名称,由路径表示。 考虑下面的URI,它表示了当前的HTML 4.0规范:    http://www.webmonkey.com.cn/html/html40/ 这个URI是这样的:这是一个可通过HTTP协议访问的资源,位于主 机www.webmonke ...
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 ...
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 ...
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     |...........     `-- ...
Global site tag (gtag.js) - Google Analytics