Skip to content

Instantly share code, notes, and snippets.

@yugonian
yugonian / 00 Module Variables.ps1
Created May 15, 2017 18:15 — forked from theagreeablecow/00 Module Variables.ps1
SAMReport Module for PC Health
############################################################################################################
# Module Variables - PC Health #
#----------------------------------#
# Customise report Variables
$EmailTo = $EmailTo
$EmailSubject = $EmailSubject
$ReportTitle = $ReportTitle
$ReportSubTitle = $ReportSubTitle
@yugonian
yugonian / newJiraTask.py
Created September 7, 2016 17:42 — forked from JaviSoto/newJiraTask.py
Python script to create a task on Jira (You can use this with Alfred)
import sys
import webbrowser as wb
import simplejson as json
from restkit import Resource, BasicAuth, request
def createTask(server_base_url, user, password, project, task_summary):
auth = BasicAuth(user, password)