I hereby claim:
- I am k3ithos on github.
- I am k3ithos (https://keybase.io/k3ithos) on keybase.
- I have a public key whose fingerprint is 1538 D3BC 9059 5D36 3C83 D6BE 23E3 0074 88F5 CCF6
To claim this, I am signing this object:
<?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 { |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
import re | |
import fileinput | |
def this_line_is_useless(line): | |
useless_es = [ | |
'BEGIN TRANSACTION', | |
'COMMIT', | |
'sqlite_sequence', |
language: php | |
php: | |
- 7.0 | |
branches: | |
only: | |
# Set the branches you want built here, as shown below in "master" | |
- master | |
before_script: | |
- pecl install channel://pecl.php.net/pthreads-3.1.6 |
# PROJECT SPECIFICATIONS | |
language: php | |
php: | |
- 7.0 | |
branches: | |
except: | |
- "/^*-v[0-9]/" | |
# WORKSPACE CONFIGURATION | |
before_script: |
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.
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
.