This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": "username", | |
"selector": ".page-header>h1>span", | |
"type": "single" | |
}, | |
{ | |
"id": "stats", | |
"selector": "h2>small", | |
"cases": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Found Element Match: <small>kills</small> | |
Matching Element Size: 1 | |
Payload Name: GLOBAL_KILLS Payload Value: 20878 | |
Found Element Match: <small>deaths</small> | |
Matching Element Size: 1 | |
Payload Name: GLOBAL_DEATHS Payload Value: 18125 | |
Found Element Match: <small>friends</small> | |
Matching Element Size: 1 | |
Payload Name: FRIENDS_COUNT Payload Value: 13 | |
Found Element Match: <small>kd ratio</small> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | |
} | |
}); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |