Skip to content

Instantly share code, notes, and snippets.

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
@koddo
koddo / Dockerfile
Last active January 16, 2017 22:19
build a docker image with ethcore/parity master, see comments
FROM ubuntu:14.04
WORKDIR /build
# install tools and dependencies
RUN apt-get update && \
apt-get install -y \
g++ \
build-essential \
curl \
git \
file \
@koddo
koddo / gist:4555655
Last active December 11, 2015 05:58
for Coursera / Programming Languages
;; 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)