Skip to content

Instantly share code, notes, and snippets.

View tommymcglynn's full-sized avatar

Tommy McGlynn tommymcglynn

  • Apple
  • Los Angeles
View GitHub Profile
@tommymcglynn
tommymcglynn / gist:7abd330c7635940eecfd9446907c175e
Created October 2, 2019 14:07
Solution to Devmates.co Roman Numerals
private static final Map<Character, Integer> numeralMap = new HashMap<>();
static {
numeralMap.put('I', 1);
numeralMap.put('V', 5);
numeralMap.put('X', 10);
numeralMap.put('L', 50);
numeralMap.put('C', 100);
numeralMap.put('D', 500);
numeralMap.put('M', 1000);
}
@tommymcglynn
tommymcglynn / gist:6892810
Last active December 25, 2015 01:09
Sample javascript to load current TestFlight SDK versions and URLs.
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
(function() {
var _apiHost = 'https://testflightapp.com';
$.ajax({
url: _apiHost+'/api/sdkinfo',
context: document.body,
dataType: 'jsonp'