- $10 - Eat a small Ghost Pepper Chip
- $50 - 5 "Hot Ones" sauces in a row
- $125 - All 10 "Hot Ones" sauces in a row
- $3 - Jump into the next spike
- $13 - Play the game upside-down for 5 minutes
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 |
""" | |
Lambda invocation to set security tags on Athena output; triggered by S3 Object | |
events | |
""" | |
import logging | |
import boto3 | |
LOGGER = logging.getLogger() |
{ | |
"Version": "2012-10-17", | |
"Id": "Policy1523289797898", | |
"Statement": [ | |
{ | |
"Sid": "DenyRestrictedResultsAccess", | |
"Effect": "Deny", | |
"NotPrincipal": { | |
"AWS": [ | |
"arn:aws:iam::{{ aws_account_id }}:user/{{ aws_user_name }}" |
""" 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 |
""" | |
NOTICE: I no longer support pyeloqua-related code, I have not worked in Eloqua since 2017 and the APIs have likely changed since then | |
Import a small set of contacts to Eloqua | |
""" | |
from os import environ | |
from pyeloqua import Bulk | |
# Initialize Bulk object | |
# Here I pass environment variables which contain the necessary information |