I hereby claim:
- I am thomashighbaugh on github.
- I am thomaslhighbaugh (https://keybase.io/thomaslhighbaugh) on keybase.
- I have a public key ASBrEdrOrLAIUteo7iftqEu3fd7J_Qf7Env0T-5rnrM-cgo
To claim this, I am signing this object:
#!/bin/bash | |
# Check if Calibre's ebook-convert command is available | |
if ! command -v ebook-convert &>/dev/null; then | |
echo "Calibre's ebook-convert command not found. Please install Calibre." | |
exit 1 | |
fi | |
# Create a directory to store the converted PDF files | |
mkdir -p converted_pdfs |
#!/usr/bin/env bash | |
TODAY=$(date) | |
export TODAY | |
echo "Let's fake us some funk shall we?" | |
npx fake-git-history my-history | |
cd my-history || echo "my-history doesn't exist! Failure" && exit |
#!/usr/bin/env bash | |
# from https://github.com/fariasmateuss/favicon-generator/blob/main/favicon.sh | |
# Provide an image as a parameter, recieve favicons | |
SRC_IMAGE=$1 | |
CYAN='\033[0;36m' | |
RED='\033[0;31m' | |
COLORRESET='\033[0m' | |
declare -a SIZES |
info@0ptimus.com | |
connect@180bytwo.com | |
privacy@180bytwo.com | |
connect@180bytwo.com | |
drew.paquette@33across.com | |
legal@evercommerce.com | |
privacy@360mediadirect.com | |
partner@360mediadirect.com | |
privacy@360mediadirect.com | |
partner@360mediadirect.com |
I hereby claim:
To claim this, I am signing this object:
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Neubrutalist Email Template</title> | |
<style> | |
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); |
pinback.js
Raw
and when that opens, Ctrl + a then Ctrl + cConsole
that will open up a command-prompt/terminal like line. This will run Javascript locally, which is useful for things like this especially#!/usr/bin/env bash | |
# Check if ffmpeg is installed | |
if ! command -v ffmpeg &>/dev/null; then | |
echo "Error: ffmpeg is not installed. Please install it before running this script." | |
exit 1 | |
fi | |
# Check for the correct number of command-line arguments | |
if [ $# -ne 1 ]; then |
#!/usr/bin/env bash | |
# Check if the required commands are available | |
if ! command -v ffmpeg &>/dev/null; then | |
echo "Error: FFmpeg is not installed. Please install FFmpeg." | |
exit 1 | |
fi | |
if ! command -v convert &>/dev/null; then | |
echo "Error: ImageMagick's 'convert' command is not installed. Please install ImageMagick." |
#! /usr/bin/env python | |
import sys, os | |
inputOne = sys.argv[1] | |
inputTwo = sys.argv[2] | |
for i in sys.argv[1:]: | |
if ".mp3" in i: | |
output = i.replace("mp3", "mp4") |