Skip to content

Instantly share code, notes, and snippets.

@artfaal
artfaal / Vagrant
Last active August 29, 2015 14:11
Vagrant for VirtualBox and Digital Ocean
# -*- mode: ruby -*-
# Vagrant makefile for VirtualBox
box = 'Ubuntu/trusty64'
hostname = ''
ram = '512'
Vagrant.configure(2) do |config|
config.vm.box = box
config.vm.host_name = hostname
# Taken from https://github.com/leandrotoledo/python-telegram-bot/blob/master/telegram/emoji.py
"""This module contains a object that represents an Emoji"""
class Emoji(object):
"""This object represents an Emoji."""
GRINNING_FACE_WITH_SMILING_EYES = b'\xF0\x9F\x98\x81'
FACE_WITH_TEARS_OF_JOY = b'\xF0\x9F\x98\x82'