Skip to content

Instantly share code, notes, and snippets.

View plaeremans's full-sized avatar

Pieter Laeremans plaeremans

View GitHub Profile
@plaeremans
plaeremans / gist:f0da27150e57b147337feb819e3b01a3
Created October 20, 2020 08:41
Connecting to the jira server with a python api, without verifying certificate of the server
# you need to instajj jira module : pip install jira
from jira import JIRA
jac = JIRA('https://jira.uz.kuleuven.ac.be', options={'verify':False},basic_auth=('<username>', '<pwd>') )

Keybase proof

I hereby claim:

  • I am plaeremans on github.
  • I am plaeremans (https://keybase.io/plaeremans) on keybase.
  • I have a public key ASC6BT93Y-v6S0A5xmrHMkXrLd0Sz1gphLDfm0pu1fJiHQo

To claim this, I am signing this object:

@plaeremans
plaeremans / play.ns
Created May 19, 2012 16:07
Playing with pallet
(ns play2
"playing with pallet"
(:use
[pallet.core :only [group-spec server-spec node-spec]]
[pallet.configure]
[pallet.crate.automated-admin-user :only [automated-admin-user]]
[pallet.action.package]
[pallet.phase :only [phase-fn]]))