Skip to content

Instantly share code, notes, and snippets.

@yusuke2255
yusuke2255 / build.gradle
Last active August 29, 2015 14:05
Exclude subproject's module
// OK
testCompile (project(':tests:common')){
exclude group: 'junit'
}
package jp.test.runner;
import java.io.File;
import java.io.IOException;
import java.io.StringWriter;
import java.io.Writer;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.HashMap;
import java.util.Map;
@yusuke2255
yusuke2255 / aws_vip_change.sh
Last active August 29, 2015 13:57
Mysql Master HAをソースからインストールするレシピ
#!/bin/bash
if [ $# -lt 2 ]; then
echo "Illegal param count.count = $#"
exit 1
fi
# High Availability IP variables
# Other node's IP to ping and VIP to swap if other node goes down
VIP_ENI_ID=eni-xxxxxxxxx
@yusuke2255
yusuke2255 / HttpClientHttpsProxyTest.java
Created February 12, 2014 04:49
Java HttpClient4.3でProxy(https)を使うテスト
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.Header;
import org.apache.http.HttpHost;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
@yusuke2255
yusuke2255 / HogeController.java
Last active December 20, 2015 01:59
Spring3.2でJsonを返すコントローラを作成。(servlet3.0でweb.xmlは使わなかったバージョン)
package jp.test.hoge.controller;
import jp.test.hoge.model.HogeModel;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class HogeController {
@yusuke2255
yusuke2255 / jstemplate-sample.js
Last active December 19, 2015 22:49
jstemplate sample
var myJson1 = {title:"タイトル_1_ですよ。",detail:"このデータはlistデータを持ってるのです。",list:[{listTitle:"1個目なのです",attrChecked:true,attrName:"name_1"},{listTitle:"2個目なのです",attrChecked:false,attrName:"name_2"}]};
var myJson2 = {title:"タイトル_2_ですよ。",detail:"このデータはlistデータを持ってないのです。"};
function showTitle(title) {
alert(title);
};
function setTemplateData(type) {
// テンプレートの取得
var t = jstGetTemplate('template');