Skip to content

Instantly share code, notes, and snippets.

View Dcerverizzo's full-sized avatar
:shipit:
working at @cobrefacil

Daniel Cerverizzo Dcerverizzo

:shipit:
working at @cobrefacil
View GitHub Profile
@Dcerverizzo
Dcerverizzo / README.md
Created June 17, 2019 18:17 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@Dcerverizzo
Dcerverizzo / pry.rb
Created March 20, 2019 18:54 — forked from aalvesjr/pry.rb
Tutorial para usar PRY
# instalar a GEM pry
gem install pry pry-doc
# executa console
pry
# curiosidades:
# auto-complete com TAB
# entrar no contexto do objeto com cd <objeto>
# possui paginação automatica