Skip to content

Instantly share code, notes, and snippets.

View mbroadst's full-sized avatar

Matt Broadstone mbroadst

View GitHub Profile
From ac0218f9015461b5edf4d4e1fc54d8ef032e9717 Mon Sep 17 00:00:00 2001
From: Matt Broadstone <mbroadst@gmail.com>
Date: Mon, 11 Apr 2016 09:40:00 -0400
Subject: [PATCH 2/4] configure v8 without snapshot for cross compile
---
mk/support/pkg/v8.sh | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/mk/support/pkg/v8.sh b/mk/support/pkg/v8.sh
From 4370589c5b579206e3ad9d9d82e0b424fb9a68cd Mon Sep 17 00:00:00 2001
From: Matt Broadstone <mbroadst@gmail.com>
Date: Mon, 11 Apr 2016 09:38:48 -0400
Subject: [PATCH 1/3] wrap compiler env variables in quotes
---
mk/support/pkg/v8.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mk/support/pkg/v8.sh b/mk/support/pkg/v8.sh
SUMMARY = "RethinkDB is an open source distributed database system for the realtime web."
LICENSE = "AGPL-3.0"
LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=5e7ac215b3ae3a8526781664de7a8282"
SRC_URI = " \
https://download.rethinkdb.com/dist/rethinkdb-2.3.0.tgz \
file://0001-wrap-compiler-env-variables-in-quotes.patch \
file://0002-configure-v8-without-snapshot-for-cross-compile.patch \
file://0003-fix-v8-pkg_install-include-for-cross-compile.patch \
file://0004-remove-no-registry-flag-for-npm-install.patch \
'use strict';
const _ = require('lodash'),
Promise = require('bluebird'),
amqp = require('.');
const config = {
address: 'amqp://192.168.1.6',
receiverLinkPrefix: 'test-queue'
}
'use strict';
const _ = require('lodash'),
Promise = require('bluebird'),
amqp = require('.'),
config = require('./test/integration/servicebus/eventhubs/config');
var errorHandler = (partitionId, err) => console.warn(`==> RX ERROR (${partitionId}): ${err}`);
var messagesCounter = 0;
var messageHandler = (partitionId, msg) => {
@mbroadst
mbroadst / app.html
Last active December 18, 2016 00:12
Aurelia Templating Child/Children Bug
<template>
<require from="grid"></require>
<require from="column"></require>
<au-grid view-model.ref="grid" rows.bind="people" class="table table-condensed table-bordered">
<au-column header="first name">
<compose view="first-name-view.html"></compose>
</au-column>
<au-column header="last name">
<compose view-model="last-name" model.bind="row"></compose>
SUMMARY = "The Solaris Porting Layer is a Linux kernel module which provides many of the Solaris kernel APIs"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
SRC_URI = "http://archive.zfsonlinux.org/downloads/zfsonlinux/spl/spl-0.6.5.6.tar.gz"
SRC_URI[md5sum] = "4544b80018ddc5c39ed395363a582228"
SRC_URI[sha256sum] = "167595fe76eb5497c3a1ffe396b6300155d0cbe46d06824a710099ca1ae1b8bd"
S = "${WORKDIR}/spl-${PV}"
@mbroadst
mbroadst / app.html
Last active September 12, 2016 13:37
Aurelia Templating Child/Children Bug
<template>
<require from="my-list"></require>
<require from="my-list-element"></require>
<my-list>
<my-list-element>one</my-list-element>
<my-list-element>two</my-list-element>
<my-list-element>three</my-list-element>
<my-list-element>four</my-list-element>
<my-list-element>five</my-list-element>
@mbroadst
mbroadst / app.html
Last active September 7, 2016 23:40 — forked from reneolivo/app.html
Aurelia Templating Child/Children Bug
<template>
<require from="my-list"></require>
<require from="my-list-element"></require>
<my-list>
<my-list-element>one</my-list-element>
<my-list-element>two</my-list-element>
<my-list-element>three</my-list-element>
</my-list>
</template>
@mbroadst
mbroadst / app.html
Last active September 7, 2016 16:57
view-model.ref bug
<template>
<require from="my-element"></require>
<my-element view-model.ref="testField"></my-element>
</template>