`
文章列表
在<head></head>之间加上如下代码即可。 <link rel="shortcut icon" href="***.ico" type="image/x-icon" />
1.unicorn .rb module Rails class <<self def root File.expand_path(__FILE__).split('/')[0..-3].join('/') end end end rails_env = ENV['RAILS_ENV'] || 'production' worker_processes (rails_env == 'production' ? 10 : 2) preload_app true working_directory Rails.root ...
源文:http://www.cnblogs.com/evasnowind/archive/2011/02/04/1949113.html 一、$whereis sudoers -------找出文件所在的位置,默认都是/etc/sudoers         二、 #chmod u+w /etc/sudoers    以超级用户登录su -root ,修改文件权限即添加文件拥有这的写权限 限,ls -al /etc/sudoers 可以查看原文件的权限。    三、vim /etc/sudoers 编辑文件,在root ALL=(ALL)ALL行下添加XXX ALL=(ALL)ALL,XXX ...

nginx conf

一、 nginx.conf    #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type ...
源文:http://blog.licess.org/http_load-webbench-ab-siege/ 一、http_load 程序非常小,解压后也不到100K http_load以并行复用的方式运行,用以测试web服务器的吞吐量与负载。但是它不同于大多数压力测试工 具,它可以以一个单一的进程运行,一般不会把客户机搞死。还可以测试HTTPS类的网站请求。 下载地址:http://soft.vpser.net/test/http_load/http_load-12mar2006.tar.gz 安装很简单 #tar zxvf http_load-12mar2006.tar.gz #c ...
cd usr/local/src wget http://www.imagemagick.org/download/ImageMagick.tar.gz tar xvfz ImageMagick.tar.gz cd ImageMagick-6.7.5 ./configure --prefix=/usr/local/entos/imagemagick make sudo make install sudo ln -s /usr/local/entos/imagemagick/bin/convert /usr/bin/convert see:htt ...
------ GEM: gem install rails --include-dependencies gem install rails -v=2.0.2 自动安装rails ------ 1.1 创建Rails应用程序 $ rails [_VERSION_] app_name 可选项: VERSION: 指定rails的版本(如果安装了多个rails版本),VERSION前后各加一下划线, 如"_1.2.6_" - ...
http://huacnlee.com/blog/how-to-start-learning-ruby-on-rails
source:http://ruby-china.org/wiki/install_ruby_guide 对于新入门的开发者,如何安装 Ruby, Ruby Gems 和 Rails 的运行环境可能会是个问题,本页主要介绍如何用一条靠谱的路子快速安装 Ruby 开发环境。 此安装方法同样适用于产品环境! 1.操作系统的准备 Mac 请安装 Xcode 开发工具,它将帮你安装好 Unix 环境需要的开发包 Ubuntu $ sudo apt-get install wget vim build-essential openssl libreadline6 libreadline6-dev cu ...
see:http://www.daqianduan.com/3-online-browser-compatibility-testing-tool/ 1.Spoon Browser Sandbox http://spoon.net/browsers/ 2.BrowserShots http://browsershots.org/ 3.IE NetRenderer http://ipinfo.info/netrenderer/
http://www.daqianduan.com/web-tools/
网站的访问速度和性能对用户体验来说是非常重要的。如果你的网站访问非常的慢,你不仅会失去用户,而且更可怕的是你会失去潜在的客户。像Google这样的互联网巨头也会把网站访问速度作为排名的一个参数。因此当你需要优化网站速度时,你需要考虑方方面面,每个毫秒。这里对改进网站性能提出一些基础和普遍的建议。 1、如果可能的话,延迟加载一些内容 可以使用Ajax来按需加载部分内容。比如一个相册,可以在用户浏览页面时先出缩略图,当用户点击了,然后异步请求原图并展示,这样用户如果只需要看几张图片,就不需要等待所有图片都加载下来。这种开发模式叫做延迟加载。 Ajax/Web开发类库如jQuery,Protot ...
1、MySQL Format Date MySQL Format Date 帮助你更好地使用 MySQL DATE_FORMAT 函数。只需选择通用的日期格式,然后将其更改为满足你需求的格式。MySQL DATE_FORMAT 代码将会在页面底部生成,你可以直接复制这段查询语句。 点击访问:http://www. ...
因为CentOS系统是用rhas的源码再编译的,很多地方是完全一样的。 rhas5的时区是以文件形式存在的,当前的时区文件是在/etc/localtime 那么其他时区的文件存放在哪里呢? 在/usr/share/zoneinfo下 我们用东八区,北京,上海的时间 #cp -f /usr/share/zoneinfo/Asia/Shanghai /etc/localtime #reboot 重启之后,date查看时间、查看当前时区   date -R、查看/修改Linux时区和时间 一、时区 1. 查看当前时区 date -R 2. 修改设置时区 方法(1) ...
1. 停止mysql 服务 /etc/init.d/mysqld stop 2. 用以下命令启动MySQL,以不检查权限的方式启动;    mysqld_safe --skip-grant-tables & 3. 然后用空密码方式使用root用户登录 MySQL;    mysql -u root 4. 修改root用户的密码; MySQL> update MySQL.user set password=PASSWORD('新密码') where User='root'; MySQL> flush privileges; MySQL> quit ...
Global site tag (gtag.js) - Google Analytics