Skip to content

Instantly share code, notes, and snippets.

View abduljamac's full-sized avatar
😁

Abdul Jamac abduljamac

😁
View GitHub Profile
@abduljamac
abduljamac / docker-help.md
Created June 13, 2020 23:47 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@abduljamac
abduljamac / geocode.py
Created July 12, 2018 14:16 — forked from pnavarrc/geocode.py
Using Python requests and the Google Maps Geocoding API
# Using Python requests and the Google Maps Geocoding API.
#
# References:
#
# * http://docs.python-requests.org/en/latest/
# * https://developers.google.com/maps/
import requests
GOOGLE_MAPS_API_URL = 'http://maps.googleapis.com/maps/api/geocode/json'