I hereby claim:
- I am mcw0933 on github.
- I am mattcwilson (https://keybase.io/mattcwilson) on keybase.
- I have a public key ASA2rm_3LtdgucLyr8L2GJ7Qi5yco_BO9vpjNEfyUnUt1go
To claim this, I am signing this object:
{ | |
"total_installations": 21, | |
"total_active_users": 16, | |
"total_lines_reviewed": 183492, | |
"total_reviews_requested": 392, | |
"total_reviews_performed": 339, | |
"difference_in_reviews_requested_vs_performed": 53, | |
"power_users": [ | |
{ | |
"installation_id": 1, |
I hereby claim:
To claim this, I am signing this object:
<?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>PayloadContent</key> | |
<array> | |
<dict> | |
<key>PayloadDisplayName</key> | |
<string>Security & Privacy</string> | |
<key>PayloadEnabled</key> |
"use strict"; | |
let currencyConfig = [{ "quarters": 25}, {"dimes": 10}, {"nickels": 5}, {"pennies": 1 }]; | |
function configure(config) { | |
currencyConfig = config; | |
} | |
function make_change(cents) { | |
let change = {}; |
using System.Collections.Generic; | |
namespace Console | |
{ | |
/// <summary> | |
/// Performs an inspection of two sorted lists to identify differences and orphans. | |
/// </summary> | |
class Differ | |
{ | |
/// <summary> |
/// <summary> | |
/// Gets the PageOrientation of the first page of a fixed document sequence, based on that page's dimensions. | |
/// </summary> | |
/// <param name="docSeq">The fixed document sequence.</param> | |
/// <returns> | |
/// If the first page could not be found, returns Unknown. | |
/// Returns Portrait when the page width is less than the height. | |
/// Otherwise (width is greater than OR EQUAL), returns Landscape. | |
/// </returns> | |
private static PageOrientation GetPageOrientationOfFirstPageOfFixedDocSeq(FixedDocumentSequence docSeq) { |