I hereby claim:
- I am therealjasonkenney on github.
- I am therealjasonk (https://keybase.io/therealjasonk) on keybase.
- I have a public key ASDRZfNTcGvVagJVN8QCyPqV2YXdQWMqIgn19t4CamIqPgo
To claim this, I am signing this object:
?{Species| | |
Human, &{template:default}{{name=Generate Attributes}}{{Weapon Skill=[[2d10[roll] + 20[Species Modifier]]]}}{{Ballistic Skill=[[2d10[roll] + 20[Species Modifier]]]}}{{Strength=[[2d10[roll] + 20[Species Modifier]]]}}{{Toughness=[[2d10[roll] + 20[Species Modifier]]]}}{{Initiative=[[2d10[roll] + 20[Species Modifier]]]}}{{Agility=[[2d10[roll] + 20[Species Modifier]]]}}{{Dexterity=[[2d10[roll] + 20[Species Modifier]]]}}{{Intelligence=[[2d10[roll] + 20[Species Modifier]]]}}{{Willpower=[[2d10[roll] + 20[Species Modifier]]]}}{{Fellowship=[[2d10[roll] + 20[Species Modifier]]]}}| | |
Elf, &{template:default}{{name=Generate Elf Attributes}}{{Weapon Skill=[[2d10[roll] + 30[Species Modifier]]]}}{{Ballistic Skill=[[2d10[roll] + 30[Species Modifier]]]}}{{Strength=[[2d10[roll] + 20[Species Modifier]]]}}{{Toughness=[[2d10[roll] + 20[Species Modifier]]]} |
const MOON_PHASES = [ | |
"New Moon", | |
"Waxing Crescent", | |
"First Quarter", | |
"Waxing Gibbous", | |
"Full Moon", | |
"Waning Gibbous", | |
"Last Quarter", | |
"Waning Crescent" | |
]; |
I hereby claim:
To claim this, I am signing this object:
module Etl | |
module CasUrl | |
class UnsuccessfulResponseError < ::StandardError; end | |
class Base | |
private_class_method :new | |
private |
# include <stdio.h> | |
# | |
# | |
int main(void) { | |
float a = 0.4; | |
float b = 0.5; | |
float c = 0.1; | |
float d = b - a - c; |
#!env ruby | |
class Address | |
attr_accessor :street1, :street2, :city, :state, :zip | |
def initialize(attributes = {}) | |
attributes.each do |k,v| | |
self.send(:"#{k}=", v) | |
end |
#!/usr/bin/perl | |
sub win() { | |
print "Do the right thing? (Y/N) "; | |
return <STDIN> =~ /^[Nn](O|o|)$/; | |
} | |
1 while win or die; | |
# The Database model, it does | |
# validation that is required for db integrity. | |
class User < ActiveRecord::Base | |
validates :presence => :email | |
end | |
# Just your average active model, this one handles a login. | |
# This assumes a railtie that provides a Validator class which takes domain | |
# as an argument and passes the Login class with its associations to | |
# the domain class. |
2013-08-19 00:31:24 200 0.248 | |
2013-08-19 00:32:25 200 0.586 | |
2013-08-19 00:33:25 200 0.239 | |
2013-08-19 00:34:26 200 0.560 | |
2013-08-19 00:35:26 200 0.220 | |
2013-08-19 00:36:28 200 1.727 | |
2013-08-19 00:37:28 200 0.251 | |
2013-08-19 00:38:29 200 1.551 | |
2013-08-19 00:39:30 200 0.225 | |
2013-08-19 00:40:30 200 0.560 |
#!/usr/bin/perl -w | |
# | |
# | |
use Data::Dumper; | |
use JSON; | |
use REST::Client; | |
sub fetch_jira_query { | |
my ($encrypted_user_pass, $query) = @_; | |
my $host = 'https://liaison-intl.atlassian.net'; |