I hereby claim:
- I am dancrumb on github.
- I am dancrumb (https://keybase.io/dancrumb) on keybase.
- I have a public key ASA6_TCzADHTSRrKPtPINXssd-nodRzpd1TWSea8ZP3PJQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| user nginx; | |
| worker_processes auto; | |
| error_log /Users/danrumney/projectname/ohp/nginx/logs/error.log; | |
| include /usr/share/nginx/modules/*.conf; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| log_format main '$remote_addr - $remote_user [$time_local] "$request" ' | |
| '$status $body_bytes_sent "$http_referer" ' |
| import React, {Component} from 'react'; | |
| import ToggleButtonGroup from 'react-bootstrap/lib/ToggleButtonGroup'; | |
| import ToggleButton from 'react-bootstrap/lib/ToggleButton'; | |
| // import './AppointmentModal.css'; | |
| class AppointmentModalDemo extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.isAppMade = this.isAppMade.bind(this); | |
| } |
| 0 info it worked if it ends with ok | |
| 1 verbose cli [ '/Users/danrumney/.nvm/versions/node/v6.9.1/bin/node', | |
| 1 verbose cli '/Users/danrumney/.nvm/versions/node/v6.9.1/bin/npm', | |
| 1 verbose cli 'i', | |
| 1 verbose cli '@jellyvision/talentshow-view' ] | |
| 2 info using npm@3.10.8 | |
| 3 info using node@v6.9.1 | |
| 4 silly loadCurrentTree Starting | |
| 5 silly install loadCurrentTree | |
| 6 silly install readLocalPackageData |
| var chalk = require('chalk'); | |
| var error = chalk.red.bold; | |
| var warn = chalk.yellow.bold; | |
| var info = chalk.blue.bold; | |
| var debug = chalk.gray.bold; | |
| var LOG_ERROR = 0; | |
| var LOG_WARN = 1; | |
| var LOG_INFO = 2; |
| # OAuth 2: A Conversation | |
| ## Dramatis Personae | |
| - Colin: OAuth Client | |
| - Polly: OAuth User (a person) | |
| - Roger: OAuth Resource Server | |
| - Annie: OAuth Authorization Server | |
| ## Scene 1: Authorization Code Grant |
| <h1 id="oauth-2-a-conversation">OAuth 2: A Conversation</h1> | |
| <h2 id="dramatis-personae">Dramatis Personae</h2> | |
| <ul> | |
| <li>Colin: OAuth Client</li> | |
| <li>Polly: OAuth User (a person)</li> | |
| <li>Roger: OAuth Resource Server</li> |
| <?php | |
| $args = array( | |
| 'orderby' => 'display_name', | |
| 'who' => 'authors', | |
| 'exclude' => '17,10,20,22,6,19' // string | |
| ); | |
| $users = get_users($args); | |
| ?> | |
| <select name="user" id="user" class=""> | |
| <?php |
| var generators = require('yeoman-generator'); | |
| var fs = require('fs'); | |
| var path = require('path'); | |
| var _ = require('lodash'); | |
| var VolumeAdderBase = module.exports = generators.Base.extend({ | |
| initializing: function() { | |
| /* ... */ | |
| }, |