define simple method定义简单方法关键字def用于方法定义,在其后是方法名和可选的参数名列表,参数名列表会用一对圆括号括住。构成方法主体的代码放在参数列表之后,end用于结束方法定义。#define a methoddef factorial(n) if n0" ...
分类:
其他好文 时间:
2014-07-06 22:23:36
阅读次数:
241
一、Asp.net 自带Bundle的使用: 1. 在Globale中注册与配置 BundleConfig.RegisterBundles(BundleTable.Bundles);public class BundleConfig { // For more information on Bund...
分类:
Web程序 时间:
2014-07-06 21:32:28
阅读次数:
232
如果我们要检测app版本的更新,那么我们必须获取当前运行app版本的版本信息和appstore 上发布的最新版本的信息。当前运行版本信息可以通过info.plist文件中的bundle version中获取:NSDictionary *infoDic = [[NSBundle mainBundle]...
分类:
移动开发 时间:
2014-07-06 15:21:31
阅读次数:
189
因为写ruby的时候感觉混身上下都拽起来了,所以比较喜欢用ruby写代码。今天遇到了一个webdriver timeout的问题,问题本身还是因为我对webdriver不了解以及破文档导致的。首先我们把问题简化一下:
driver = Selenium::WebDriver.for :safari
driver.navigate.to "http://www.faraway.com"
wait = Selenium::WebDriver::Wait.new(:timeout => 1000) # seco...
分类:
Web程序 时间:
2014-07-06 12:38:09
阅读次数:
266
今天来按照apidemos提供的方法来实现slow loading的效果.
Main.java
import android.app.ListActivity;
import android.content.Context;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view...
Rack:ruby webserver框架https://rack.github.io/文件上传使用基于tempfile 库文件上传要经历两个过程:1、上传文件传到opennebule sunstone-server的临时目录,临时目录配置文件时/etc/one/sunstone-server.co...
分类:
其他好文 时间:
2014-07-05 17:36:55
阅读次数:
181
bundle install 出现 'gem install mysql2 -v '0.3.15' succeeds before bunding '
解决:sudo apt-get install libmysql-ruby '若找不到这个包试试下面到包
参考:http://packages.ubuntu.com/search?keywords=mysql-ruby...
分类:
数据库 时间:
2014-07-03 18:40:10
阅读次数:
241
ruby on rails 修改数据库内所有用户的密码 ,全部改成1111
项目文件夹内:
rails c
User.all.each do |u|
u.password='1111'
u.password_confirmation='1111'
u.save
end...
分类:
数据库 时间:
2014-07-03 18:31:09
阅读次数:
237
ruby on rails创建的页面访问非常慢
用rvm安装的ruby1.9.3
解决:cd ~/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick
vim config.rb
将 :DoNotReverseLookup 改为true
rails s 重启项目...
分类:
其他好文 时间:
2014-07-03 15:52:46
阅读次数:
149