https://cdn.asun.co/d2.asun.co/drifter/static/media/get_ready.a40ad1ea.mp3 https://cdn.asun.co/d2.asun.co/drifter/static/media/hold_on.76ac7219.mp3 https://cdn.asun.co/d2.asun.co/drifter/static/media/hold_on_ghosts.df8ddd0e.mp3 https://cdn.asun.co/d2.asun.co/drifter/static/media/prepare_transmat.3313e210.mp3 https://cdn.asun.co/d2.asun.co/drifter/static/media/ready_to_drop.aff39659.mp3 https://cdn.asun.co/d2.asun.co/drifter/static/media/transmat_firing.cf6c6035.mp3 https://cdn.asun.co/d2.asun.co/drifter/static/media/transmat_go.64e9abb1.mp3 https://cdn.asun.co/d2.asun.co/drifter/static/media/transmat_primed.6eb15398.mp3 https://cdn.asun.co/d2.asun.co/drifter/static/media/transmat_ready.62c8971a.mp3 https://cdn.asun.co/d2.asun.co/drifter/static/media/you_ready.560efe03.mp3
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.$DestinyVendorDefinition | |
.filter((v) => v.interactions.length > 0) | |
.map((vendor) => ({ | |
hash: vendor.hash, | |
name: vendor.displayProperties.name, | |
interactions: vendor.interactions | |
.map( | |
(v) => | |
v.headerDisplayProperties.name | |
.toLowerCase() |
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
const round = (num) => Math.round((num + Number.EPSILON) * 100) / 100; | |
const DAYS_IN_A_YEAR = 365; | |
const VAT_MULTIPLIER = 1.05; | |
function priceCommand(plans, _annualUsage) { | |
const annualUsage = parseInt(_annualUsage); | |
const results = plans | |
.map((plan) => { |
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
[ | |
{ | |
"membershipId": "4611686018432827035", | |
"membershipType": 1, | |
"collectibleState": 16 | |
}, | |
{ | |
"membershipId": "4611686018438475521", | |
"membershipType": 2, | |
"collectibleState": 32 |
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
{ | |
"Response": { | |
"profiles": [ | |
{ | |
"dateLastPlayed": "2020-07-21T18:32:22Z", | |
"isOverridden": false, | |
"isCrossSavePrimary": true, | |
"platformSilver": { | |
"platformSilver": { | |
"TigerPsn": { |
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
#SingleInstance, force | |
#NoEnv | |
#MaxThreadsPerHotkey 2 | |
f7:: | |
Toggle := !Toggle | |
loop | |
{ | |
If not Toggle | |
break |
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
#SingleInstance, force | |
#NoEnv | |
#MaxThreadsPerHotkey 2 | |
f9:: | |
Toggle := !Toggle | |
loop | |
{ | |
If not Toggle | |
break |
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
#SingleInstance, force | |
#NoEnv | |
#MaxThreadsPerHotkey 2 | |
f7:: | |
Toggle := !Toggle | |
loop | |
{ | |
If not Toggle | |
break |
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
SELECT distinct on ("mode") mode, * from "Activities" where "primaryMembershipType" = 5; |