I hereby claim:
- I am dedoussis on github.
- I am dedoussis (https://keybase.io/dedoussis) on keybase.
- I have a public key ASAG-gc93A_k3e7nz7FAUnbmI4zAELyC8Z9QN_BVTB7psgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| """ | |
| Clears all deployments from a given repo | |
| Requirements: pip install PyGithub | |
| Usage: GITHUB_ACCESS_TOKEN=${MY_PAT} REPO_NAME=twbs/bootstrap delete_deployments.py | |
| """ | |
| from github import Github |
| #!/usr/bin/env python3 | |
| """ | |
| Description: | |
| Sets the default agent pool for the entirety of build definitions within an org | |
| Usage instructions: | |
| python set_default_pool_for_org.py |
flowchart TD
support_request(You have a support request)
squad_member_decision{Can a fellow engineer of your team help?}
devops_champion_decision{Can the DevOps champion of your team help?}
sre_decision{Can the SRE of your team help?}
cloud_support_ask(Ask cloud support)
resolved(Resolved)
support_request-->squad_member_decision| import requests | |
| import typing as t | |
| from uuid import uuid4 | |
| HEADERS = ( | |
| ACCOUNT_COUNTRY_HEADER := "X-Apple-ID-Account-Country", | |
| SESSION_ID_HEADER := "X-Apple-ID-Session-Id", | |
| SESSION_TOKEN_HEADER := "X-Apple-Session-Token", | |
| TWOSV_TRUST_TOKEN_HEADER := "X-Apple-TwoSV-Trust-Token", |
| # Place this dockerfile in the root dir of this repo: https://github.com/dedoussis/icloud-hide-my-email-browser-extension | |
| FROM node:18-alpine | |
| RUN apk upgrade && apk add --update --no-cache --virtual .builds-deps build-base python3 | |
| COPY . /opt/icloud-hide-my-email-extension | |
| WORKDIR /opt/icloud-hide-my-email-extension |
| #!/usr/bin/env python3 | |
| import sys | |
| import json | |
| import typing as t | |
| import objc | |
| from Foundation import NSBundle, NSClassFromString, NSISO8601DateFormatter, NSDate, NSTimeZone | |
| from AppKit import * |