This is a sample script for sending Gmail with the title and body including Emoji using Google Apps Script.
This sample script uses Gmail API. So please enable Gmail API at Advanced Google services. Ref
This is a sample script for sending Gmail with the title and body including Emoji using Google Apps Script.
This sample script uses Gmail API. So please enable Gmail API at Advanced Google services. Ref
# oh-my-zsh Theme | |
# Default robbyrussell theme with node version info. | |
# Installation: place this file in .oh-my-zsh/custom/themes/robbyrussell.zsh_theme | |
function node_prompt_version { | |
if which node &> /dev/null; then | |
echo "%{$fg_bold[blue]%}node(%{$fg[red]%}$(node -v)%{$fg[blue]%}) %{$reset_color%}" | |
fi | |
} |
Byobu Commands | |
============== | |
byobu Screen manager | |
Level 0 Commands (Quick Start) | |
------------------------------ | |
<F2> Create a new window |
# Nautilus Backspace Back Extension | |
# | |
# Place me in ~/.local/share/nautilus-python/extensions/, | |
# ensure you have python-nautilus package, restrart Nautilus, and enjoy :) | |
# | |
# This script was written by molaeiali and is released to the public domain | |
import os, gi | |
gi.require_version('Nautilus', '4.0') | |
from gi.repository import GObject, Nautilus, Gtk, Gio, GLib |
#! /usr/bin/python | |
print "\n*********************************************************************" | |
print "Cisco IOU License Generator - Kal 2011, python port of 2006 C version" | |
import os | |
import socket | |
import hashlib | |
import struct | |
# get the host id and host name to calculate the hostkey | |
hostid=os.popen("hostid").read().strip() | |
hostname = socket.gethostname() |