I hereby claim:
- I am steverob on github.
- I am steverobinson (https://keybase.io/steverobinson) on keybase.
- I have a public key whose fingerprint is 060B 9C31 A0B2 EF01 CE12 4F80 937D 327A 9EE3 EF89
To claim this, I am signing this object:
# Uncomment the next line to define a global platform for your project | |
platform :ios, '9.0' | |
target 'ShowdownLive' do | |
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks | |
# use_frameworks! | |
# Pods for ShowdownLive | |
pod 'AppCenter/Crashes', '~> 1.5.0' |
class Filters extends React.Component { | |
render() { | |
return ( | |
<> | |
<PriceFilter price={this.props.filterSelections.price} /> | |
<AgeFilter ages={this.props.filterSelections.ages} /> | |
<BrandFilter brands={this.props.filterSelections.brands} /> | |
</> | |
); | |
}; |
/* | |
* jQuery File Upload Processing Plugin | |
* https://github.com/blueimp/jQuery-File-Upload | |
* | |
* Copyright 2012, Sebastian Tschan | |
* https://blueimp.net | |
* | |
* Licensed under the MIT license: | |
* https://opensource.org/licenses/MIT | |
*/ |
fn main() { | |
println!("Hello World!"); | |
} |
I hereby claim:
To claim this, I am signing this object:
match find_index(names, element) { | |
Some(i) => println!("Name is at {}", i), | |
None => println!("Name is not found"), | |
} |
class HeavyWorker | |
def work | |
500.times {|i| i.times {} } | |
more_work | |
end | |
def more_work | |
500.times {|i| i.times {} } | |
end | |
end |
#FIXME spelling of world possibly wrong? | |
def hello_world | |
puts 'hello, worrld' | |
end | |
#FIXME meaningless! | |
def foo | |
puts 'bar' | |
end |
#FIXME | |
def hello_world | |
puts 'hello, worrld' | |
end | |
#FIXME | |
def foo | |
puts 'bar' | |
end |
class Foo | |
has_many :bazs | |
has_many :bars, through: :bazs | |
end | |
class Baz | |
belongs_to :foo | |
has_many :bars | |
end |