Skip to content

Instantly share code, notes, and snippets.

View dvydra's full-sized avatar

Daniel Vydra dvydra

  • Melbourne, Australia
View GitHub Profile
@dypsilon
dypsilon / frontendDevlopmentBookmarks.md
Last active April 20, 2025 23:00
A badass list of frontend development resources I collected over time.
@lusis
lusis / irbrc.rb
Created January 26, 2011 16:07
Add this to disable irb echo
# via http://tagaholic.me/2009/05/29/exploring-how-to-configure-irb.html#echo
def irb_verbosity_toggle
irb_context.echo ? irb_context.echo = false : irb_context.echo = true
end