Usage:
gitCheck [directory]This will run git status on each repo under the directory specified. If called with no directory provided it will default to the current directory.
Changes
| # forked from https://gist.github.com/chrisjlee/2973469 | |
| [client] | |
| #password = [your_password] | |
| #port = 3306 | |
| #socket = /tmp/mysqld.sock | |
| # *** Application-specific options follow here *** | |
| # |
| --- | |
| AWSTemplateFormatVersion: 2010-09-09 | |
| Description: A basic CloudFormation template for an RDS Aurora cluster. | |
| Parameters: | |
| DatabaseInstanceType: | |
| Default: db.r3.large | |
| AllowedValues: | |
| - db.r3.large | |
| - db.r3.xlarge | |
| - db.r3.2xlarge |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
Usage:
gitCheck [directory]This will run git status on each repo under the directory specified. If called with no directory provided it will default to the current directory.
Changes
| $(window).on("scroll", function() { | |
| var scrollHeight = $(document).height(); | |
| var scrollPosition = $(window).height() + $(window).scrollTop(); | |
| if ((scrollHeight - scrollPosition) / scrollHeight === 0) { | |
| // when scroll to bottom of the page | |
| } | |
| }); |