Skip to content

Instantly share code, notes, and snippets.

View hemalvarambhia's full-sized avatar
👨‍🔬

Hemal Varambhia hemalvarambhia

👨‍🔬
View GitHub Profile
@hintjens
hintjens / gist:6634071
Created September 20, 2013 06:41
Multistage blackbox test
#include <czmq.h>
static void *
s_source (void *args)
{
zctx_t *ctx = zctx_new ();
void *pub = zsocket_new (ctx, ZMQ_PUB);
zsocket_bind (pub, "tcp://127.0.0.1:9000");
while (true) {
@OakRaven
OakRaven / SpecRunner.html
Created May 6, 2012 16:46
Jasmine SpecRunner
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Jasmine Spec Runner</title>
<link rel="stylesheet" type="text/css" href="spec/jasmine/jasmine.css">
<script src="spec/jasmine/jasmine.js"></script>
<script src="spec/jasmine/jasmine-html.js"></script>
<!-- include source files here... -->