Skip to content

Instantly share code, notes, and snippets.

View Gwerlas's full-sized avatar

Yoann Gauthier-Colin Gwerlas

View GitHub Profile
@Gwerlas
Gwerlas / dvd-backup.sh
Last active February 5, 2019 22:41
A small script to backup a DVD
#!/bin/bash
set -Eeuo pipefail
WORKDIR=$(mktemp -d)
TMDB_API_KEY="your-key-here"
VIDEOS="$HOME/Videos"
trap "An error occured, temporary files have been kept in $WORKDIR" ERR
@Gwerlas
Gwerlas / jira2gitlab.py
Last active November 22, 2023 12:51
Migrate Jira issues to Gitlab
import requests
from requests.auth import HTTPBasicAuth
import re
from StringIO import StringIO
import uuid
# Inspired from https://gist.github.com/toudi/67d775066334dc024c24
# Tested on Jira 7.4 and Gitlab 2.2 with Python 2.7
JIRA_URL = 'https://your-jira-url.tld/'
JIRA_ACCOUNT = ('jira-username', 'jira-password')