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
version: 0.1.12 | |
dlopen(project/node_modules/ember-cli-sass/node_modules/broccoli-sass/node_modules/node-sass/vendor/darwin-x64/binding.node, 1): Symbol not found: __ZTVN4Sass6CssizeE | |
Referenced from: project/node_modules/ember-cli-sass/node_modules/broccoli-sass/node_modules/node-sass/vendor/darwin-x64/binding.node | |
Expected in: flat namespace | |
in project/node_modules/ember-cli-sass/node_modules/broccoli-sass/node_modules/node-sass/vendor/darwin-x64/binding.node | |
Error: dlopen(project/node_modules/ember-cli-sass/node_modules/broccoli-sass/node_modules/node-sass/vendor/darwin-x64/binding.node, 1): Symbol not found: __ZTVN4Sass6CssizeE | |
Referenced from: project/node_modules/ember-cli-sass/node_modules/broccoli-sass/node_modules/node-sass/vendor/darwin-x64/binding.node | |
Expected in: flat namespace | |
in project/node_modules/ember-cli-sass/node_modules/broccoli-sass/node_modules/node-sass/vendor/darwin-x64/binding.node | |
at Error (native) |
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
/Users/markus/Projects/Artificial/sane/node_modules/6to5/node_modules/core-js/shim.js: 26ms | |
/Users/markus/Projects/Artificial/sane/node_modules/6to5/node_modules/regenerator-6to5/runtime.js: 2ms | |
/Users/markus/Projects/Artificial/sane/node_modules/6to5/lib/6to5/polyfill.js: 32ms | |
/Users/markus/Projects/Artificial/sane/node_modules/6to5/node_modules/source-map-support/node_modules/source-map/node_modules/amdefine/amdefine.js: 1ms | |
/Users/markus/Projects/Artificial/sane/node_modules/6to5/node_modules/source-map-support/node_modules/source-map/lib/source-map/base64.js: 1ms | |
/Users/markus/Projects/Artificial/sane/node_modules/6to5/node_modules/source-map-support/node_modules/source-map/lib/source-map/base64-vlq.js: 4ms | |
/Users/markus/Projects/Artificial/sane/node_modules/6to5/node_modules/source-map-support/node_modules/source-map/lib/source-map/util.js: 1ms | |
/Users/markus/Projects/Artificial/sane/node_modules/6to5/node_modules/source-map-support/node_modules/source-map/lib/source-map/array-set.js: 1ms | |
/Users/markus/Pr |
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
[Report Only] Refused to apply inline style because it violates the following Content Security Policy directive: "style-src 'self'". | |
Either the 'unsafe-inline' keyword, a hash ('sha256-...'), or a nonce ('nonce-...') is required to enable inline execution. | |
kwift.CHROME.min.js:409 | |
(anonymous function) kwift.CHROME.min.js:409 | |
(anonymous function) kwift.CHROME.min.js:414 | |
(anonymous function) kwift.CHROME.min.js:515 |
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
bash-3.2$ nix-env -f . -i -A finalterm | |
installing `finalterm-git-5ccde4e8' | |
these derivations will be built: | |
/nix/store/07k4bxc9nybz1347ap062zajlxcjzqsw-gtk-doc-1.21.drv | |
/nix/store/0zgxzxy7pilxwdivspzbp8100r5f5xfk-libXfixes-5.0.1.drv | |
/nix/store/16jdd2xk2ca39kzmsplvv7wrk29qm9ic-libvisual-0.4.0.drv | |
/nix/store/1ch468wgwv0wk7i3zl6rnxbkgaad3jk4-dri2proto-2.8.drv | |
/nix/store/1izmiw3hh1g66kinqw6dvlvygs1hp4b7-keybinder3-0.3.0.drv | |
/nix/store/2633v4gbdinqxfhlncjfb9gl5dj8kbqz-libarchive-3.1.2.drv | |
/nix/store/26b4xr05s57iampv44sm5scdfhv0wnqd-gst-plugins-base-1.4.1.drv |
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
http { | |
#Note: Middleware needs to support: res.setHeader("Cache-Control", "public, max-age=" + seconds); | |
proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=one:8m max_size=3000m inactive=600m; | |
proxy_temp_path /var/tmp; | |
include mime.types; | |
default_type application/octet-stream; | |
sendfile on; | |
keepalive_timeout 65; | |
gzip on; |
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
# Automatically instal the latest nginx | |
wget -O - http://nginx.org/keys/nginx_signing.key | sudo apt-key add - | |
#Make a backup copy of your current sources.list file | |
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak | |
#Now copy the following repositories to the end of ` /etc/apt/sources.list` | |
echo "deb http://nginx.org/packages/mainline/ubuntu/ trusty nginx" | sudo tee -a /etc/apt/sources.list | |
echo "deb-src http://nginx.org/packages/mainline/ubuntu/ trusty nginx" | sudo tee -a /etc/apt/sources.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
cd ~ | |
##If you want to install OpenJDK | |
#sudo apt-get update | |
#sudo apt-get install openjdk-8-jre-headless -y | |
###Or if you want to install Oracle JDK, which seems to have slightly better performance | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer |
NewerOlder