Keynote
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ./selector | |
| define ["marrow"], (Marrow) -> | |
| class SelectorView extends Marrow.View | |
| initialize: -> | |
| @DetailView = @options.detailView | |
| return SelectorView | |
| # ./pages/advertise |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Could do this as part of our initializer file | |
| Blacklead = { | |
| Collections: {} | |
| Models: {} | |
| Views: {} | |
| Routers: {} | |
| } | |
| Blacklead.Collections.getAlerts = do -> | |
| alerts = new Blacklead.Collections.AlertsCollection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| for i in `seq 1 8`; | |
| do | |
| name="userv-00$i" | |
| echo $name | |
| # Remove old | |
| vboxmanage controlvm $name poweroff | |
| vboxmanage storageattach $name --storagectl SATA\ Controller --port 0 --type hdd --device 0 --medium none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .rickshaw_graph .detail { | |
| pointer-events: none; | |
| position: absolute; | |
| top: 0; | |
| z-index: 2; | |
| background: rgba(0, 0, 0, 0.1); | |
| bottom: 0; | |
| width: 1px; | |
| transition: opacity 0.25s linear; | |
| -moz-transition: opacity 0.25s linear; |
Following the D3.js bar chart example, throwing in error bars and a transition just for kicks.
NewerOlder