This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
1. Create a new repo and setup your pipeline to match JIRA | |
2. Edit the constants to suit your needs | |
3. Run `source jira.env` | |
4. Run `python jira-migration.py` | |
""" | |
import os | |
import requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// sketch.scriptPath is an absolute path from ~ to the parent directory of the .sketchplugin | |
var pluginPath = sketch.scriptPath.substring(0, sketch.scriptPath.lastIndexOf('/')); | |
var baseUrl = 'https://api.spotify.com/v1' | |
var el = getArray(); | |
if (el != null) { | |
var alert = createAlertBase('spotify'); | |
alert.setMessageText("Options"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Dump Object | |
function dump_obj(obj){ | |
log("#####################################################################################") | |
log("## Dumping object " + obj ) | |
log("## obj class is: " + [obj className]) | |
log("#####################################################################################") | |
log("obj.properties:") | |
log([obj class].mocha().properties()) | |
log("obj.propertiesWithAncestors:") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# gem install cloudapp_api | |
require 'cloudapp_api' | |
def delete(drops) | |
drops = CloudApp::Drop.all | |
drops.each do |drop| | |
puts "Deleting #{drop.url}" | |
drop.delete | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Please wait ... | |
asdasdsaddsads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
montage -background '#db4228' *.png result1.png; | |
montage -texture bg_ipad.png *.png result5.png; |