How to download and process br_ms_cnes data UPDATED
- Python script to download all DBC files. Might be better to edit to use ftplib in place of wget.
from datetime import date, timedelta import wget import ftplib
# https://stackoverflow.com/questions/39928401/recover-db-password-stored-in-my-dbeaver-connection | |
# requires pycryptodome lib (pip install pycryptodome) | |
import sys | |
import base64 | |
import os | |
import json | |
from Crypto.Cipher import AES |
import boto3 | |
s3_client = boto3.resource('s3') | |
my_bucket = s3_client.Bucket('bucket') | |
files_list = [object_summary for object_summary in my_bucket.objects.filter(Prefix='path/to/dir')] | |
for object_summary in files_list: | |
print(object_summary.key) | |
object_summary.delete() |
from datetime import date, timedelta
import wget
import ftplib
/* ~/Library/KeyBindings/DefaultKeyBinding.Dict | |
This file remaps the key bindings of a single user on Mac OS X 10.5 to more | |
closely match default behavior on Windows systems. This makes the Command key | |
behave like Windows Control key. To use Control instead of Command, either swap | |
Control and Command in Apple->System Preferences->Keyboard->Modifier Keys... | |
or replace @ with ^ in this file. | |
Here is a rough cheatsheet for syntax. | |
Key Modifiers |
[ | |
{ | |
"enabled": true, | |
"updateUrl": null, | |
"md5Url": null, | |
"url": null, | |
"originalMd5": null, | |
"installDate": 1603124659985, | |
"name": "tweetdeck.twitter.com", | |
"sections": [ |