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 zoneinfo import ZoneInfo | |
from datetime import datetime, timedelta, date, time | |
import sys | |
def describe_change(old_list, new_list, names_list): | |
diffs = [] | |
for old, new, name in zip(old_list, new_list, names_list): | |
old_tz, old_dst = old | |
new_tz, new_dst = new |
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
. | |
├── terracognita | |
│ └── aws-dumped | |
│ ├── module-dumped | |
│ │ ├── api_gateway.tf | |
│ │ ├── cloud_front.tf | |
│ │ ├── ec2_elastic_compute_cloud.tf | |
│ │ ├── ecs_elastic_container.tf | |
│ │ ├── iam_identity_access_management.tf | |
│ │ ├── lambda.tf |
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
accept-ch | |
accept-ch-lifetime | |
accept-encoding | |
accept-ranges | |
access-control-allow-credentials | |
access-control-allow-everything | |
access-control-allow-headers | |
access-control-allow-methods | |
access-control-allow-origin | |
access-control-expose-headers |
I hereby claim:
- I am sesh on github.
- I am sesh (https://keybase.io/sesh) on keybase.
- I have a public key ASDIDvKTNOVGxRpQvFOCN_U8xSpFiZSHjZB0czJAx3AR_Qo
To claim this, I am signing this object:
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
# Top Screen | |
bind l:cmd,alt move screenOriginX,screenOriginY screenSizeX/2,screenSizeY 0 | |
bind ;:cmd,alt move screenOriginX,screenOriginY screenSizeX,screenSizeY 0 | |
bind ':cmd,alt move screenOriginX+screenSizeX/2,screenOriginY screenSizeX/2,screenSizeY 0 | |
# Laptop Screen | |
bind ,:cmd,alt move screenOriginX,screenOriginY screenSizeX/2,screenSizeY 1 | |
bind .:cmd,alt move screenOriginX,screenOriginY screenSizeX,screenSizeY 1 | |
bind /:cmd,alt move screenOriginX+screenSizeX/2,screenOriginY screenSizeX/2,screenSizeY 1 |
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
{ | |
"properties": { | |
"name": "", | |
"source_id": 20133687, | |
"start": "2020-04-30T07:30:00+10:00", | |
"distance": 7830.219999999999, | |
"duration": 2517.044, | |
"activity_type": "running", | |
"provider": "smashrun" | |
}, |
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 django.contrib import admin | |
from django.contrib.auth.admin import UserAdmin | |
from django.utils.translation import ugettext_lazy as _ | |
from .models import User | |
class CustomUserAdmin(UserAdmin): | |
fieldsets = ( | |
(None, {'fields': ('email', 'password')}), |
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
// Pace your settings in this file to overwrite the default settings | |
{ | |
"python.linting.enabled": true, | |
"python.linting.pylintEnabled": false, | |
"python.linting.flake8Enabled": true, | |
"window.zoomLevel": 0, | |
"files.insertFinalNewline": true, | |
"editor.insertSpaces": true, | |
"files.trimTrailingWhitespace": true, | |
} |
NewerOlder