Skip to content

Instantly share code, notes, and snippets.

View MotionDesignStudio's full-sized avatar

Motion Design Studio MotionDesignStudio

View GitHub Profile
@MotionDesignStudio
MotionDesignStudio / Readme.txt
Created February 17, 2015 00:58
Mass Send (Text Messages) SMS Via Email Address
Modify this line of sendtxtmsg0.sh to ensure it finds the perl script properly.
printf "%s\n" "`./sendEmail-v1.55/sendEmail -f ${2} -t ${line}${providers} -m ${6} -o tls=auto -s ${5} -xu ${3} -xp ${4}`"
Download sendEmail from here
http://caspian.dotconf.net/menu/Software/SendEmail/sendEmail-v1.55.tar.gz
You can also manually retrieve it from here.
@MotionDesignStudio
MotionDesignStudio / ascii_movie_image_ver_1.py
Last active January 3, 2024 03:26
Python ASCII Video And ASCII Image Creator
#!/usr/bin/env python
import sys
import cv2
import subprocess
from subprocess import call
import aalib
import Image
@MotionDesignStudio
MotionDesignStudio / google_voice_sms.py
Last active August 30, 2023 09:50
Mass Texting (SMS) Messaging Via Google Voice And Python
#!/usr/bin/env python
import sys
from googlevoice import Voice
from googlevoice.util import input
sys.dont_write_bytecode = True
username=str(sys.argv[1]).strip()
password=str(sys.argv[2]).strip()