This file contains 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
# Try and guess the lotto numbers | |
# http://lottoresults.co.nz/tools/lotto/number-analysis | |
import random | |
numbers_count = 6 | |
powerball_numbers_count = 1 | |
numbers = [ | |
19, | |
1, |
This file contains 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
""" | |
This script formats a magento product export file, and sets each | |
additional_attribute as a new column in a target file | |
""" | |
import csv | |
# real files | |
source_file = './catalog_product_20210316_044037.csv' | |
target_file = './catalog_product_20210316_044037_formatted.csv' |
This file contains 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
def setup_host_group(context, environment, filter, tags='private_ip_address'): | |
""" | |
Setup hosts group from EC2 instances using boto3 | |
""" | |
hosts = extract_instances_information(context, environment, filter, tags) | |
config = get_config() | |
connection = [Connection(host=host, config=config) for host in hosts] | |
return connection |
This file contains 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
def get_hosts_from_ec2(environment, filter): | |
""" | |
Create hosts pool, containing available hosts to be targeted | |
""" | |
if environment not in environments: | |
raise Exception(f"Environment must be one of {environments}") | |
# get ip information | |
get_local_ip_information() |
This file contains 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
FABRIC_SSH_CONFIG_FILE=.ssh/config.d/company_name | |
FABRIC_COMPANY=company_name |
This file contains 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
#!/usr/bin/env python3 | |
""" | |
Fabric 2 script for executing commands on EC2 instances, and docker containers | |
@author Winston Nolan <[email protected]> | |
Installation: | |
pip3 install fabric2 termcolor boto3 | |
""" | |
import os | |
import sys | |
import requests |
This file contains 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
pip3 install boto3 |
This file contains 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
pip3 install fabric2 |
This file contains 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
/* | |
* clearIntArray | |
* This function deletes all items in array (sets it to 0) and resizes array according to size (default = 1). | |
* @param int& theArray - passing the array by reference | |
* @param int size - size of the array (default = 1) | |
* @return int blank array of size | |
*/ | |
void clearIntArray( int& theArray[], int size = 0 ) { | |
ArrayResize( theArray, size ); | |
if ( size > 0 ) { ArrayInitialize( theArray, 0 ); } |
This file contains 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
<?php | |
/** | |
* Cleanup images from Magento | |
*/ | |
require 'app/Mage.php'; | |
if (!Mage::isInstalled()) { | |
echo "Application is not installed yet, please complete install wizard first."; | |
exit; |
NewerOlder