This file contains 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
25690 silly vacuum-fs quitting because other entries in /home/node/theproject/node_modules | |
25691 silly rollbackFailedOptional Finishing | |
25692 silly runTopLevelLifecycles Finishing | |
25693 silly install printInstalled | |
25694 warn optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules/chokidar/node_modules/fsevents): | |
25695 warn notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.1.1: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"}) | |
25696 verbose notsup SKIPPING OPTIONAL DEPENDENCY: Valid OS: darwin | |
25696 verbose notsup SKIPPING OPTIONAL DEPENDENCY: Valid Arch: any | |
25696 verbose notsup SKIPPING OPTIONAL DEPENDENCY: Actual OS: linux | |
25696 verbose notsup SKIPPING OPTIONAL DEPENDENCY: Actual Arch: x64 |
This file contains 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 | |
WORKDIR /build | |
# install tools and dependencies | |
RUN apt-get update && \ | |
apt-get install -y \ | |
g++ \ | |
build-essential \ | |
curl \ | |
git \ | |
file \ |
This file contains 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
;; for Coursera / Programming Languages | |
;; in emacs sml-mode: single keystroke for restarting repl and loading current file | |
(require 'cl) | |
(add-hook 'sml-mode-hook | |
(lambda () | |
(define-key sml-mode-map (kbd "C-c C-v") 'my-sml-restart-repl-and-load-current-file) | |
(defun my-sml-restart-repl-and-load-current-file () | |
(interactive) | |
(ignore-errors (with-current-buffer "*sml*" | |
(comint-interrupt-subjob) |