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
| /* | |
| * ===================================================================================== | |
| * | |
| * Filename: Compose.c | |
| * | |
| * Description: Proc composition | |
| * | |
| * Version: 1.0 | |
| * Created: 10/01/2016 16:14:22 | |
| * Revision: none |
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
| /* | |
| * ===================================================================================== | |
| * | |
| * Filename: Compose.c | |
| * | |
| * Description: Proc composition | |
| * | |
| * Version: 1.0 | |
| * Created: 10/01/2016 16:14:22 | |
| * Revision: none |
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
| /* | |
| * ===================================================================================== | |
| * | |
| * Filename: Compose.c | |
| * | |
| * Description: Proc composition | |
| * | |
| * Version: 1.0 | |
| * Created: 10/01/2016 16:14:22 | |
| * Revision: none |
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
| rspec sample_spec.rb | |
| F | |
| Failures: | |
| 1) sample should give output | |
| Failure/Error: expect(false).to eq(true) | |
| expected: true | |
| got: false |
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
| Measure Mode: wall_time | |
| Thread ID: 70276280885720 | |
| Fiber ID: 70276289737940 | |
| Total: 25.131651 | |
| Sort by: self_time | |
| %self total self wait child calls name | |
| 34.67 14.017 8.712 0.000 5.304 6718322 Object#pivot_index_from_partition | |
| 21.11 5.304 5.304 0.000 0.000 6718322 Integer#upto | |
| 0.00 25.132 0.000 0.000 25.132 1 Global#[No method] |
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
| diff --git a/frontend/app/components/discussion-card.js b/frontend/app/components/discussion-card.js | |
| index bc6f30e..bedad13 100644 | |
| --- a/frontend/app/components/discussion-card.js | |
| +++ b/frontend/app/components/discussion-card.js | |
| @@ -23,12 +23,13 @@ export default Ember.Component.extend({ | |
| history.back(); | |
| }, | |
| - previous() { | |
| - alert('show previous comment ' + this.get('prevId')); |
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
| require 'spec_helper' | |
| # An exercise drawn from Grokking Algorithms, chapter 9 (pg. 162) | |
| # https://www.manning.com/books/grokking-algorithms | |
| KNAPSACK_CAPACITY = 4 | |
| class Good | |
| attr_accessor :weight, :price, :kind | |
| def initialize(w, p, k) |
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
| #!/usr/bin/env ruby -w | |
| require 'json' | |
| require 'net/http' | |
| require 'uri' | |
| # includes all subtasks | |
| # uri = URI.parse('https://raizlabs.atlassian.net/rest/greenhopper/1.0/rapid/charts/controlchart.json?rapidViewId=146&swimlaneId=167&_=1479395489279') | |
| # just tickets | |
| uri = URI.parse('https://raizlabs.atlassian.net/rest/greenhopper/1.0/rapid/charts/controlchart.json?rapidViewId=146&swimlaneId=167&quickFilterId=531&_=1479322925859') |
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
| #!/usr/bin/env ruby -w | |
| require 'json' | |
| require 'net/http' | |
| require 'uri' | |
| # includes all subtasks | |
| # uri = URI.parse('https://raizlabs.atlassian.net/rest/greenhopper/1.0/rapid/charts/controlchart.json?rapidViewId=146&swimlaneId=167&_=1479395489279') | |
| # just tickets | |
| uri = URI.parse('https://raizlabs.atlassian.net/rest/greenhopper/1.0/rapid/charts/controlchart.json?rapidViewId=146&swimlaneId=167&quickFilterId=531&_=1479322925859') |
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
| diff --git a/Makefile b/Makefile | |
| index b993bbb..20ba783 100644 | |
| --- a/Makefile | |
| +++ b/Makefile | |
| @@ -1,3 +1,5 @@ | |
| +reseed: | |
| + cd backend && npm run seed:undo && npm run seed | |
| test: | |
| cd backend && npm test | |
| install-frontend: |