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 | |
| API_KEY='replace-with-your-api-key' | |
| CURSOR='initial' | |
| # Create CSV header | |
| echo "recipient,source,description,created,updated" > suppressions.csv | |
| # Loop through pages | |
| while [ "$CURSOR" != "null" ]; do | |
| RESPONSE=$(curl -s -H "Authorization: $API_KEY" "https://api.sparkpost.com/api/v1/suppression-list?cursor=$CURSOR&per_page=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
| { | |
| "feed": { | |
| "version": "2.0", | |
| "title": "Playbill Post", | |
| "items": [ | |
| { | |
| "title": "Meet the Full Cast Bringing the Good Word to Broadway in Tammy Faye", | |
| "link": "https://playbill.com/article/meet-the-full-cast-bringing-the-good-word-to-broadway-in-tammy-faye", | |
| "guid": "https://playbill.com/article/meet-the-full-cast-bringing-the-good-word-to-broadway-in-tammy-faye#815f1c13-9290-47d7-ac31-91267c9a9df1", | |
| "description": "See who's joining previously announced stars Katie Brayben and Christian Borle in the Elton John-Jake Shears-James Graham musical.", |
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
| alias jdkls='/usr/libexec/java_home -V 2>&1 | grep -E "\d.\d.\d_\d\d" | cut -d , -f 1 | colrm 1 4 | grep -v Home' | |
| PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting | |
| function setjdk() { | |
| export JAVA_HOME=$(/usr/libexec/java_home -v $1) | |
| export PATH=$JAVA_HOME/bin:$PATH | |
| java -version | |
| } |
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
| /* | |
| * VERY raw way to read a restful API endpoint. | |
| * This code can be refined and made into a very simple REST library quite easily. | |
| * | |
| * Code has not been tested and should be taken as pseudo-code. | |
| */ | |
| String apiKey = "myapi-key"; | |
| URL url = new URL("http://api.emaildatasource.com/service/2.0.0/rest/api.service.engagements?method=getAvailableDomains&api-key=" + apiKey); | |
| HttpURLConnection conn = (HttpURLConnection) url.openConnection(); |
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
| delete | |
| from | |
| t1, t2, t3 | |
| using | |
| t1 | |
| join | |
| t2 on t1.id = t2.id | |
| join | |
| t3 on t2.id = t3.id | |
| where |
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
| git tag -l | xargs git tag -d | |
| git fetch |