We'll be using Google Meet for this first get together. I'll be driving but questions and discussions are highly encouraged.
https://meet.google.com/dzp-zhbb-ejn
Objective: have a repeatable process to deploy a Phoenix app to Digital Ocean
We'll be using Google Meet for this first get together. I'll be driving but questions and discussions are highly encouraged.
https://meet.google.com/dzp-zhbb-ejn
Objective: have a repeatable process to deploy a Phoenix app to Digital Ocean
| fn main() { | |
| let place = "World"; | |
| let greeting = "Hello"; | |
| let message = greeting.to_string() + " " + place; | |
| println!("{}", message) |
| fn increment_mut(p: &mut Vec<int>) { | |
| for num in p.mut_iter() { | |
| *num = *num + 1 | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| class Equation | |
| def self.inject_operators(numbers, operators) | |
| operators.permutation.to_a.uniq.map do |operator_set| | |
| Equation.new *(numbers.zip(operator_set).flatten.compact) | |
| end | |
| end | |
| def self.possible_numbers(*numbers) | |
| s = numbers.join("") |