Skip to content

Instantly share code, notes, and snippets.

@vinzv
vinzv / rilconvert.sh
Created November 7, 2011 19:47
ugly hack for importing readitlater to springpad
#!/bin/bash
# (c) Vinzenz Vietzke <vietzke@b1-systems.de>
#
# ugly hack for importing readitlater to springpad:
# convert readitlater export files to delicious import format
#
# usage: ./rilconvert.sh input-filename.html outpad-filename.html
echo -e "<!DOCTYPE NETSCAPE-Bookmark-file-1>
<META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=UTF-8\">

Keybase proof

I hereby claim:

  • I am vinzv on github.
  • I am vinzv (https://keybase.io/vinzv) on keybase.
  • I have a public key whose fingerprint is 4906 713A B854 E975 3903 0E80 720D 9DB1 566C 378B

To claim this, I am signing this object:

@vinzv
vinzv / openpgp.txt
Created April 22, 2018 12:09
Verknüpfte OpenKeychain-Identität
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:4906713ab854e97539030e80720d9db1566c378b]
@vinzv
vinzv / local.conf
Created April 11, 2020 10:18
Get full colored Emoji on Linux
# Place this file in /etc/fonts/local.conf
#
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<match target="font">
<edit mode="assign" name="rgba">
<const>rgb</const>
</edit>
</match>
@vinzv
vinzv / cloneall.sh
Created June 14, 2021 19:05 — forked from potter0815/cloneall.sh
clone all private repos of an organization
#!/bin/bash
#requires jq -> http://stedolan.github.io/jq/
#optional change working_dir
working_dir=${1-$(pwd)}
cd $working_dir
user="github_username"
token="application token"
organization="Organization_Name"