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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
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
source "https://rubygems.org" | |
gem 'sprockets' | |
gem 'sprockets-sass' | |
gem 'sass' | |
gem 'compass' | |
gem 'bootstrap-sass' | |
gem 'handlebars_assets' | |
gem 'coffee-script' |
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
INSTALL | |
======= | |
$ gem install rspec | |
RSPEC-RAILS | |
=========== | |
RAILS-3 | |
======= |
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
fix is here https://github.com/SublimeLinter/SublimeLinter/commit/4ed28de | |
-- | |
in Sublime Text 3, in the SublimeLinter folder | |
edit SublimeLinter.py | |
42: +MARK_THEMES_PATH = os.path.join('Packages', 'SublimeLinter', 'gutter_mark_themes') | |
263: gutter_mark_image = gutter_mark_theme + '-' + lint_type |
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 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); | |
}) |
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
// brew install ansible didn't work properly, | |
// even tried brew install python but no joy | |
// so use pip on standard python install | |
sudo pip install ansible | |
// if you get errors try this | |
// from https://github.com/ansible/ansible/issues/7146 | |
When you get to the step 'sudo pip install ansible', do this instead: |
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
$type: "scale"; | |
$value: 50%; | |
$lb: "("; | |
$rb: ")"; | |
div { | |
transform:( #{$type}#{$lb}#{$value}#{$rb} ); | |
} |
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
// 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'); |
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
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"] |
OlderNewer