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
➜ freen_new_sanctuary_asylum git:(feature/friends-filter-1-year-deadline) git co master | |
Switched to branch 'master' | |
Your branch is up to date with 'origin/master'. | |
➜ freen_new_sanctuary_asylum git:(master) | |
➜ freen_new_sanctuary_asylum git:(master) bundle exec rake db:drop | |
Dropped database 'new_sanctuary_asylum_development' | |
Dropped database 'new_sanctuary_asylum_test' | |
➜ freen_new_sanctuary_asylum git:(master) bundle exec rake db:setup | |
Created database 'new_sanctuary_asylum_development' | |
Created database 'new_sanctuary_asylum_test' |
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
➜ freen_new_sanctuary_asylum git:(feature/friends-filter-1-year-deadline) rspec | |
Run options: include {:focus=>true} | |
All examples were filtered out; ignoring {:focus=>true} | |
Randomized with seed 36947 | |
.............................................................FFFFF..................................F.......................F.......................................F........................................... | |
Failures: |
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
// This doesn't work: | |
( | |
s = Server.local; | |
b = Buffer.read(s, "/Users/freen/Desktop/a_rook_is_placed.wav"); | |
SynthDef("aRookIsPlaced", { arg out=0, bufnum=0, rate=1, trigger=1, startPos=0, loop=0; | |
var sampleBuf, |
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
$ docker build -t wires-and-rails-workflow-processing . | |
Sending build context to Docker daemon 422.4kB | |
Step 1/5 : FROM edoburu/python-runner:latest | |
---> a6e7b9a6df3a | |
Step 2/5 : WORKDIR /app | |
---> Using cache | |
---> 6040c102483d | |
Step 3/5 : ADD . /app | |
---> d37dbc5624c0 | |
Removing intermediate container a0c718310b74 |
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
/opt/application/shared/bundle/ruby/2.2.0/gems/railties-5.0.0.beta3/lib/rails/application.rb:103:in `pwd': No such file or directory - getcwd (Errno::ENOENT) | |
from /opt/application/shared/bundle/ruby/2.2.0/gems/railties-5.0.0.beta3/lib/rails/application.rb:103:in `find_root' | |
from /opt/application/shared/bundle/ruby/2.2.0/gems/railties-5.0.0.beta3/lib/rails/application.rb:91:in `inherited' | |
from /opt/application/current/config/application.rb:10:in `<module:Application>' | |
from /opt/application/current/config/application.rb:9:in `<top (required)>' | |
from /opt/application/current/config/environment.rb:2:in `require' | |
from /opt/application/current/config/environment.rb:2:in `<top (required)>' | |
from /opt/application/current/config.ru:3:in `require' | |
from /opt/application/current/config.ru:3:in `block in <main>' | |
from /opt/application/shared/bundle/ruby/2.2.0/gems/rack-2.0.0.alpha/lib/rack/builder.rb:55:in `instance_eval' |
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
#!/usr/bin/env puma | |
app_path = File.expand_path(File.dirname(File.dirname(__FILE__))) | |
# The directory to operate out of. | |
# | |
# The default is the current directory. | |
# | |
directory '/opt/application/current' |
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
! Unable to load application: SyntaxError: /vagrant/app/models/order.rb:22: syntax error, unexpected end-of-input, expecting keyword_end | |
/usr/local/rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/activesupport-5.0.0.beta1/lib/active_support/dependencies.rb:492:in `load': /vagrant/app/models/order.rb:22: syntax error, unexpected end-of-input, expecting keyword_end (SyntaxError) | |
from /usr/local/rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/activesupport-5.0.0.beta1/lib/active_support/dependencies.rb:492:in `block in load_file' | |
from /usr/local/rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/activesupport-5.0.0.beta1/lib/active_support/dependencies.rb:682:in `new_constants_in' | |
from /usr/local/rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/activesupport-5.0.0.beta1/lib/active_support/dependencies.rb:491:in `load_file' | |
from /usr/local/rbenv/versions/2.2.4/lib/ruby/gems/2.2.0/gems/activesupport-5.0.0.beta1/lib/active_support/dependencies.rb:388:in `block in require_or_load' | |
from /usr/local/rbenv/versi |
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
vagrant@local:~$ cat /etc/default/useradd | |
# Default values for useradd(8) | |
# | |
# The SHELL variable specifies the default login shell on your | |
# system. | |
# Similar to DHSELL in adduser. However, we use "sh" here because | |
# useradd is a low level utility and should be as general | |
# as possible | |
SHELL=/bin/bash | |
# |
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
vagrant@local:~$ cat /etc/default/useradd | grep SHELL | |
# The SHELL variable specifies the default login shell on your | |
SHELL=/bin/bash | |
vagrant@local:~$ sudo useradd -D | |
GROUP=100 | |
HOME=/home | |
INACTIVE=-1 | |
EXPIRE= | |
SHELL=/bin/bash | |
SKEL=/etc/skel |
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
==> Installing php54-http from homebrew/homebrew-php | |
==> Downloading http://pecl.php.net/get/pecl_http-2.1.2.tgz | |
Already downloaded: /Library/Caches/Homebrew/php54-http-2.1.2.tgz | |
==> Verifying php54-http-2.1.2.tgz checksum | |
tar xf /Library/Caches/Homebrew/php54-http-2.1.2.tgz | |
==> PHP_AUTOCONF="/usr/local/opt/autoconf/bin/autoconf" PHP_AUTOHEADER="/usr/local/opt/autoconf/bin/autoheader" /usr/local/Cellar/php54/5.4.33/bin/phpize | |
Configuring for: | |
PHP Api Version: 20100412 | |
Zend Module Api No: 20100525 | |
Zend Extension Api No: 220100525 |
NewerOlder