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
| <script type="text/javascript"> | |
| (function () { | |
| "use strict"; | |
| // once cached, the css file is stored on the client forever unless | |
| // the URL below is changed. Any change will invalidate the cache | |
| var css_href = './index_files/web-fonts.css'; | |
| // a simple event handler wrapper | |
| function on(el, ev, callback) { | |
| if (el.addEventListener) { | |
| el.addEventListener(ev, callback, false); |
| var Types = new Map(); | |
| Types.set(Array, function(v) { | |
| var l = v.length; i = 0, a = Array(l); | |
| for (i; i<l; i++) { | |
| a[i] = v[i]; | |
| } | |
| return a; | |
| }); | |
| Types.set(Number, function(v) { | |
| return v * 1; |
Now mirrored at blog.kaki87.net
DISCLAIMER : this isn't really an awesome list, I don't care about guidelines, rules and etc. so I don't bother make a real repo and a real pull request.
| # Rich's .gitignore file: | |
| # See https://help.github.com/ignore-files/... | |
| # leading-slash stops recursion, trailing slash = directory/ | |
| # >>>Notes <<<< | |
| notes.txt | |
| notes.md | |
| localnotes.md | |
| tutsrc.txt | |
| # >>> Dependency directories <<< |
| build/ | |
| node_modules/ | |
| package-lock.json | |
| yarn.lock | |
| package.json | |
| *.html |
| { | |
| "printWidth": 80, | |
| "tabWidth": 2, | |
| "useTabs": false, | |
| "semi": true, | |
| "singleQuote": true, | |
| "trailingComma": "all" | |
| } |
| { | |
| "compilerOptions": { | |
| "noImplicitAny": true, | |
| "target": "es5", | |
| "sourceMap": true, | |
| "declaration": true, | |
| "module": "es2015", | |
| "moduleResolution": "node" | |
| }, | |
| "exclude": [ |
| /** | |
| * This Gist is part of a medium article - read here: | |
| * https://jamiecurnow.medium.com/using-firestore-with-typescript-65bd2a602945 | |
| */ | |
| // import firstore (obviously) | |
| import { firestore } from "firebase-admin" | |
| // Import or define your types | |
| // import { YourType } from '~/@types' |