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
| function gg() { | |
| cd ~/cbsi | |
| find . \ | |
| -mindepth 1 -maxdepth 2 \ | |
| -type d -name .git \ | |
| | while read git_dir; do | |
| dir=`dirname $git_dir` | |
| echo $dir: | |
| cd $dir | |
| git $* |
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
| class NewSignupsBySite(SiteMetricsPanel): | |
| filters = {'action': 'signup'} | |
| dimension = 'site' | |
| verbose_name = 'New Signups by Site' | |
| time_based_aggregations = ((cube.Count(), 'Over Time'), ) | |
| summary_aggregations = ((cube.Count(), 'Total'), ) | |
| comparison_aggregations = ( | |
| ('video_type_name', cube.Count(), 'By Plan Type'), | |
| ) | |
| site.register(CentralAuthCube, NewSignupsBySite) |
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
| $('#js_project_1').click(function() { | |
| if ($('#js_table_1').is(':visible')) { | |
| $('#js_table_1').fadeOut('slow') | |
| } else { | |
| $('#js_table_1').fadeIn('slow') | |
| } | |
| }); |
NewerOlder