This file contains hidden or 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
| var gulp = require('gulp'); | |
| var paths = require('../paths'); | |
| var jspm = require('jspm/api'); | |
| gulp.task('bundle', function (done) { | |
| jspm.bundle( | |
| [ | |
| '*', | |
| 'aurelia-skeleton-navigation/*', | |
| 'aurelia-bootstrapper', |
This file contains hidden or 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
| ;http://yellerapp.com/posts/2014-12-11-14-race-condition-in-clojure-println.html | |
| (defn safe-println [& more] | |
| (.write *out* (str (clojure.string/join " " more) "\n"))) |
This file contains hidden or 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
| (ns clj-test-server.core | |
| (:use org.httpkit.server)) | |
| ; https://github.com/http-kit/http-kit/blob/master/src/java/org/httpkit/server/AsyncChannel.java | |
| (def clients (atom nil)) | |
| (defn handler [] | |
| (future (let | |
| [merged (merge {} @clients)] |
NewerOlder