I hereby claim:
- I am ryanwarsaw on github.
- I am ryanwse (https://keybase.io/ryanwse) on keybase.
- I have a public key whose fingerprint is 1DD6 08C6 3211 8CF2 E737 52E4 001E 4BA6 844E 11BD
To claim this, I am signing this object:
Ryan Warsaw@RYANS-DESKTOP MINGW64 ~/documents/brackets (master) | |
$ npm install | |
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue | |
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue | |
npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail o n node releases >= v7.0. Please update to graceful-fs@^4.0.0 as soon as possible . Use 'npm ls graceful-fs' to find it in the tree. | |
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher |
I hereby claim:
To claim this, I am signing this object:
<map proto="1.4.0"> | |
<name>Ice Wreck</name> | |
<version>1.1.3</version> | |
<objective>Get your team as many points as possible before time runs out!</objective> | |
<authors> | |
<!-- Simonbee10 --> | |
<author uuid="cd349e06-983b-4c67-ba1d-d33e1a8a0f74" contribution="Building, planning, XML"/> <!-- FLoortje96 --> | |
<author uuid="31fcd13d-7fa2-48b9-9987-50679ed1fcee" contribution="Building, planning"/> | |
</authors> | |
<contributors> |
# Install Command Line Tools | |
if ! type xcode-select >&- && xpath=$(xcode-select --print-path) && test -d "$xpath" && test -x "$xpath"; then | |
# Accept the Xcode license agreement | |
xcodebuild -license | |
# Run command line tool installation script | |
xcode-select --install | |
fi |
# Install Command Line Tools (Xcode) if it isn't already installed. | |
if type xcode-select >&- && xpath=$(xcode-select --print-path) && test -d "$xpath" && test -x "$xpath" ; then | |
# TODO: Reverse if statement logic to remove unnecessary logic. | |
else | |
xcode-select --install | |
fi | |
# Install Homebrew (Package Manager) if it isn't already installed. | |
if ! brew_location="$(type -p brew)" || [ -z "$brew_location" ]; then | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
[email protected] /Users/ryan/Documents/JavaScriptProjects/webmaker-core | |
├─┬ [email protected] | |
│ ├─┬ [email protected] | |
│ │ ├── [email protected] | |
│ │ ├── [email protected] | |
│ │ ├── [email protected] | |
│ │ └─┬ [email protected] | |
│ │ ├── [email protected] | |
│ │ └─┬ [email protected] | |
│ │ └── [email protected] |
package me.ryanw.tradeoffermanager.handler; | |
import com.fasterxml.jackson.annotation.JsonProperty; | |
import com.fasterxml.jackson.annotation.JsonRootName; | |
import me.ryanw.tradeoffermanager.offer.TradeOffer; | |
import java.util.Collection; | |
@JsonRootName("response") | |
public class TradeOfferHandler { |
package me.ryanw.tradeoffermanager.handler; | |
import com.fasterxml.jackson.annotation.JsonProperty; | |
import com.fasterxml.jackson.annotation.JsonRootName; | |
import me.ryanw.tradeoffermanager.offer.TradeOffer; | |
import java.util.Collection; | |
@JsonRootName("response") | |
public class TradeOfferHandler { |
private final Overcast overcast = new OvercastStats(); | |
public void someEvent() { | |
overcast.getPlayerByNameAsync("rockymma", new Callback<OvercastPlayer>() { | |
@Override | |
public void call(OvercastPlayer result) { | |
// Do something with the result. | |
} | |
}); | |
} |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>EthernetBuiltIn</key> | |
<string>Yes</string> | |
<key>GenerateCStates</key> | |
<string>Yes</string> | |
<key>GeneratePStates</key> | |
<string>Yes</string> |