Skip to content

Instantly share code, notes, and snippets.

@juanpaulo
juanpaulo / calendar-events.xml
Last active April 8, 2016 03:58
OPTIONS /rest/calendar-services/1.0/calendar/events HTTP/1.1
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<application xmlns="http://research.sun.com/wadl/2006/10">
<doc xmlns:jersey="http://jersey.java.net/" jersey:generatedBy="Jersey: 1.8-atlassian-16 03/23/2015 10:20 PM"/>
<resources base="https://{confluence domain}/rest/calendar-services/1.0/">
<resource path="calendar/events">
<method name="DELETE" id="deleteEvent">
<response>
<representation mediaType="application/json"/>
</response>
</method>
@juanpaulo
juanpaulo / calendar.xml
Created April 8, 2016 03:57
OPTIONS /rest/calendar-services/1.0/calendar HTTP/1.1
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<application xmlns="http://research.sun.com/wadl/2006/10">
<doc xmlns:jersey="http://jersey.java.net/" jersey:generatedBy="Jersey: 1.8-atlassian-16 03/23/2015 10:20 PM"/>
<resources base="https://{confluence host}/rest/calendar-services/1.0/">
<resource path="calendar">
<resource path="events">
<method name="DELETE" id="deleteEvent">
<response>
<representation mediaType="application/json"/>
</response>
# Python (pyenv)
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
# Golang
export PATH="/usr/local/go/bin:$PATH"