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
(ns midje-test.a) | |
(defprotocol A (a [_])) |
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
package com.test.groups; | |
import kafka.consumer.ConsumerConfig; | |
import kafka.consumer.KafkaStream; | |
import kafka.javaapi.consumer.ConsumerConnector; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.Properties; |
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
2015-03-23 17:54:29,270 INFO kafka.utils.VerifiableProperties: Verifying properties | |
2015-03-23 17:54:29,281 INFO kafka.utils.VerifiableProperties: Property auto.commit.interval.ms is overridden to 1000 | |
2015-03-23 17:54:29,282 INFO kafka.utils.VerifiableProperties: Property group.id is overridden to test2 | |
2015-03-23 17:54:29,282 INFO kafka.utils.VerifiableProperties: Property zookeeper.connect is overridden to 987.65.43.21 | |
2015-03-23 17:54:29,282 INFO kafka.utils.VerifiableProperties: Property zookeeper.session.timeout.ms is overridden to 400 | |
2015-03-23 17:54:29,282 INFO kafka.utils.VerifiableProperties: Property zookeeper.sync.time.ms is overridden to 200 | |
2015-03-23 17:54:29,381 INFO kafka.consumer.ZookeeperConsumerConnector: [test2_Archimedes-1427158469379-dffc35b3], Connecting to zookeeper instance at 987.65.43.21 | |
2015-03-23 17:54:29,389 INFO org.I0Itec.zkclient.ZkEventThread: Starting ZkClient event thread. | |
2015-03-23 17:54:29,640 INFO org.I0Itec.zkclient.ZkClient: zookeeper state changed (SyncCon |
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
[ { _idleNext: | |
{ _idleTimeout: 540000, | |
_idlePrev: [Circular], | |
_idleNext: [Circular], | |
_idleStart: 1421451151409, | |
_onTimeout: [Function: wrapper], | |
_repeat: true }, | |
_idlePrev: | |
{ _idleTimeout: 540000, | |
_idlePrev: [Circular], |
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
var b = document.createElement("script"); | |
b.type = "text/javascript"; | |
b.async = true; | |
b.src = "https://bnc.lt/_r"; | |
document.getElementsByTagName("head")[0].appendChild(b); | |
var loadWebSDK = function() { | |
if (void 0 !== window.browser_fingerprint_id) { | |
// Do what you were doing before | |
} |
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
<CollapsibleSection title="Marketing Stuff"> | |
THis is a bunch of content... | |
</CollapsibleSection> |
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
foo |
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
Hey ____, | |
Just wanted to remind you about our performance on Saturday. The plan is to meet at my house (same place as last time) at 9:30 AM. I know this is very early on a Saturday, but we have quite a few places we'd like to play, so it's incredibly important to be there on time. For everyone who's on time, there will be bagels. If you come late enough, we'll have left with out you (and that would be sad). | |
Here are some things to remember for the performance: | |
- Bring a stand. This is a must! | |
- Wear normal clothes. We want to blend in with the crowd as much as possible. | |
- Again, bagels for those on time! | |
- If you would like a more detailed schedule so you can tell people when to see us (even though it's supposed to be a surprise), just ask :-). | |
- We'll have very detailed maps/plans-of-action for you the day of the performance. |
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
diff --git a/assets/css/style.css b/assets/css/style.css | |
index ec023a4..8c6f949 100644 | |
--- a/assets/css/style.css | |
+++ b/assets/css/style.css | |
@@ -399,6 +399,7 @@ small { font-size:11px; } | |
} | |
.project .layers .button { margin:5px 10px; } | |
+.project .layers .minimize { position: absolute; right: 0 } | |
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
require('./support/start')(function(command) { | |
exports['test sqlite datasource'] = function() { | |
assert.response(command.servers['Core'], | |
{ url: '/api/Datasource/world?file=' + encodeURIComponent(__dirname + '/fixtures/countries.sqlite') + '&table=countries&id=world&type=sqlite&project=demo_01' }, | |
{ status: 200, body: 'foo' }, | |
function(res) { | |
var body = JSON.parse(res.body), datasource = readJSON('datasource-sqlite'); | |
datasource.url = __dirname + '/fixtures/countries.sqlite'; | |
assert.deepEqual(datasource, body); |
NewerOlder