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
TOKEN="XXXX" # Telegram both token | |
IDF="XXX" # DM / GROUP ID 1 | |
IDS="XXX" # DM / GROUP ID 2 | |
URL="https://api.telegram.org/bot$TOKEN/sendMessage" | |
LOCATION1=5020 # Blaine | |
LOCATION2=16764 # Blaine New | |
PREV1="" | |
PREV2="" |
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 nodemailer from "nodemailer"; | |
import { defaultProvider } from "@aws-sdk/credential-provider-node"; | |
import sesClient from "@aws-sdk/client-ses"; | |
async function wrapedSendMail(mailOptions){ | |
return new Promise((resolve,reject)=>{ | |
const ses = new sesClient.SES({ | |
apiVersion: "2010-12-01", | |
defaultProvider, | |
}); |
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
find ./production/ -name "*-schema.sql" -print | xargs sed -ri 's/CREATE\sTABLE\s`([a-zA-Z0-1_]+)`\s/DROP TABLE IF EXISTS `\1`;\nCREATE TABLE `\1` /;' |
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
aws s3 ls s3://<bucket>/AWSLogs/<accountnumber>/elasticloadbalancing/<region>/2019/10/ --recursive | grep <search-string> | awk '{print $4}'| xargs -I FNAME sh -c 'aws s3 cp s3://<bucket-name>/AWSLogs"$FNAME" .' |
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
var pipelines = document.getElementsByClassName( 'zhc-pipeline' ); | |
var line_break = '\n\r'; | |
var report = ''; | |
var epics_data = {}; | |
for ( var i = 0; i < pipelines.length; i ++ ) { | |
var pipeline = pipelines[i]; | |
var issues = $( '.zhc-issue-cards__cell', pipeline ); | |
var status = $( '.zhc-pipeline-header__title', pipeline ).textContent; |
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
# Solution 1 - Non http | |
# Directives to send expires headers and turn off 404 error logging. | |
location ~* .(js|css|png|jpg|jpeg|gif|ico)$ { | |
expires 24h; | |
log_not_found off; | |
try_files $uri $uri/ @production; | |
} | |
location @production { | |
resolver 8.8.8.8; |
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 | |
for SITE_URL in $(wp site list --fields=domain,path,archived,deleted --format=csv --url=MAIN_DOMAIN | grep ",0,0$" | awk -F ',' '{print $1 $2}') | |
do | |
echo "Fixing $SITE_URL ..." | |
for POSTID in $(wp post list --post_type=CUSTOM_POSTTYPE --field=ID --url="$SITE_URL") | |
do | |
wp post meta update ${POSTID} META_KEY NEW_META_VALUE --url="$SITE_URL" | |
done | |
done |
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 | |
OPTIND=1 | |
verbose=0 | |
dbuser="" | |
dbpasswd="" | |
while getopts "vh?U:P:H:" opt; do | |
case "$opt" in |
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
/** | |
* Add ajaxprefilter to reset the form | |
*/ | |
function initAjaxPreFilter() { | |
// Add callback | |
$( document ).on( 'term:added', function() { | |
// Do reset form related stuff here | |
} ); | |
// Register ajaxprefilter |
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 | |
# Run from master to avoid not able to delete current branch error | |
git checkout master --force | |
git submodule update --init --recursive | |
# Update our list of remotes | |
git fetch | |
git remote prune origin |
NewerOlder