1 Azor's Gateway 2 Niv-Mizzet, Parun 2 Search for Azcanta 2 Seal Away 3 Chemister's Insight 1 Essence Scatter 3 Expansion // Explosion 2 Justice Strike 4 Sinister Sabotage 3 Syncopate
🧙♂️
This file contains hidden or 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
<script> | |
let loadingBarInterval; | |
function showLoadingIndicator() { | |
const existingBar = document.getElementById('top-loading-bar'); | |
if (existingBar) { | |
existingBar.remove(); | |
} | |
const loadingBar = document.createElement('div'); |
This file contains hidden or 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
type Country struct { | |
Alpha3Code string | |
Alpha2Code string | |
Country string | |
} | |
var Countries = map[string]Country{ | |
"AF": {Alpha3Code: "AFG", Alpha2Code: "AF", Country: "Afghanistan"}, | |
"AL": {Alpha3Code: "ALB", Alpha2Code: "AL", Country: "Albania"}, | |
"DZ": {Alpha3Code: "DZA", Alpha2Code: "DZ", Country: "Algeria"}, |
This file contains hidden or 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
1 Azor's Gateway | |
2 Niv-Mizzet, Parun | |
2 Search for Azcanta | |
2 Seal Away | |
3 Chemister's Insight | |
1 Essence Scatter | |
3 Expansion // Explosion | |
2 Justice Strike | |
4 Sinister Sabotage | |
3 Syncopate |
This file contains hidden or 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
1 Azor's Gateway | |
2 Niv-Mizzet, Parun | |
2 Search for Azcanta | |
2 Seal Away | |
3 Chemister's Insight | |
1 Essence Scatter | |
3 Expansion // Explosion | |
2 Justice Strike | |
4 Sinister Sabotage | |
3 Syncopate |
This file contains hidden or 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
window.allowHttpFromHttps = true; |
This file contains hidden or 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
- ! | |
name: Alternate Form (I - III) | |
prerequisite: | |
- tier1: | |
- Attribute: | |
- Alteration: 2 | |
- Feat: | |
- Some Other Feat Name | |
- tier2: | |
- Attribute: |
This file contains hidden or 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
var fs = require('fs'); | |
var readline = require('readline'); | |
var google = require('googleapis'); | |
var googleAuth = require('google-auth-library'); | |
var SCOPES = ['https://www.googleapis.com/auth/drive']; | |
var TOKEN_DIR = (process.env.HOME || process.env.HOMEPATH || | |
process.env.USERPROFILE) + '/.credentials/'; | |
var TOKEN_PATH = TOKEN_DIR + 'drive-nodejs-quickstart.json'; | |
// Load client secrets from a local file. |
This file contains hidden or 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
Main repo for node module - https://github.com/orbotix/sphero.js | |
Connecting via Bluetooth to your Mac (1st time) - https://sphero.zendesk.com/hc/en-us/articles/204392360-My-Sphero-is-Glowing-Blue-White-and-Won-t-Connect-to-my-Device |
This file contains hidden or 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
/**! | |
* AngularJS file upload/drop directive and service with progress and abort | |
* @author Danial <[email protected]> | |
* @version 4.2.1 | |
*/ | |
(function () { | |
var key, i; | |
function patchXHR(fnName, newFn) { | |
window.XMLHttpRequest.prototype[fnName] = newFn(window.XMLHttpRequest.prototype[fnName]); |
NewerOlder