Skip to content

Instantly share code, notes, and snippets.

@eran3d
eran3d / JiraOmniFocus.py
Created April 7, 2017 12:51 — forked from adammorris/JiraOmniFocus.py
Example snippet on how to sync from JIRA to OmniFocus.
"""
Example snippet on how to sync from JIRA to omnifocus.
The main function is OmniFocus.sync_jira_to_omnifocus().
OmniFocus.process_jira_data() is customized to filter projects based on my own needs and will need updating.
"""
from applescript import AppleScript, ScriptError
from datetime import datetime
from json import JSONDecoder
from logging import getLogger
@eran3d
eran3d / project.yml
Last active February 6, 2019 22:47
xcodegen template
name: "${project_name}"
options:
bundleIdPrefix: ink.jal
targets:
"${project_name}":
type: application
platform: iOS
deploymentTarget: "10.0"
sources: [Sources]
settings:
#!/bin/bash
# Bash Helper Parameters
set -o errexit # Exit on uncaught errors
set -o nounset # Don't allow unset variables
set -o pipefail # Fail pipe on first error
# Variables
xcodegen_yaml="https://gist.githubusercontent.com/eran3d/61018abb8d7736a0a380fa9fda20c6f9/raw/project.yml?cachebust=xxx"