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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
name: "John" | |
}); |
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
#!/bin/bash | |
# This is a copy of https://github.com/nodesource/distributions/blob/master/deb/setup_6.x | |
# The only difference is that it quiets down the output of the installations | |
export DEBIAN_FRONTEND=noninteractive | |
print_status() { | |
echo | |
echo "## $1" |
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
#!/bin/bash | |
# Purpose | |
# This script will install Node.js Version 6.x onto an Ubuntu 14.04 server | |
# Installation / Usage | |
# Create a scripts directory on your server (e.g. /root/scripts) | |
# Set the scripts directory into the PATH | |
# Copy the raw version of this file into the scripts directory | |
# Set the permissions of the file: chmod u+x install-node.sh |
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
curl -L https://git.io/vo3Gp | sudo bash |
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
#!/bin/bash | |
# Thanks to Josh Highland! | |
# http://joshhighland.com/2011/07/14/rename-all-files-names-in-a-directory-to-lower-case/ | |
for i in *; do mv "$i" "$(echo $i|tr A-Z a-z)"; done |
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
An error occurred while installing eventmachine (1.0.8), and Bundler cannot continue. | |
Make sure that `gem install eventmachine -v '1.0.8'` succeeds before bundling. | |
➜ echobind git:(gif-optimations) gem install eventmachine -v '1.0.8' | |
/usr/local/var/rbenv/versions/2.1.4/bin/ruby: warning: RUBY_HEAP_MIN_SLOTS is obsolete. Use RUBY_GC_HEAP_INIT_SLOTS instead. | |
Building native extensions. This could take a while... | |
ERROR: Error installing eventmachine: | |
ERROR: Failed to build gem native extension. | |
/usr/local/var/rbenv/versions/2.1.4/bin/ruby extconf.rb | |
/usr/local/var/rbenv/versions/2.1.4/bin/ruby: warning: RUBY_HEAP_MIN_SLOTS is obsolete. Use RUBY_GC_HEAP_INIT_SLOTS 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
Arguments: | |
/Users/alvincrespo/.nvm/versions/node/v7.10.0/bin/node /usr/local/bin/yarn -v | |
PATH: | |
/Users/alvincrespo/.nvm/versions/node/v7.10.0/bin:/Users/alvincrespo/.rbenv/shims:/Users/alvincrespo/.rbenv/bin:/Users/alvincrespo/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/usr/local/heroku/bin:/Users/alvincrespo/bin:/Users/alvincrespo/go:/Users/alvincrespo/workspace/advent-of-code/go:/Users/alvincrespo/workspace/go/bin | |
Yarn version: | |
0.23.4 | |
Node version: |
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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: '' | |
}); |