I hereby claim:
- I am hervenivon on github.
- I am hervenivon (https://keybase.io/hervenivon) on keybase.
- I have a public key ASBJ_f63WUy1KE_v3t4gl9-HrPHan7a7ermnnexboSIC-go
To claim this, I am signing this object:
{ | |
"Region": "TOCHANGE", | |
"Bucket": "tochange", | |
"Location": "to/change/" | |
} |
'this procedure is largely inspired by a comment from Bujez on Novembre 2010 on this thread: | |
'http://omaralzabir.com/get_email_address_of_all_users_from_all_mails_in_outlook_folder/ | |
'Rewright needs to be done to make it recursive but it works as is with Outlook 2013 | |
Sub EmailExport() | |
'Requires reference to Microsoft Scripting Runtime | |
'Tools –> References –> check “Microsoft Scripting Runtime” | |
Dim outApp As New Outlook.Application | |
Dim mpf As Outlook.MAPIFolder | |
Dim mpfSubFolder As Outlook.MAPIFolder | |
Dim flds As Outlook.Folders |
version: 2 | |
references: | |
base_container_config: &base_container_config | |
docker: | |
- image: circleci/node:8 | |
working_directory: ~/repo | |
test_container_config: &test_container_config | |
docker: |
export PYTHON_VERSION=3.4.3 | |
export PYTHON_SHORT_VERSION=3.4 | |
export GEOS_VERSION=3.6.2 | |
export GDAL_VERSION=2.2.2 | |
export PROJ4_VERSION=4.9.3 | |
sudo yum-config-manager --enable epel | |
sudo yum install gdal-python | |
sudo yum -y install make automake gcc gcc-c++ libcurl-devel proj-devel geos-devel |
#!/bin/bash | |
BUFFERSIZE=1048576 | |
WHERE="/dev/shm/test /mnt/data/test" | |
RESULTS="/tmp/benchmark_results.csv" | |
echo "WHERE;TYPE;SIZE;DURATION;SPEED;SPEEDUNIT" > $RESULTS | |
for i in `seq 1 10`; | |
do |
# default .bash_profile | |
# Get the aliases and functions | |
if [ -f ~/.bashrc ]; then | |
. ~/.bashrc | |
fi | |
# User specific environment and startup programs | |
PATH=/usr/local/bin/:$HOME/.local/bin:$HOME/bin:$PATH |
#!/usr/bin/env python3 | |
from multiprocessing import Pool | |
from tqdm import tqdm | |
from queue import Queue | |
from threading import Thread | |
import random | |
import time | |
THREADS = 5 |
I hereby claim:
To claim this, I am signing this object:
import boto3 | |
import os | |
import sys | |
import threading | |
from boto3.s3.transfer import TransferConfig | |
s3_client = boto3.client('s3') | |
# S3 transfer documentation: https://boto3.amazonaws.com/v1/documentation/api/1.9.156/reference/customizations/s3.html?highlight=transferconfig#boto3.s3.transfer.TransferConfig |
#!/bin/bash | |
PDISK=$(diskutil list physical external | head -n1 | cut -d' ' -f1) | |
APFSCONT=$(diskutil list physical external | grep Apple_APFS | tr -s ' ' | cut -d' ' -f8) | |
sudo diskutil repairDisk $PDISK | |
sudo diskutil apfs resizeContainer $APFSCONT 0 | |
# https://derflounder.wordpress.com/2020/12/19/resizing-an-aws-macos-ec2-instances-boot-drive-to-use-all-available-disk-space/ |