Skip to content

Instantly share code, notes, and snippets.

# Make sure you grab the latest version
curl -OL https://github.com/google/protobuf/releases/download/v3.3.0/protoc-3.3.0-linux-x86_64.zip
# Unzip
unzip protoc-3.3.0-linux-x86_64.zip -d protoc3
# Move protoc to /usr/local/bin/
sudo mv protoc3/bin/* /usr/local/bin/
# Move protoc3/include to /usr/local/include/
@lankanmon
lankanmon / drivingDistanceAndTime.gs
Created May 21, 2017 04:27
Find the distance (in KM or MI) and driving time between locations stored in Google Sheets. Distances and Time provided by Google Apps Script Maps Service.
/** drivingDistanceAndTime.gs **/
/** Find the distance (in KM or MI) and driving time between locations
stored in Google Sheets. Distances and Time provided by Google Apps Script Maps Service */
/** Note: This is built on top of Google App Scripts Code **/
/** Licensed under the Apache 2.0 License **/
/** By: Sandu Rajapakse - lankanmon **/
/** === USAGE INSTRUCTIONS ===
To use these functions in Google Sheets, place this code in a new script in the Script Editor.
# Make sure you grab the latest version
curl -OL https://github.com/google/protobuf/releases/download/v3.2.0/protoc-3.2.0-linux-x86_64.zip
# Unzip
unzip protoc-3.2.0-linux-x86_64.zip -d protoc3
# Move protoc to /usr/local/bin/
sudo mv protoc3/bin/* /usr/local/bin/
# Move protoc3/include to /usr/local/include/