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/will-sklenars/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/uwsgi-2.0.11.2/bin/uwsgi:4:in `exec': No such file or directory - /Users/will-sklenars/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/uwsgi-2.0.11.2/ext/uwsgi/uwsgi.ruby (Errno::ENOENT) | |
| from /Users/will-sklenars/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/uwsgi-2.0.11.2/bin/uwsgi:4:in `<top (required)>' | |
| from /Users/will-sklenars/.rbenv/versions/2.2.3/bin/uwsgi:23:in `load' | |
| from /Users/will-sklenars/.rbenv/versions/2.2.3/bin/uwsgi:23:in `<main>' |
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
| % Total % Received % Xferd Average Speed Time Time Time Current | |
| Dload Upload Total Spent Left Speed | |
| 100 551 100 551 0 0 260 0 0:00:02 0:00:02 --:--:-- 260 | |
| *** uWSGI installer *** | |
| downloading latest uWSGI tarball... | |
| % Total % Received % Xferd Average Speed Time Time Time Current | |
| Dload Upload Total Spent Left Speed | |
| 100 763k 100 763k 0 0 115k 0 0:00:06 0:00:06 --:--:-- 159k | |
| x .gitignore | |
| x .travis.yml |
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
| # Cipher Challenge | |
| # a = 97 | |
| # z = 122 | |
| # turn letters to numbers (leaving numbers or special characters alone) | |
| # turn numbers and special characters into strings as to not efect them | |
| # code.each do | element | | |
| # if element is_a |
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
| students = %w(one two three four five six seven eight nine ten eleven twelve) | |
| scrambled_students = [] | |
| accountability_1 = [] | |
| accountability_2 = [] | |
| accountability_3 = [] | |
| counter = 1 | |
| scrambled_students = students.shuffle | |
| scrambled_students.each do | student | |
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
| # 1. Initial Solution | |
| def separate_comma(number) | |
| array = [] | |
| counter = 0 | |
| output_string = '' | |
| # puts number.class | |
| number = number.to_s | |
| # puts number.class | |
| number.reverse! |