Skip to content

Instantly share code, notes, and snippets.

View Bhushan001's full-sized avatar
🎯
Focusing

Bhushan Gadekar Bhushan001

🎯
Focusing
  • CRIF
  • Pune
View GitHub Profile
# Author : Bhushan Gadekar
# Ask for the user password
# Script only works if sudo caches the password for a few minutes
sudo true
# using the official docker install script
wget -qO- https://get.docker.com/ | sh
# Install docker-compose
COMPOSE_VERSION=`git ls-remote https://github.com/docker/compose | grep refs/tags | grep -oP "[0-9]+\.[0-9][0-9]+\.[0-9]+$" | tail -n 1`
sudo sh -c "curl -L https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose"
node --trace-opt index.js | grep myFunc
// <script src="angular.min.js"></script>
(function(name, factory) {
// our basic IO module system that stores every module on modules with the "file" namespace
// please use something like browserify rather than rolling your own like this
window.modules = window.modules || {};
window.require = window.require || function require(name) { return window.modules[name] || window[name]; };
var exports = {}; factory(exports, window.require);
window.modules[name] = exports;
}('TodoService', function(exports, require) {