- Peychaud's Bitters | 3-5 squirts
- Angostura Bitters | 2-5 squirts
- Juice of 1/2 Lime
- Seltzer Water | 12 oz | Chilled
This file contains 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
# Usage: | |
# bash image2urijpeg.sh image.jpg 320x240 > base64.txt # will resize before conversion | |
# bash image2urijpeg.sh image.jpg > base64.txt # will keep original size | |
magick "$1" -resize ${2:--} jpeg:- | openssl enc -base64 -A | sed -e 's/^/data:image\/jpeg;base64,/' |
This playbook is a step-by-step guide to assist you with migration from GitLab to GitHub.com Enterprise Cloud GHEC.
Steps & Tasks | Description |
---|---|
Step One | Let's get ready for the migration. This step gives you an overview of what is required to start the migration process |
Step Two | Creating the artefact to be imported on GitHub requires special access to the Enterprise Cloud Import tool. This step will help you understand what is required to get access to the tool. |
Step Three | With the file ready to be imported, this step will guide you on how to connect and upload the file to your GitHub Enterprise Cloud instance. |
This file contains 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
function moon_phase(date) { // ported from http://www.voidware.com/moon_phase.htm | |
var year = date.getFullYear(), | |
month = date.getMonth(), | |
day = date.getDay(); | |
if (month < 3) { | |
year--; | |
month += 12; | |
} |
Copycat recipe for Skyline-style Cincinnati chili, modified from [this recipe] (http://www.food.com/recipe/skylike-chili-skyline-chili-copycat-110548).
In the time that I've spent trying to find/create a decent copycat recipe, this is about as close as I've gotten. When done right, it tastes a lot like the canned original Skyline, but I can't quite get it to taste 100% like the restaurant quality. YMMY and YUMMY both.
- 2 lbs 85% lean ground beef
- 2 medium onions, finely chopped
- 4-5c beef stock
- 2 (8oz) cans of tomato sauce
This file contains 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
// gopher.js - a gopher implementation using node.js | |
// Released under the 3 clause BSD license by Matt Croydon <[email protected]> (http://postneo.com) | |
// Forked by Emma Humphries (https://emmah.net/) for stupid Internet of Things tricks | |
var net = require('net'); | |
net.createServer(function (socket) { | |
socket.setEncoding("ascii"); | |
socket.on("data", function (data) { | |
if (data === '\r\n') { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder