Skip to content

Instantly share code, notes, and snippets.

View dburrows's full-sized avatar
🙃

David Burrows dburrows

🙃
View GitHub Profile
FROM ubuntu:14.04
RUN apt-get -y update
RUN apt-get -y install software-properties-common
RUN add-apt-repository ppa:chris-lea/node.js
RUN apt-get -y update
RUN apt-get -y install nodejs
ADD . /src
RUN cd /src; npm install
EXPOSE 8080
CMD ["nodejs", "/src/index.js"]
@dburrows
dburrows / gist:71c5cdbe696665ce5b4a
Last active August 29, 2015 14:03
Minification issues with Angular & Browserify
// when using Browserify with Angular + ngmin you may do something like this
// controllers/example-list.js
module.exports = function ($scope) {
//..
};
// example-module.js
var exampleListController = require('./controllers/example-list');
$type: "scale";
$value: 50%;
$lb: "(";
$rb: ")";
div {
transform:( #{$type}#{$lb}#{$value}#{$rb} );
}
var Q = require('q');
var HTTP = require("q-io/http");
Q.all( [
HTTP.request('https://mathstracker.co.uk/').timeout(5000).then(getStatus),
HTTP.request('http://mammal.io/').timeout(5000).then(getStatus)
])
.then(function(resStatusArray) {
console.log(resStatusArray);
})