Skip to content

Instantly share code, notes, and snippets.

View koizuss's full-sized avatar

Takeshi Koizumi koizuss

View GitHub Profile
@koizuss
koizuss / build.gradle
Created October 24, 2013 19:09
gradle+compass+livereloadx
buildscript {
repositories {
mavenCentral()
maven { url 'http://dl.bintray.com/robfletcher/gradle-plugins' }
}
dependencies {
classpath 'org.gradle.plugins:gradle-compass:1.0.7'
}
}
@koizuss
koizuss / file0.txt
Created September 23, 2013 12:49
knife solo prepare で ERROR: Net::SSH::HostKeyMismatch: ref: http://qiita.com/koizuss@github/items/599b453bf3e38f825027
knife solo prepare vagrant@x.x.x.x
@koizuss
koizuss / file0.txt
Created September 20, 2013 09:04
veeweeを使ってdebian.boxを作成する時のプロキシ設定 ref: http://qiita.com/koizuss@github/items/6d160eb096636e693afc
d-i mirror/http/proxy string http://proxy:port/
@koizuss
koizuss / bitbucket-cloudbees.md
Created July 20, 2013 11:03
BitbucketとCloudBeesの連携

BitbucketとCloudBeesの連携

クラウド上にITS + VCS + Build環境がほしくて下記を選定

CloudBeesのみでVCS + Build環境は実現できるのだが、ITSが付いてない。。

ので、ITS + VCSをBitbucketで実現し、CloudBeesでBuildする方法にした。

@koizuss
koizuss / file0.html
Created June 20, 2013 03:05
はてなブログmarkdown記法でアンカーリンク ref: http://qiita.com/koizuss@github/items/d922aa4104dbc99c74ea
[リンク](#section1)
<a name="section1"></a>
# アンカー
@koizuss
koizuss / js-function-measurement.html
Created June 16, 2013 14:03
即時関数の処理速度測定
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>js-function-measurement</title>
</head>
<body>
<style type="text/css">
dd {position: relative; width: 250px;}
[id^=item] { font-weight: bold; position: absolute; right: 0;}
@koizuss
koizuss / maven-dependency-tutorial.md
Created June 12, 2013 10:45
Mavenの依存関係をいろいろいじくる

maven-dependency-tutorial

ph0. プロジェクト作成

依存関係のサンプルなので普通のJavaプロジェクトを作成

mvn archetype:generate
  • groupId: net.jp.kronos.hq
  • artifactId: maven-dependency-tutorial
@koizuss
koizuss / webdriver-setup.gradle
Created June 1, 2013 08:29
setup webdriver on gradle
ext {
webdriver {
chrome {
driver = file('tools/chromedriver/chromedriver')
}
}
}
task setupChromeDriver << {
ext {
@koizuss
koizuss / JUnit実践入門.md
Created May 30, 2013 15:28
JUnit実践入門

JUnit実践入門

@koizuss
koizuss / Default.sublime-keymap
Last active November 8, 2018 01:34
Mac上でDocblockr Pluginとgoogle日本語入力を使っていてコメント内でENTERを押したら入力内容が消える問題を回避(とりあえず)
[
// open a docblock with enter
{ "keys": ["enter"], "command": "jsdocs",
"context": [
{ "key": "setting.auto_indent", "operator": "equal", "operand": true, "match_all": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false, "match_all": true },
{ "key": "preceding_text", "operator": "regex_contains", "operand": "^\\s*(\\/\\*|###)\\*$", "match_all": true }
]
},