all open ports: netstat -ntlp | grep LISTEN
git diff lines: git diff --stat `git hash-object -t tree /dev/null` | tail -1
| "ga:userType": "User Type", | |
| "ga:visitorType": "User Type", | |
| "ga:sessionCount": "Count of Sessions", | |
| "ga:visitCount": "Count of Sessions", | |
| "ga:daysSinceLastSession": "Days Since Last Session", | |
| "ga:userDefinedValue": "User Defined Value", | |
| "ga:userBucket": "User Bucket", | |
| "ga:users": "Users", | |
| "ga:visitors": "Users", | |
| "ga:newUsers": "New Users", |
| "uiName": "User Type", | |
| "uiName": "User Type", | |
| "uiName": "Count of Sessions", | |
| "uiName": "Count of Sessions", | |
| "uiName": "Days Since Last Session", | |
| "uiName": "User Defined Value", | |
| "uiName": "User Bucket", | |
| "uiName": "Users", | |
| "uiName": "Users", | |
| "uiName": "New Users", |
| "id": "ga:userType", | |
| "id": "ga:visitorType", | |
| "id": "ga:sessionCount", | |
| "id": "ga:visitCount", | |
| "id": "ga:daysSinceLastSession", | |
| "id": "ga:userDefinedValue", | |
| "id": "ga:userBucket", | |
| "id": "ga:users", | |
| "id": "ga:visitors", | |
| "id": "ga:newUsers", |
This is a working instructional to deploy a Mongo 3.2.7 remote database with the following (as of January 8th, 2017):
| <?php | |
| require("twitteroauth/twitteroauth.php"); | |
| session_start(); | |
| // The TwitterOAuth instance | |
| $twitteroauth = new TwitterOAuth('Qsa1aT0cuqarOH45nJp9Jw', 'wivzv9Up61ot08dUbZYf9d22RTEYJBYdEJWbPwM'); | |
| // Request authentication tokens and provide redirect URL | |
| $request_token = $twitteroauth->getRequestToken('http://localhost/twitter_oauth.php'); |
| <html> | |
| <head> | |
| <style> | |
| #headerbox { | |
| width:838px; | |
| height:50px; | |
| margin-left:auto; | |
| margin-right:auto; | |
| margin-top:20px; | |
| } |
| <html> | |
| <head> | |
| <title>HEADER</title> | |
| </head> | |
| <body> | |
| </body> | |
| </html> | |
| <?php |
| <?php | |
| error_reporting(E_ERROR); | |
| session_start(); | |
| if (! isset($_SESSION["user"])) { | |
| header("Location: /IDEA/login/index.php"); | |
| } | |
| if ($_GET["cmd"] == "logout") { | |
| session_unset(); |