- 警告:請絕對不要跳著裝!*
> sudo apt-get update > sudo apt-get upgrade > sudo apt-get install git
// 理解类的方法 | |
// | |
// 第一段代码是使用默认类,定义和使用函数 | |
// 第二段代码是使用类<类Person>,定义和使用函数 | |
// | |
// 函数吃 - 函数名称 | |
// 属性修饰 - 属性名称 | |
// 属性食品 - 属性名称 | |
// 类人 - 类名称 | |
// 对象道喜 - 类的对象名称 |
# 理解JavaScript的prototype属性 | |
# | |
# 类Dog - 类名称 | |
# 属性name - 类Dog的对象属性 | |
# 类属性species - 类Dog的类属性 | |
# 对象dog_a - 类Dog的对象 | |
# 对象dog_b - 类Dog的对象 | |
# | |
# 类属性species是prototype对象的属性; | |
# 类Dog.prototype是实例对象共享的对象; |
class AdjacencyListGraph(object): | |
def __init__(self): | |
self.node = {} | |
self.adj = {} | |
def add_node(self, node, **attrs): | |
if node not in self.adj: | |
self.adj[node] = {} | |
self.node[node] = attrs |
The following document is a written account of the Code School screencasting framework. It should be used as a reference of the accompanying screencast on the topic.
You're probably aren't going to take the time to read this document if you're not interested, but there are a lot of nice side effects caused by learning how to create quality screencasts.
{ | |
"cmd": ["pandoc.exe", "--to=html", "--output=$file.html", "$file"], | |
"selector": "source.md" | |
} |
require 'rubygems' | |
# Rails on-screen logging | |
def change_log(stream) | |
ActiveRecord::Base.logger = Logger.new(stream) | |
ActiveRecord::Base.clear_active_connections! | |
end | |
def show_log |
If you switch to kaminari, | |
http://railscasts.com/episodes/254-pagination-with-kaminari | |
...the lines added to application.js become redundant when you implement the pager like in this demo project: | |
https://github.com/amatsuda/kaminari_example/tree/ajax | |
in index.html: |
require 'formula' | |
class R <Formula | |
url 'http://cran.r-project.org/src/base/R-2/R-2.12.1.tar.gz' | |
homepage 'http://www.R-project.org/' | |
md5 '078e8d1179fc9a762e326e6da2725468' | |
depends_on 'readline' | |
def install |
# zh-CN translations for Typus (template) | |
# by ZoOL <http://github.com/zhooul> | |
zh-CN: | |
"A valid token is required": "需要验证令牌" | |
"Actions": "动作" | |
"Active": "已激活" | |
"Add": "新增" | |
"Add %{resource}": "新增 %{resource}" | |
"Add new": "新增" |