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
A breakdown of S/S Rot: | |
If you are taking tethers, stand IN boss hitbox | |
If you are not taking tethers, stand MAX MELEE | |
If you are resolving rot, SPREAD | |
IF you are not resolving rot, STACK | |
So, | |
DPS all = DPS spread IN, T/H stack MAX MELEE. DPS that need rot step back to grab it then stack IN for tethers. | |
T/H all = T/H spread IN, DPS stack MAX MELEE. T/H that need rot step back to grab it then stack IN for tethers. |
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
blueprint: | |
name: Aqara Magic Cube | |
description: Control anything using Aqara Magic Cube. | |
domain: automation | |
input: | |
remote: | |
name: Magic Cube | |
description: Select the Aqara Magic Cube device | |
selector: | |
device: |
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"?> | |
<TriggernometryExport Version="1"> | |
<ExportedTrigger Enabled="true" Name="On Wipe" Id="d2f2668d-dfd5-456d-a404-1d2b5cdd18cd" RegularExpression="(wipeout|0038:end|21:([0-9,a-f,A-F]{8}):40000010)" DebugLevel="Inherit" PrevActions="Keep" PrevActionsRefire="Allow" Scheduling="FromFire" PeriodRefire="Allow" RefirePeriodExpression="0"> | |
<Actions> | |
<Action DiscordTts="false" OrderNumber="1" AuraImageMode="Normal" TextAuraAlignment="MiddleCenter" TextAuraFontSize="8.25" TextAuraEffect="None" TextAuraUseOutline="false" Enabled="true" ActionType="EndEncounter" ExecutionDelayExpression="0" Asynchronous="true" DebugLevel="Inherit" RefireInterrupt="false" RefireRequeue="true" SystemBeepFreqExpression="1000" SystemBeepLengthExpression="100" PlaySoundVolumeExpression="100" PlaySoundExclusive="true" PlaySoundMyself="false" PlaySpeechMyself="false" UseTTSVolumeExpression="100" UseTTSRateExpression="0" UseTTSExclusive="true" LaunchProcessWindowStyle="Normal" ExecScriptType="CSharp" MessageBoxIcon |
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
Search "modName=" (496 hits in 1 file) | |
Z:\Temp\7zOC2107F04\modlist~ (496 hits) | |
Line 9: modName=Mod Organizer 2 | |
Line 35: modName=A Quality World Map | |
Line 56: modName=Alpine Forest of Whiterun Valley | |
Line 76: modName=Alternate Start - Live Another Life | |
Line 96: modName=aMidianBorn Book of Silence | |
Line 116: modName=aMidianBorn Textures For Immersive Armors and Lore-Friendly Armor Pack | |
Line 136: modName=Amulets of Skyrim SSE | |
Line 156: modName=Andragorn Weapons SSE |
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
import pandas as pd | |
import numpy as np | |
import fastparquet | |
from sqlalchemy import create_engine, schema, Table | |
# Copied from pandas with modifications | |
def __get_dtype(column, sqltype): | |
import sqlalchemy.dialects as sqld |
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
from dask.dataframe import read_sql_table | |
import pandas as pd | |
import numpy as np | |
from sqlalchemy import create_engine, schema | |
from config import database_config | |
# Copied from pandas with modifications | |
def _get_dtype(column, sqltype): |
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
// Type definitions for dynamoose 0.7 | |
// Project: https://github.com/automategreen/dynamoose | |
// Definitions by: Rahul Vaidya <https://github.com/rvaidya> | |
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | |
declare module "dynamoose" { | |
import AWS from 'aws-sdk'; | |
export class Dynamoose { | |
constructor(); |
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
let jobsPerMinute = 60; | |
let lambdaMemory = 128; | |
let lambdaExecutionsPerJob = 3; | |
let averageJobRuntimeInMS = 1024; | |
let sqsMessageSizeInKB = 64; | |
let minutesPerMonth = 43800; | |
let hoursPerMonth = minutesPerMonth / 60; | |
let jobsPerHour = jobsPerMinute * 60; |