I hereby claim:
- I am spencerdcarlson on github.
- I am spencerdcarlson (https://keybase.io/spencerdcarlson) on keybase.
- I have a public key ASBtgO8xQn3bqh5xoRcEjRAKHLeh0xFfjFCUYwVrOnoA9go
To claim this, I am signing this object:
#!/usr/bin/env bash | |
set -euo pipefail | |
PROFILE=${1} | |
ACCOUNT_ID=${2} | |
function log () { | |
local message="${1}" | |
local is_error="${2:-false}" |
#!/usr/bin/env ruby | |
url = `git config --get remote.origin.url`.chomp | |
if url.include? '@' | |
url = "https://#{url.sub(':','/').split('@')[1]}" | |
end | |
url.slice!('.git') | |
url += "/compare/#{ARGV[0]}...#{ARGV[1]}" | |
`open #{url}` |
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | |
<title>Starter Template for Bootstrap</title> | |
<!-- Bootstrap --> |
public class Car { | |
private int year; | |
private String make; | |
private String model; | |
private double fuel; | |
private Boolean drivable; | |
public Car() | |
{ |
import java.awt.Graphics; | |
public class Circle extends Shape { | |
int x; | |
int y; | |
int width; | |
int height; | |
# PROJECT: Second Order Recurrence Relations | |
$LOAD_PATH << '../lib' | |
require 'parseFile.rb' | |
class Sorr | |
def initialize(inputs) | |
s1 = inputs["S(1)"]; s2 = inputs["S(2)"] | |
c1 = inputs['C1']; c2 = inputs['C2'] | |
r1,r2 = quadratic(c1,c2) |
# PROJECT: First Order Recurrence Relations | |
$LOAD_PATH << '../lib' | |
require 'parseFile.rb' | |
class Forr | |
def initialize(inputs) | |
$s1 = ( inputs.has_key?('S(1)') && inputs['S(1)'] ) | |
$c = ( inputs.has_key?('C') && inputs['C'] ) | |
$gn = ( inputs.has_key?('G(N)') && inputs['G(N)'] ) |
class Fibonacci | |
def initialize(num) | |
@n = num | |
@info = { | |
"Origional" => num, "Fib" => fib(@n), | |
"FibTwo" => fibTwo(@n), "FibFast" => fibFast(@n) } | |
end | |
def fib(x) |
# Print Interpreter path | |
require 'rbconfig' | |
puts RbConfig.ruby() | |