Skip to content

Instantly share code, notes, and snippets.

View cdtweb's full-sized avatar
🏠
Working from home

Clint Tyler cdtweb

🏠
Working from home
  • CDT Web Solutions, LLC
  • Murray, UT
View GitHub Profile
@cdtweb
cdtweb / find_del_dd_sub_filters.py
Created May 6, 2022 17:21
Find & Delete DataDog Auto-Added Log Group Subscription Filters for AWS CloudWatch Log Groups
import boto3
client = boto3.client('logs')
logGroupPrefix = '/aws/lambda'
response = client.describe_log_groups(
logGroupNamePrefix=logGroupPrefix,
limit=50
)
@cdtweb
cdtweb / estimate.php
Last active January 4, 2021 22:38
Simple Rolling DRIP Estimator
<?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?
@cdtweb
cdtweb / gist:7b236f77f7178d3822d84efa9aebbd99
Created March 4, 2020 04:39
My AWS OpsWorks Stacks Wanted Features List
# 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
@cdtweb
cdtweb / greek-gods.json
Created January 31, 2019 17:23
JSON array of Greek Gods
[
"Zeus",
"Hera",
"Poseidon",
"Demeter",
"Ares",
"Athena",
"Apollo",
"Artemis",
"Hephaestus",
@cdtweb
cdtweb / unlike-tweets.js
Last active August 1, 2018 23:26
JS unlike all tweets
// 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);
@cdtweb
cdtweb / delete-tweets.js
Last active August 1, 2018 23:26
JS delete your tweets
// 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);
@cdtweb
cdtweb / bcn-miner.sh
Created January 3, 2018 19:46
Install minergate and start mining Bytecoin on Ubuntu
#!/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
@cdtweb
cdtweb / xmr-miner.sh
Created December 6, 2017 21:15
Install minergate and start mining XMR on Ubuntu
#!/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
@cdtweb
cdtweb / install-minergate.sh
Created December 6, 2017 02:03
Install minergate-cli on Ubuntu
#!/bin/bash
sudo apt-get update && wget https://minergate.com/download/deb-cli -O minergate-cli.deb && sudo dpkg -i minergate-cli.deb;
@cdtweb
cdtweb / php-data-type-check.php
Last active October 3, 2022 21:22
PHP Data Type Check
<?php
// data to be tested
$data = [
null,
false,
true,
0,
1,
'',