読んだ上でのメモ
ゲームデザイナーは、ゲームを評価し、ゲームを理解し、それがどのように機能し、なぜ面白いのかを理解するための方法を求めている。 つまりゲームを分析するための手法を考えなければならないわけだ。
(ns google-reader.xml-test | |
(:require [clojure.xml :as xml] | |
[clojure.zip :as zip] | |
[clojure.data.zip.xml :as dzx]) | |
(:use clojure.test)) | |
(def xml-str-1 | |
(str "<root id='1'>" | |
" <parent id='2'>" | |
" <child id='3'/>" |
# 少し凝った zshrc | |
# License : MIT | |
# http://mollifier.mit-license.org/ | |
######################################## | |
# 環境変数 | |
export LANG=ja_JP.UTF-8 | |
# 色を使用出来るようにする |
@echo off | |
REM ------------------------------------------------------------------------------ | |
REM .NET Frameworkバージョン自動検出用バッチ・ファイル(2012年10月26日版) | |
REM | |
REM Windows TIPS: .NET Frameworkのバージョンを確認する方法 | |
REM http://www.atmarkit.co.jp/ait/articles/1210/26/news086.html | |
REM Copyright (C) 2000-2012 Digital Advantage Corp. | |
REM ------------------------------------------------------------------------------ |
読んだ上でのメモ
ゲームデザイナーは、ゲームを評価し、ゲームを理解し、それがどのように機能し、なぜ面白いのかを理解するための方法を求めている。 つまりゲームを分析するための手法を考えなければならないわけだ。
(ns chanplay.core | |
(:require | |
[goog.dom :as dom] | |
[goog.events :as events] | |
[cljs.core.async :as async | |
:refer [<! >! chan close! sliding-buffer put! alts!]] | |
[jayq.core | |
:refer [$ append ajax inner html $deferred when done resolve pipe on] :as jq] | |
[crate.core :as crate] | |
) |
#!/bin/bash | |
# Description: | |
# Backlog + git-flow + WIP PR script | |
# Usage: | |
# wip-pr pj-123 | |
# | |
# Requirement: | |
# use Mac OS X |
// ==UserScript== | |
// @name Github WIP pull request | |
// @namespace https://github.com/emanon001/ | |
// @description Github での WIP pull request 運用を便利にするあれこれ | |
// @include https://github.com/*/pull/* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js | |
// ==/UserScript== | |
this.$ = this.jQuery = jQuery.noConflict(true); |
# Description: | |
# syussya | |
# | |
# Dependencies: | |
# "request" | |
# "cheerio" | |
# | |
# Configuration: | |
# None | |
# |