- Switch to Desktop Mode
- Open Konsole (command line terminal)
- Open Steam Console:
steam steam://open/console
- In Steam Console, follow the usual instructions to download the downpatch files: https://discord.com/channels/83061848139632640/83063005918531584/1054961844395200552
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
From haloruns discord, pasting here for easier access from steam deck | |
Step 1: Download the depots you intend to use | |
You MUST download the Base depot, and have the option to download the rest. | |
Information is obtained from here: https://steamdb.info/app/976730/depots/ | |
22 July 2021 (Season 7) | |
appid depot manifest | |
Base: 976730 976731 3600222516169950408 | |
H1: 976730 976733 6874146357467990096 | |
H2: 976730 976735 2737958618488343353 |
- Processes/systems have a tendancy to go un-documented, sometimes for a long time, until some precipitating event causes a team to say "Hey, we should make sure this is documented"
- Typically, this precipitating event is a key player either being on vacation or leaving
- Items that do get documented tend to be straightforward:
- Dealing with events that happen with predictable regularity
- Outlining the expected/trivial cases
- When teams start to worry about documentation, there's usually a focus on items that are less directly tangible:
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
""" | |
Lambda invocation to set security tags on Athena output; triggered by S3 Object | |
events | |
""" | |
import logging | |
import boto3 | |
LOGGER = logging.getLogger() |
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
{ | |
"Version": "2012-10-17", | |
"Id": "Policy1523289797898", | |
"Statement": [ | |
{ | |
"Sid": "DenyRestrictedResultsAccess", | |
"Effect": "Deny", | |
"NotPrincipal": { | |
"AWS": [ | |
"arn:aws:iam::{{ aws_account_id }}:user/{{ aws_user_name }}" |
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
""" export clickthrough data - example """ | |
from json import dump | |
from pyeloqua import Bulk | |
bulk = Bulk(username='xxx', password='xxx', company='xxx') | |
bulk.exports('activities', act_type='EmailClickthrough') | |
bulk.add_fields() # this will add all fields, or you can specify as listed in the documentation | |
# Field lists located here: https://github.com/colemanja91/pyeloqua/blob/master/pyeloqua/system_fields.py |
NewerOlder