Skip to content

Instantly share code, notes, and snippets.

View victorkristof's full-sized avatar

Victor Kristof victorkristof

View GitHub Profile
@victorkristof
victorkristof / epetition-explorer.ipynb
Last active July 27, 2016 08:13
UK parliament ePetition explorer.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@victorkristof
victorkristof / git-fatal-cr-lf-fix.md
Created August 10, 2016 15:05
Git Fatal CR LF Fix

UNIX to DOS (adding CRs)

sed -e 's/$/\r/' inputfile > outputfile

DOS to UNIX (removing CRs)

sed -e 's/\r$//' inputfile > outputfile

Convert to DOS

perl -pe 's/\r\n|\n|\r/\r\n/g' inputfile > outputfile

Convert to UNIX