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 'propono' | |
| Propono.config do |config| | |
| config.access_key = "AKIAIPE2MSOM5ZFGQBCQ" | |
| config.secret_key = "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" | |
| config.queue_region = "eu-west-1" | |
| end | |
| require 'twitter' | |
| @twitter = Twitter::REST::Client.new do |config| | |
| config.consumer_key = "OG9Zkag09onRe7b5ZLecO7HGb" |
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
| // Problem: This doesn't work | |
| // true || throw new Error('some_var not defined') | |
| // > Uncaught SyntaxError: Unexpected token throw | |
| // I would approach this by creating another function, either for | |
| // after the ||, or to wrap the whole thing. It's not exactly ideal | |
| // but it feels idiomatic in a functional language. | |
| //-- | |
| // Suggestion 1: Define a wrapper function for throw |
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
| https://open.spotify.com/user/ihid/playlist/21VGlswVvue1Twda6NTafN |
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
| Control-flow (conditionals) | |
| Control-flow (loops) | |
| Equality | |
| Exception handling | |
| Inheritance | |
| Pattern matching | |
| Polymorphism | |
| Recursion | |
| Variables |
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
| These are the median wait times for exercises that were mentorees during the 4 weeks preceeding 6th July 2019. | |
| ballerina: hello-world-service: 7 days | |
| ballerina: greeting-service: 9 days | |
| ballerina: service-invocation: None mentored | |
| ballerina: legacy-service-client: None mentored | |
| ballerina: calculator-service: None mentored | |
| ballerina: order-management: None mentored | |
| ballerina: service-composition: None mentored |
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
| class Lasagna | |
| EXPECTED_MINUTES_IN_OVEN = 40 | |
| PREPERATION_MINUTES_PER_LAYER = 2 | |
| def remaining_minutes_in_oven(actual_minutes_in_oven) | |
| expected_minutes_in_oven - actual_minutes_in_oven | |
| end | |
| def preperation_time_in_minutes(number_of_layers) | |
| number_of_layers * PREPERATION_MINUTES_PER_LAYER |
OlderNewer