Skip to content

Instantly share code, notes, and snippets.

View s-leroux's full-sized avatar

Sylvain Leroux s-leroux

View GitHub Profile

Prepare

export OBS_USERNAME=M0ses

APPImage

Create new project

Create temporary config file

@s-leroux
s-leroux / svglinkify.py
Last active January 26, 2017 15:02 — forked from oxplot/svglinkify.md
Add hyperlinks to PDFs created by Inkscape
#!/usr/bin/env python
# svglinkify.py - Add hyperlinks to PDFs generated by Inkscape
# Copyright (C) 2015 Mansour Behabadi <mansour@oxplot.com>
#
# This script comes with no warranty whatsoever. Use at your own risk.
# If you decide to distribute verbatim or modified versions of this
# code, you must retain this copyright notice.
#
# Usage: svglinkify.py <svg-file> <inkscape-gen-pdf> <linkified-pdf>
# Requires:
@s-leroux
s-leroux / QueryParams.js
Last active January 13, 2016 14:55 — forked from andrewjmead/QueryParams.js
Get Query Params By Name
function getQueryVariable(variable) {
var query = window.location.search.substring(1);
var vars = query.split('&');
for (var i = 0; i < vars.length; i++) {
var pair = vars[i].split('=');
if (decodeURIComponent(pair[0]) == variable) {
return decodeURIComponent(pair[1].replace(/\+/g, '%20'));
}
}