Initial commit | Watchers | Forks | URI |
---|---|---|---|
2008-10-23 |
1533 |
68 |
|
2009-07-15 |
163 |
11 |
|
2009-12-26 |
162 |
14 |
|
2010-10-17 |
1047 |
70 |
|
2011-09-16 |
50 |
12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git --version | |
git version 1.7.9.1.244.gb0d66b | |
$ mkdir git-submodule | |
$ cd ./git-submodule | |
$ git init | |
Initialized empty Git repository in /Users/kana/tmp/git-submodule/.git/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Usage: :source this file. | |
let s:file = expand('<sfile>') | |
function! s:go() | |
let inData = 0 | |
for line in readfile(s:file) | |
if inData && line =~# 'xxx' | |
let name = split(line)[0] | |
execute printf('syntax match test%s /^%s .*/', name, name) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
card do | |
name '農村' | |
cost 1 | |
type :land | |
subtype nil | |
link 1 | |
text <<-'END' | |
1コイン。継承点-2。 | |
END | |
effect do |
ハートオブクラウン公式サイトのカードリストでの誤表記らしきもの(2012-05-04T03:38:05+09:00 現在)。
- 《魔法の護符》
- 表記: リンクシンボルが「」(空欄)
- 実物: リンクシンボルが1個ある。
- 《御用商人》
- 表記: カードタイプ「行動」
- 実物: カードタイプ「行動(商人)」
- 《交易船》
- 表記: カードタイプ「行動」
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[サプライ] | |
貿易商人、斥候、都市開発、城壁、 | |
追い立てられた魔獣、早馬、港町、見習い魔女、 | |
魅了術の魔女、冒険者 | |
[ハンドエリミネーション] | |
CPU3:1 枚(農村 4 枚) | |
あなた:1 枚(農村 4 枚) | |
CPU1:1 枚(農村 4 枚) | |
CPU2:1 枚(農村 4 枚) | |
[CPU1:継承点重視] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[サプライ] | |
星詠みの魔女、早馬、隠れ家、斥候、 | |
結盟、願いの泉、噂好きの公爵夫人、錬金術師、 | |
城壁、交易船 | |
[ハンドエリミネーション] | |
あなた:2 枚(農村 3 枚) | |
CPU1:1 枚(農村 4 枚) | |
CPU2:1 枚(農村 4 枚) | |
CPU3:1 枚(農村 4 枚) | |
[CPU1:継承点重視] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- def as_home; {href: '#home', data: {role: 'button', icon: 'home'}}; end | |
- def as_plus; {href: '#plus', data: {role: 'button', icon: 'plus'}}; end | |
- def as_here; {data: {theme: 'b'}}; end | |
%div{data: {role: 'footer', id: 'the-footer', position: 'fixed'}} | |
%div(data-role='navbar') | |
%ul | |
%li | |
%a{as_home} Home | |
%li | |
%a{as_plus, as_here} Plus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git checkout -b master topic | |
fatal: git checkout: updating paths is incompatible with switching branches. | |
Did you intend to checkout 'topic' which can not be resolved as commit? |