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
protobuf | |
protobuf-2.6.0 | |
protobuf-2.6.1 | |
protobuf-master |
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
// Set the desiredStoreIds, desiredPhoneModels, and alertEmail below. | |
// Go to https://reserve.cdn-apple.com/CA/en_CA/reserve/iPhone/availability | |
// Open browser console | |
// Copy and paste everything in this file in to the console terminal and push Enter | |
// Get alerted via email when the device you want is available to reserve! | |
var desiredStoreIds = ['R280', 'R362', 'R460']; | |
var desiredPhoneModels = ['MG3H2CL/A', 'MG3E2CL/A', 'MG3K2CL/A', 'MG3F2CL/A']; | |
var alertEmail = 'email@example.com'; |
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 com.robmaceachern.practice; | |
import java.util.Arrays; | |
import java.util.Comparator; | |
import java.util.PriorityQueue; | |
/** | |
* | |
* @author Rob MacEachern rob@robmaceachern.com | |
* |