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
| ########## | |
| # Tweaked Win10 Initial Setup Script | |
| # Primary Author: Disassembler <[email protected]> | |
| # Modified by: alirobe <[email protected]> based on my personal preferences. | |
| # Version: 2.20.2, 2018-09-14 | |
| # Primary Author Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script | |
| # Tweaked Source: https://gist.github.com/alirobe/7f3b34ad89a159e6daa1/ | |
| # Tweak difference: | |
| # | |
| # @alirobe's version is a subset focused on safely disabling telemetry, some 'smart' features and 3rd party bloat ... |
| #!/usr/bin/env ruby | |
| require 'image_optim' | |
| staged_files = `git diff --cached --name-only --diff-filter=ACM`.split("\n") | |
| staged_files.select! { |f| f =~ %r{/images/} } | |
| if staged_files.any? | |
| image_optim = ImageOptim.new(pngout: false) |
| //Create Private Key with OpenSSL | |
| //openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:4096 -pkeyopt rsa_keygen_pubexp:3 -out privateKey.pem | |
| //Generate Public Key to be used at the client side (Mobile) | |
| //openssl pkey -in privateKey.pem -out publicKey.pem -pubout | |
| const crypto = require('crypto') | |
| const fs = require('fs') | |
| const private_key = fs.readFileSync('digital_sign/privateKey.pem', 'utf-8') | |
| //File to be signed | |
| const package = fs.readFileSync('webpackage.zip') |
| http://sha256timestamp.ws.symantec.com/sha256/timestamp | |
| http://timestamp.globalsign.com/scripts/timstamp.dll | |
| https://timestamp.geotrust.com/tsa | |
| http://timestamp.verisign.com/scripts/timstamp.dll | |
| http://timestamp.comodoca.com/rfc3161 | |
| http://timestamp.wosign.com | |
| http://tsa.startssl.com/rfc3161 | |
| http://time.certum.pl | |
| http://timestamp.digicert.com | |
| https://freetsa.org |
This document details some tips and tricks for creating redux containers. Specifically, this document is looking at the mapDispatchToProps argument of the connect function from [react-redux][react-redux]. There are many ways to write the same thing in redux. This gist covers the various forms that mapDispatchToProps can take.
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| <?php | |
| /* | |
| Plugin Name: Link PDF Attachment | |
| Plugin URI: http://premium.wpmudev.org | |
| Description: Adds a link to the top of a WordPress post to the first PDF attachment | |
| Author: Chris Knowles | |
| Version: 1.0 | |
| Author URI: http://twitter.com/ChrisKnowles | |
| */ |