- mitsuruog
This file contains hidden or 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
import derelict.opengl3.gl, | |
derelict.opengl3.gl3, | |
derelict.glfw3.glfw3; | |
class TestGl{ | |
static int width = 800; | |
static int height = 600; | |
static GLFWwindow* window; | |
static const float Pi = 3.1415926535897932384626433832795; | |
スライドと Togetter と日本語訳へのリンクは http://build-shokunin.org/juc2012/sessions/ にも載るようになったのでこの Gist はもうメンテナンスされないかも。
- 基調講演
- satta-1: Jenkinsプロジェクト現状報告とこれから http://www.slideshare.net/kohsuke/jenkins-user-conference
- 通常発表
- satta-2: Jenkinsによる自動受け入れテストから継続的デリバリーまで http://www.slideshare.net/wakaleo/automated-acceptance-testing-and-continuous-delivery
- satta-3: 飛行機を飛ばしながら直す方法教えます:JenkinsとGerritによる継続的デプロイメントの実践 https://github.com/rtyler/juc-tokyo-presentation/raw/master/juc-tokyo.pdf
This file contains hidden or 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
/** | |
* WebBeeper 2A03 | |
* Origin : http://www.g200kg.com/en/docs/webbeeper | |
* Author : g200kg氏 | |
* Comment: mohayonao | |
* Blog : http://mohayonao.hatenablog.com/entry/2012/07/12/093004 | |
*/ | |
var app; | |
var audioif; |
This file contains hidden or 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
// | |
// etude::optional_ref<T> | |
// ポインタの安全で軽快な代替として使えるクラス | |
// 一部を除き boost::optional<T&> と同じように使えます。 | |
// 詳しくは http://d.hatena.ne.jp/gintenlabo/20101019/1287500776 を参照。 | |
// | |
// Copyright (C) 2010 Takaya Saito (SubaruG). | |
// このコードは NYSL (http://www.kmonos.net/nysl/) の下で公開されています。 | |
// 自分で書いたコードと同じように、自由に利用、改変、再配布を行って構いません。 | |
// 何かあったら: gintensubaru あっと gmail.com まで。 |