Skip to content

Instantly share code, notes, and snippets.

View MobiDevelop's full-sized avatar

Justin Shapcott MobiDevelop

  • Phoenix, AZ, USA
View GitHub Profile
@MobiDevelop
MobiDevelop / Additional Info.txt
Last active June 22, 2017 04:06
Google Drive Problem
Additional Info
---------------
Nexus 5
Android 4.4
Using either Android Studio or Eclipse results in the same exception
With Eclipse, added Drive API v2 from the Google Plugin. With Android Studio, included the jars manually.
@MobiDevelop
MobiDevelop / tileset.scm
Last active March 21, 2021 09:48
GIMP script to add margin adn spacing to a tilsheet
(define (script-fu-respace-tiles-addMarginSpacing inImage inLayer tileSize)
(let* (
(margin 1)
(spacing 2)
(duplicatePadding TRUE)
(theWidth (car (gimp-drawable-width inLayer)))
(theHeight (car (gimp-drawable-height inLayer)))
(theMarginX (* 2 margin))
(theMarginY (* 2 margin))