JUnit実践入門
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 ant = new AntBuilder() | |
ant.record(name: 'sample.log', loglevel: 'debug', emacsmode: false, append: false) | |
// -> http://www.jajakarta.org/ant/ant-1.5/docs/ant-1.5/j/docs/manual/CoreTasks/recorder.html | |
ant.copy(file: 'antlog.groovy', tofile: 'antlog.groovy.sample') |
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
repositories { | |
mavenCentral() | |
} | |
configurations { | |
ftpAntTask | |
} | |
dependencies { | |
ftpAntTask("org.apache.ant:ant-commons-net:1.8.2") { |
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
yammer_refresh = setInterval(function(){ var t = jq('.yj-new-messages-link'); if(t.css('height') != "0px"){ t.click(); }}, 1000); |
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
archivesBaseName = 'hoge' | |
version = '0.0.0-snapshot' | |
import com.google.javascript.jscomp.ant.CompileTask | |
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { |
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
sudo apt-get install libpcre3-dev | |
curl -O http://apache.mesi.com.ar/apr/apr-1.4.6.tar.gz | |
curl -O http://apache.mesi.com.ar/apr/apr-util-1.4.1.tar.gz | |
curl -O http://mirrors.linsrv.net/apache/httpd/httpd-2.4.3.tar.gz | |
tar zxvf apr-1.4.6.tar.gz | |
tar zxvf apr-util-1.4.1.tar.gz | |
tar zxvf httpd-2.4.3.tar.gz | |
mkdir httpd-2.4.3/srclib | |
mv apr-1.4.6 httpd-2.4.3/srclib | |
mv httpd-2.4.3/srclib/apr-1.4.6 httpd-2.4.3/srclib/apr |
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
Show hidden characters
[ | |
// 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 } | |
] | |
}, |
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
ext { | |
webdriver { | |
chrome { | |
driver = file('tools/chromedriver/chromedriver') | |
} | |
} | |
} | |
task setupChromeDriver << { | |
ext { |
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
<!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;} |
OlderNewer