Skip to content

Instantly share code, notes, and snippets.

View k3ithos's full-sized avatar
🏠
Working from home

Keith k3ithos

🏠
Working from home
View GitHub Profile
@k3ithos
k3ithos / StringUtils.php
Created February 3, 2018 01:47 — forked from Muqsit/StringUtils.php
minet str center
<?php
/**
* Source from:
* https://github.com/NiclasOlofsson/MiNET/blob/master/src/MiNET/MiNET/Utils/TextUtils.cs
*/
namespace cosmiccore\miscs;
use pocketmine\utils\TextFormat as TF;
class StringUtils {
@k3ithos
k3ithos / auto-deploy.md
Created March 29, 2016 21:18 — forked from domenic/0-github-actions.md
Auto-deploying built products to gh-pages with Travis

Auto-deploying built products to gh-pages with Travis

This is a set up for projects which want to check in only their source files, but have their gh-pages branch automatically updated with some compiled output every time they push.

Create a compile script

You want a script that does a local compile to e.g. an out/ directory. Let's call this compile.sh for our purposes, but for your project it might be npm build or gulp make-docs or anything similar.

The out/ directory should contain everything you want deployed to gh-pages. That almost always includes an index.html.