I hereby claim:
- I am 5tefan on github.
- I am 5tefan (https://keybase.io/5tefan) on keybase.
- I have a public key whose fingerprint is ACB2 F03C 5919 56FE D14C 2A8C 34B7 CA9A 56C8 504C
To claim this, I am signing this object:
| license: gpl-3.0 |
| #!/bin/bash | |
| # PARAM | |
| mysql_master=<%= @DBMY_MASTER_HOST %> | |
| user_mysql=root | |
| password_user_mysql=<%= @USER_ROOT_DBMY_SLAVE_PASSWORD %> | |
| replication_user=<%= @REP_USER %> | |
| replication_password=<%= @REP_PASSWORD %> | |
| read -p "Etes vous sur de vouloir installer la replication ? [Y/N]" -n 1 -r |
| ... | |
| export function fetchAllLayers() { | |
| return function (dispatch) { | |
| return async.parallel( | |
| Object.keys(Layers).map( | |
| (layer) => { return function(cb) { | |
| fetchLayer(layer)(dispatch).then(() => cb(null, null)); | |
| }} | |
| ) | |
| ); |
I hereby claim:
To claim this, I am signing this object:
Set up kubectl to be used with some cluster.
In kubectl_setup.sh, give appropriate values for the variables at the top of the file.
Script from https://github.com/hermanjunge/kubernetes-digitalocean-terraform
| In a dedicated directory: | |
| 1. save custom-plotly.js and package.json | |
| 2. specify the traces you want inside custom-plotly.js | |
| 3. run `git clone [email protected]:plotly/plotly.js.git` | |
| 4. run `cd plotly.js && npm install && cd ..` to install plotly's dependencies | |
| 5. run `npm install && npm run build` to create custom-plotly.min.js | |
| 6. move custom-plotly.min.js to your project and add <script src="custom-plotly.min.js" charset="utf-8"></script> | |
| 7. profit? global `Plotly` available. |