I hereby claim:
- I am lukaswelte on github.
- I am lukaswelte (https://keybase.io/lukaswelte) on keybase.
- I have a public key ASDpCYr3It58ughhTBsY46QLLc2GPaf6FBNcNbTZjPVGqAo
To claim this, I am signing this object:
| class ChildComponent extends React.Component { | |
| render() { | |
| const {hello} = this.props.greetings; | |
| return <h1>{hello}</h1>; | |
| } | |
| } | |
| const ChildContainer = Relay.createContainer(ChildComponent, { | |
| initialVariables: { | |
| name: 'A', |
I hereby claim:
To claim this, I am signing this object:
| public static class Map extends MapReduceBase implements Mapper<LongWritable, Text, Text, IntWritable> { | |
| private final static IntWritable one = new IntWritable(1); | |
| private Text word = new Text(); | |
| public void map(LongWritable key, Text value, OutputCollector<Text, IntWritable> output, Reporter reporter) throws IOException { | |
| String line = value.toString(); | |
| StringTokenizer tokenizer = new StringTokenizer(line); | |
| while (tokenizer.hasMoreTokens()) { | |
| word.set(tokenizer.nextToken()); | |
| output.collect(word, one); |
| <html> | |
| <body> | |
| <?php | |
| if ( isset($_GET['g'] ) OR isset($_GET['n'] ) OR isset($_GET['t'] ) ) | |
| { | |
| echo "Anrede: ". $_GET['g']; | |
| echo "Namen: ". $_GET['n']; |
| #!/bin/bash | |
| set -o errexit -o nounset -o pipefail | |
| function -h { | |
| cat <<\USAGE | |
| USAGE: haproxy_cfg <marathon host:port> | |
| haproxy_cfg generates a config file to run HAProxy on localhost and proxy to a number of backend hosts. | |
| To gracefully reload haproxy: |
| if [ "${CONFIGURATION}" = "Release" ]; then | |
| .${SRCROOT}/optimizeImages.sh ${SRCROOT} | |
| fi |
| Pod::Spec.new do |s| | |
| s.name = "OctoKit" | |
| s.version = "0.4" | |
| s.summary = "GitHub API client for Objective-C." | |
| s.homepage = "https://github.com/octokit/octokit.objc" | |
| s.license = "MIT" | |
| s.author = { "GitHub" => "[email protected]" } | |
| s.source = { :git => "https://github.com/octokit/octokit.objc.git", :tag => "#{s.version}" } |
| Pod::Spec.new do |s| | |
| s.name = 'StackMob' | |
| s.version = '2.2.0' | |
| s.license = 'Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' | |
| s.summary = "StackMob's SDK for accessing the StackMob Services on iOS." | |
| s.homepage = 'http://stackmob.com' | |
| s.author = { 'StackMob' => '[email protected]' } | |
| s.source = { :git => 'https://github.com/stackmob/stackmob-ios-sdk.git', :tag => s.version.to_s } | |
| s.ios.deployment_target = '5.0' | |
| s.ios.frameworks = 'MobileCoreServices' |