Skip to content

Instantly share code, notes, and snippets.

View jonathanMelly's full-sized avatar
🧘‍♂️
Enjoying the flowing process of life

Jonathan Melly jonathanMelly

🧘‍♂️
Enjoying the flowing process of life
  • etml
  • switzerland
  • 19:35 (UTC +01:00)
View GitHub Profile
@jonathanMelly
jonathanMelly / vid-to-gif.sh
Last active October 30, 2021 18:15 — forked from anonymous/vid-to-gif.sh
video 2 gif converter
#!/bin/bash
# rev4 - changes suggested by KownBash https://www.reddit.com/r/bash/comments/5cxfqw/i_wrote_a_simple_video_to_gif_bash_script_thought/da19gjz/
# Usage function, displays valid arguments
usage() { echo "Usage: $0 [-f <fps, defaults to 15>] [-w <width, defaults to 480] inputfile" 1>&2; exit 1; }
# set input variable to the first option after the arguments
input="${1}"
@jonathanMelly
jonathanMelly / github-azure-love.user.js
Last active April 7, 2020 15:23 — forked from knl/github-jira-love.js
Greasemonkey user script to link back to Azure devops from GitHub (forked from http://github.com/knl)
// ==UserScript==
// @name GitHub/Azure devops Links
// @namespace http://github.com/jonathanMelly
// @author jmy
// @version 1.0
// @description Link to azure devops work items from Github
// @match https://github.com/**
// @run-at document-end
// @noframes
// @grant none