- 2 gallons apple juice
- 1/2 gallon cranberry juice, unsweetened or sweetened
- 2 cups orange juice
- 1 tablespoon allspice
- 1 tablespoon cloves
- 1 tablespoon nutmeg or cinnamon, I can't remember which
- 3 drops orange extract
- 2.5 pounds sugar (powdered or granulated, white or brown; feel free to lessen the sugar content)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Create syntax for TABLE 'wp_swp_cf' | |
CREATE TABLE `wp_swp_cf` ( | |
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`metakey` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', | |
`term` int(20) unsigned NOT NULL, | |
`count` bigint(20) unsigned NOT NULL, | |
`post_id` bigint(20) unsigned NOT NULL, | |
PRIMARY KEY (`id`), | |
KEY `metakey` (`metakey`), | |
KEY `term` (`term`), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Next year, try to: | |
* Drink more water. | |
* Drink less coffee, beer and whiskey. | |
* Eat a vegetable, it won't kill you. | |
* Get up and hit the gym in the morning. | |
* Leave the hotel at least once every day. | |
* Bring extra charging cords and a powerstrip. Write your name on the supplies you lend out. (@ecarewgrovum) | |
* Eat meals with parties of 4. It's much easier to get a table in a busy town. For big groups, just get drinks. | |
* Split into smaller groups, if you take a large party to dinner, and you have to wait forever. (@chrislkeller) |
This is a fork of original gist https://gist.github.com/nrollr/3f57fc15ded7dddddcc4e82fe137b58e, with slight changes on pointing to 5.7 version branch, instead of 8 (latest default of MySQL in Hombrew).
This procedure explains how to install MySQL using Homebrew on macOS (Sierra 10.12 and up)
- Installing Homebrew is effortless, open Terminal and enter :
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Note: Homebrew will download and install Command Line Tools for Xcode 8.0 as part of the installation process.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Creates a multipart/form-data body for an image and form fields. | |
* | |
* @param string $file_path The path to the file. | |
* @param string $filename The base filename, if different from the file path. | |
* @param array $fields The form fields. | |
* @return array The boundary ID and the body. | |
*/ |