sbt -Dsbt.ivy.home=/your/local/path/.ivy
Then the dependencies and the other files downloaded for sbt will be stored in the cache
folder of the new location.
e.g.)
/** | |
* Helpers for Handlebars. | |
* @author Lee, SeongHyun (Kevin) | |
* @version 0.0.1 (2014-03-15) | |
*/ | |
/** | |
* e.g.) | |
* {{{#cond this.isEnabled "<b>Enabled</b>" "<div class='alert-danger'>Disabled</div>"}}} | |
* equivalent to |
var logger = console ? console : { | |
"log": function() { | |
// It does nothing. | |
} | |
}; | |
/** | |
* Number.prototype.format(n, x, s, c) | |
* | |
* @param integer n: length of decimal |
import scala.language.implicitConversions | |
object Test extends App { | |
case class SomethingElse(value: String) | |
implicit class ToSomethingElse(val value: String) { | |
def toSomethingElse = SomethingElse("###" + value) | |
} |
.gist .line-numbers { | |
line-height: 1.2; | |
} |
curl https://raw.githubusercontent.com/Kevin-Lee/GitHub-Wikifier/master/pre-commit > .git/hooks/pre-commit; | |
chmod +x .git/hooks/pre-commit; |
package cc.kevinlee.examples; | |
import java.util.Arrays; | |
import java.util.Collection; | |
import java.util.List; | |
import java.util.Optional; | |
import static cc.kevinlee.examples.KeyValPair.*; | |
/** |
This is a modified version of GitHub Wide. I didn't write it entirely but modified a bit.
Change Applies to
to URLs matching the regexp
and put the following pattern.
https://github.com/[^/]+/[^/]+/(((wiki|issues)([?/][^/]*)*)|(pull/[0-9]+(([\/])((?!files).)*)?))
package com.lckymn.kevin.example; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.List; | |
/** | |
* Visit http://goo.gl/X94gN for more details. | |
* | |
* @author Lee, SeongHyun (Kevin) / <a href="http://blog.lckymn.com">Kevin's Blog</a> |