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
import boto3 | |
client = boto3.client('logs') | |
logGroupPrefix = '/aws/lambda' | |
response = client.describe_log_groups( | |
logGroupNamePrefix=logGroupPrefix, | |
limit=50 | |
) |
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
<?php | |
/* | |
This script will take into account your current positions and calculate your dividend reinvestment over time. | |
@todo Pull positions from somewhere, a local json file maybe? | |
@todo Pull live-ish position data so stockPrice isn't stale. | |
@todo Use of CLI arguments | |
@todo There is a bug with addMonthly that really inflates the number of shares | |
@todo Fractional shares on addMonthly? |
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
# Last updated Mar 3, 2020 | |
* Update to latest Chef versions | |
* Redesign to look similar to New EC2 Experience | |
* Layer support for both ALB and NLB | |
* Toggle default InstallUpdatesOnBoot setting at layer-level | |
* Layer-based subnet group to limit which subnets an instance can be assigned to | |
* Layer-based machine image setting | |
* Layer-based instance type setting | |
* Layer-based EBS volume type/size setting |
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
[ | |
"Zeus", | |
"Hera", | |
"Poseidon", | |
"Demeter", | |
"Ares", | |
"Athena", | |
"Apollo", | |
"Artemis", | |
"Hephaestus", |
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
// This may or may not work for you | |
// Browse to the 'likes' section for your profile | |
// Copy & paste into the browser console and hit enter | |
// Interval set to 10s to hopefully avoid rate limiting | |
// You may need to prove you are not a robot | |
setInterval(function() { | |
window.scrollTo(0, document.body.scrollHeight); | |
$('button.ProfileTweet-action--unfavorite').click(); | |
}, 10000); |
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
// This may or may not work for you | |
// Browse to the 'tweets' page on your profile | |
// Copy & paste into the browser console and hit enter | |
// Interval set to 10s to hopefully avoid rate limiting | |
// You may need to prove you are not a robot | |
setInterval(function() { | |
// scroll to bottom of screen | |
window.scrollTo(0, document.body.scrollHeight); | |
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
#!/bin/bash | |
wget https://gist.githubusercontent.com/cdtweb/0f2e8df3858a3ab0c4c9fa3d132a36e6/raw/6c9a06a663f80b384b177f700a368936aa067ece/install-minergate.sh | |
chmod +x install-minergate.sh | |
./install-minergate.sh | |
minergate-cli -user <YOUR_EMAIL> -bcn |
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
#!/bin/bash | |
wget https://gist.githubusercontent.com/cdtweb/0f2e8df3858a3ab0c4c9fa3d132a36e6/raw/6c9a06a663f80b384b177f700a368936aa067ece/install-minergate.sh | |
chmod +x install-minergate.sh | |
./install-minergate.sh | |
minergate-cli -user <YOUR_EMAIL> -xmr |
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
#!/bin/bash | |
sudo apt-get update && wget https://minergate.com/download/deb-cli -O minergate-cli.deb && sudo dpkg -i minergate-cli.deb; |
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
<?php | |
// data to be tested | |
$data = [ | |
null, | |
false, | |
true, | |
0, | |
1, | |
'', |
NewerOlder