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
[ | |
"cigar", "rebut", "sissy", | |
"humph", | |
"awake", | |
"blush", | |
"focal", | |
"evade", | |
"naval", | |
"serve", | |
"heath", |
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
class Clients::Convertkit | |
def tags | |
request(:get, "/tags")["tags"] | |
end | |
def get_subscriber_by_email(email:) | |
request(:get, "/subscribers", params: { email_address: email }) | |
end | |
end |
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
# Convert iPhone .mov videos to .mp4 videos which can be embedded in Basecamp. | |
IFS=" | |
" | |
for video in *.mov; do | |
ffmpeg -i $video -c:v libx264 -crf 23 -c:a aac -strict -2 `echo $video | sed "s/mov/mp4/"` | |
done | |
# The ffmpeg options were generated by ChatGPT. Here is the description |
OlderNewer