- Download & install Chrome
- Login & sync settings/whatever else
- General -> Use dark menu bar
- General -> Default web browser: Google Chrome
| function onFormSubmit(e) { | |
| var data = { | |
| "form": { | |
| "id": e.source.getId(), | |
| "title": e.source.getTitle() ? e.source.getTitle() : "Untitled Form", | |
| "is_private": e.source.requiresLogin(), | |
| "is_published": e.source.isAcceptingResponses(), | |
| }, | |
| "response": { | |
| "id": e.response.getId(), |
| #!/usr/bin/env bash | |
| echo $BASH_VERSION | |
| # GVM readme: https://github.com/e-nikolov/gvm/blob/master/README.md | |
| bash < <(curl -s -S -L https://raw.githubusercontent.com/e-nikolov/gvm/master/binscripts/gvm-installer) | |
| source $HOME/.gvm/scripts/gvm | |
| gvm install go1.6 --prefer-binary | |
| gvm install go1.6.2 --prefer-binary |
| package enum_example | |
| import ( | |
| "bytes" | |
| "encoding/json" | |
| ) | |
| type DataType int |