Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am acer76e on github.
  • I am acer76e (https://keybase.io/acer76e) on keybase.
  • I have a public key ASD6S0GKwN7rXsh5YG6ptOIMfweFj0ETZlhnenE4Pk400go

To claim this, I am signing this object:

@Acer76e
Acer76e / fax.txt
Created January 15, 2018 00:03
Email To Fax
const cloudinary = require('cloudinary')
const { MailParser } = require('mailparser')
const { toArray } = require('lodash')
exports.handler = function(context, messages, callback) {
const twilio = context.getTwilioClient()
cloudinary.config({
cloud_name: context.CLOUDINARY_NAME,
api_key: context.CLOUDINARY_KEY,
api_secret: context.CLOUDINARY_SECRET
})
@Acer76e
Acer76e / google_sms_responder.py
Last active August 29, 2015 14:26 — forked from dbluestein/google_sms_responder.py
SMS autoresponder with Google Voice, Gmail and a cron job
#!/usr/bin/env python
# 1. In Google Voice settings, set it to forward SMS messages to your Gmail.
# 2. Set up a Gmail filter to add a label to SMS messages that you want to
# auto-reply to (e.g. if they are from a specific sender, if they contain
# certain text, etc).
# 3. Fill in gmail address, password, and your target gmail label below.
# 4. Run this from cron to have it periodically check for messages.
from smtplib import SMTP