Help with SQL commands to interact with a MySQL database
- Mac /usr/local/mysql/bin
- Windows /Program Files/MySQL/MySQL version/bin
- Xampp /xampp/mysql/bin
| ################################################################################ | |
| # Set math environment, to allow some snippets to run only when in inline or | |
| # disp math. i.e. sr ==> disregard != di^2egard. | |
| ################################################################################ | |
| global !p | |
| texMathZones = ['texMathZone'+x for x in ['A', 'AS', 'B', 'BS', 'C', 'CS', 'D', 'DS', 'E', 'ES', 'F', 'FS', 'G', 'GS', 'H', 'HS', 'I', 'IS', 'J', 'JS', 'K', 'KS', 'L', 'LS', 'DS', 'V', 'W', 'X', 'Y', 'Z']] | |
| texIgnoreMathZones = ['texMathText'] |
| #!/bin/bash | |
| set -x #echo on | |
| remote_url=$(git config --get remote.origin.url) | |
| for branch in $(git branch --all | grep '^\s*remotes' | egrep --invert-match '(:?HEAD|master)$'); do | |
| branch_name=$(echo $branch| cut -d'/' -f 3) | |
| git clone -b $branch_name $remote_url $branch_name | |
| done |
| // ==UserScript== | |
| // @name get vsix | |
| // @namespace https://gist.github.com/Mido22 | |
| // @include https://marketplace.visualstudio.com/items?itemName=* | |
| // @version 0.0.1 | |
| // @grant none | |
| // ==/UserScript== | |