1.24.2014

Brocade Switch Cheat Sheet

For further reading: Zoning Brocade switches - Tutorial

1. Show zoning configuration
> zoneshow
> zoneshow *zonename*
2. Show overall configuration of switch
> switchshow

1.09.2014

How to make Rails Turbolinks play nicely with jQuery

On Rails 4, AJAX in my pages are not being called because of turbolinks. The solution is to wrap the javascript code around the page load event. Got this solution from this post.

What works for me is this…

var ready = function() {
...your javascript goes here...
};

$(document).ready(ready);
$(document).on('page:load', ready);