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
<UserSettings> | |
<ApplicationIdentity version="10.0"/> | |
<ToolsOptions> | |
<ToolsOptionsCategory name="Environment" RegisteredName="Environment"/> | |
</ToolsOptions> | |
<Category name="Environment_Group" RegisteredName="Environment_Group"> | |
<Category name="Environment_FontsAndColors" Category="{1EDA5DD4-927A-43a7-810E-7FD247D0DA1D}" Package="{DA9FB551-C724-11d0-AE1F-00A0C90FFFC3}" RegisteredName="Environment_FontsAndColors" PackageName="Visual Studio Environment Package"> | |
<PropertyValue name="Version">2</PropertyValue> | |
<FontsAndColors Version="2.0"> | |
<Categories> |
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" ?> | |
<Root PresetName="Saitek X52 HOTAS" MajorVersion="2" MinorVersion="0"> | |
<KeyboardLayout>en-US</KeyboardLayout> | |
<MouseXMode Value="" /> | |
<MouseXDecay Value="0" /> | |
<MouseYMode Value="" /> | |
<MouseYDecay Value="0" /> | |
<MouseReset> | |
<Primary Device="{NoDevice}" Key="" /> | |
<Secondary Device="{NoDevice}" Key="" /> |
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" ?> | |
<Root PresetName="Saitek X52, Logitech X3DPro" MajorVersion="2" MinorVersion="0"> | |
<KeyboardLayout>en-US</KeyboardLayout> | |
<MouseXMode Value="" /> | |
<MouseXDecay Value="0" /> | |
<MouseYMode Value="" /> | |
<MouseYDecay Value="0" /> | |
<MouseReset> | |
<Primary Device="{NoDevice}" Key="" /> | |
<Secondary Device="{NoDevice}" Key="" /> |
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
#!/usr/bin/env ruby | |
require 'fileutils' | |
require 'mini_exiftool' | |
if `which exiftool`.empty? | |
puts 'exiftool not found. Exiting.' | |
exit false | |
end |
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" ?> | |
<Root PresetName="Steam Link" MajorVersion="1" MinorVersion="8"> | |
<KeyboardLayout>en-US</KeyboardLayout> | |
<LockedDevice>{NoDevice}</LockedDevice> | |
<MouseXMode Value="" /> | |
<MouseXDecay Value="1" /> | |
<MouseYMode Value="" /> | |
<MouseYDecay Value="1" /> | |
<MouseReset> | |
<Primary Device="{NoDevice}" Key="" /> |
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" ?> | |
<Root PresetName="Saitek X52, Logitech F310" MajorVersion="1" MinorVersion="8"> | |
<KeyboardLayout>en-US</KeyboardLayout> | |
<LockedDevice>{NoDevice}</LockedDevice> | |
<MouseXMode Value="" /> | |
<MouseXDecay Value="0" /> | |
<MouseYMode Value="" /> | |
<MouseYDecay Value="0" /> | |
<MouseReset> | |
<Primary Device="{NoDevice}" Key="" /> |
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" ?> | |
<Root PresetName="Saitek X52, Logitech X3DPro" MajorVersion="1" MinorVersion="8"> | |
<KeyboardLayout>en-US</KeyboardLayout> | |
<LockedDevice>{NoDevice}</LockedDevice> | |
<MouseXMode Value="" /> | |
<MouseXDecay Value="0" /> | |
<MouseYMode Value="" /> | |
<MouseYDecay Value="0" /> | |
<MouseReset> | |
<Primary Device="{NoDevice}" Key="" /> |
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" ?> | |
<Root PresetName="Saitek X52 HOTAS" MajorVersion="1" MinorVersion="8"> | |
<KeyboardLayout>en-US</KeyboardLayout> | |
<LockedDevice>{NoDevice}</LockedDevice> | |
<MouseXMode Value="" /> | |
<MouseXDecay Value="0" /> | |
<MouseYMode Value="" /> | |
<MouseYDecay Value="0" /> | |
<MouseReset> | |
<Primary Device="{NoDevice}" Key="" /> |
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
// | |
// CollectionIndexView.swift | |
// Created by Ben Kreeger on 9/26/16. | |
// | |
import UIKit | |
@objc(BDKCollectionIndexView) | |
class CollectionIndexView: UIControl { | |
enum Direction { |
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
#!/bin/bash | |
# Fetches the latest certificate from a given domain and saves it as a | |
# DER-encoded certificate file in the destination of your choosing. | |
# | |
# Example: | |
# ./fetch-pinned-cert.sh ovenbits.com 443 /path/to/output/ovenbits.com.der | |
# | |
echo -n | openssl s_client -connect $1:$2 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > /tmp/$1.cer |