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
PROJECT MOVED TO https://github.com/Ovea/cors | |
/** | |
* https://gist.github.com/1114981 | |
* | |
* By default, support transferring session cookie with XDomainRequest for IE. The cookie value is by default 'jsessionid' | |
* | |
* You can change the session cookie value like this, before including this script: | |
* | |
* window.SESSION_COOKIE_NAME = 'PHP_SESSION'; |
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
import javax.annotation.PostConstruct; | |
import javax.annotation.PreDestroy; | |
import javax.inject.Singleton; | |
import org.junit.Test; | |
import com.google.inject.AbstractModule; | |
import com.google.inject.Provider; | |
import com.mycila.inject.jsr250.Jsr250; | |
import com.mycila.inject.jsr250.Jsr250Injector; |
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
#!/usr/bin/env groovy | |
import java.util.concurrent.ForkJoinPool | |
import java.util.concurrent.RecursiveAction | |
import java.util.concurrent.TimeUnit | |
def root = (args && args[0] ? args[0] : '.' as File).canonicalFile | |
def cpus = Runtime.runtime.availableProcessors() | |
println "Updating all projects in ${root}..." |
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
#!/usr/bin/env groovy | |
import groovy.io.FileType | |
import groovyx.net.http.ContentType | |
import groovyx.net.http.HTTPBuilder | |
import groovyx.net.http.Method | |
import org.apache.http.HttpResponse | |
import org.apache.http.client.methods.HttpPost | |
import org.apache.http.client.params.ClientPNames | |
import org.apache.http.client.params.CookiePolicy |
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
Clock = function (timeZone) { | |
this.timeZone = timeZone; | |
}; | |
Clock.prototype = { | |
now: function () { | |
var nowZone = moment.tz(this.timeZone).zone(); | |
return moment().zone(nowZone); | |
}, |
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
import com.esotericsoftware.kryo.Kryo; | |
public interface KryoPool { | |
Kryo get() throws Exception; | |
void yield(Kryo kryo); | |
} | |
////////////////////////////////////////////////////////////// |
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
import com.guestful.jsr310.Jsr310Extensions; | |
import com.guestful.jsr310.ZonedInterval; | |
import org.bson.BSON; | |
import java.time.*; | |
import java.util.Date; | |
import java.util.LinkedHashMap; | |
import java.util.Map; | |
import java.util.function.Function; |
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
// handle some git configuration for windows | |
exports.spawn = spawnGit | |
exports.chainableExec = chainableExec | |
exports.whichAndExec = whichAndExec | |
var exec = require("child_process").execFile | |
, spawn = require("./spawn") | |
, npm = require("../npm.js") | |
, which = require("which") |
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
--- git.js 2015-05-11 16:19:29.114852900 -0400 | |
+++ git-patched.js 2015-05-11 16:19:35.788234600 -0400 | |
@@ -12,14 +12,23 @@ | |
, git = npm.config.get("git") | |
, assert = require("assert") | |
, log = require("npmlog") | |
+ , win32 = process.platform === "win32" | |
+ , cygwin = win32 && (process.env.ORIGINAL_PATH || '').indexOf('/cygdrive/') != -1 | |
function prefixGitArgs () { |
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
module.exports = spawn | |
var _spawn = require("child_process").spawn | |
var EventEmitter = require("events").EventEmitter | |
var cygwin = process.platform === "win32" && (process.env.ORIGINAL_PATH || '').indexOf('/cygdrive/') != -1; | |
function spawn (cmd, args, options) { | |
if(cygwin && cmd.indexOf('cmd.exe') != -1) { | |
cmd = 'c:\\cygwin\\bin\\bash.exe'; |
OlderNewer