This script clears caches from GlobalSign, which hopefully solves a lot of issues on a lot of sites.
Use at your own risk
Run with sudo
I do not advise you to use this if you don't understand "How to use" instrcution
| #!/bin/bash | |
| if [[ $EUID -ne 0 ]]; then | |
| sleep 3 | |
| echo "Not running as root" | |
| exit 3 | |
| fi | |
| label=com.apple.eligibilityd |
Largely based on the Tensorflow 1.6 gist, and Tensorflow 1.7 gist for xcode and Tensorflow 1.7 gist for eGPU, this should hopefully simplify things a bit.
Largely based on the Tensorflow 1.6 gist, and Tensorflow 1.7 gist for xcode, this should hopefully simplify things a bit.
| $('.reactable-data').find('tr').toArray() | |
| .map(tr=> | |
| $(tr).find('td').toArray() | |
| .map(td=> | |
| [$(td).attr('label').replace(',[object Object]',''), | |
| $(td).attr('value') && $(td).attr('value').match('[object Object]') ? $(td).text() : $(td).attr('value') | |
| ] | |
| ) | |
| .reduce((map, tuple) => { | |
| if(tuple[0] != ' '){ |
| add_library("serial") | |
| add_library("arduino") | |
| from coordinate import * | |
| from scheduler import Scheduler | |
| # from entities import * | |
| # TODO: move to seperate file | |
| # === entities === | |
| class Button: |