Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
Things that make everything better: | |
• 💙 Blue | |
• 🍫 Chocolate | |
• ☕️ Coffee | |
• 👭 Cynthia | |
• 🎸 Shoegaze | |
• () JavaScript | |
• 👗 Dresses | |
• ❌ Cancelled meetings |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
A Ruby script to generate simple Amazon S3 Redirection Rules XML file.
Update: There is an app for that now! Use Amazon S3 Redirector (Web app) and you can generate the XML without any knowledge about Ruby. Thanks to @rainforestapp. BTW, It's open source too.
// 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') { |
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.
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; | |
} |
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. |