Skip to content

Instantly share code, notes, and snippets.

View lboullo0's full-sized avatar

Lucas lboullo0

  • MR
  • Rosario, Sante Fe, Argentina
View GitHub Profile
@lboullo0
lboullo0 / gource.md
Created August 12, 2022 00:22 — forked from ChuckJHardy/gource.md
Gource Recording for Git

Install Gource

brew install gource

Convert Quicktime Movie to Animated Gif

ffmpeg -i in.mov -s 600x400 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > out.gif

Record Gource

@lboullo0
lboullo0 / modal.js
Last active April 18, 2018 21:35
Para que un modal de Bootstrap actualice el contenido de una llamada ajax. Reload modal content on Bootstrap after ajax call
$('body').on('hidden.bs.modal', '.modal', function () {
$(this).removeData('bs.modal');
});