File type | Sublime Text | Atom |
---|---|---|
ActionScript | source.actionscript.2 | ? |
AppleScript | source.applescript | [.source.applescript] |
ASP | source.asp | ? |
Batch File | source.dosbatch | ? |
BibTex | source.bibtex | ? |
BridleNSIS | [source.nsis.bridle] | [.source.nsis.bridle] |
C | source.c | [.source.c] |
C# | source.cs | [.source.cs] |
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
#!/bin/sh | |
# For installation and usage, please refer to my blog post: | |
# http://derekstavis.github.io/posts/creating-a-installer-using-inno-setup-on-linux-and-mac-os-x/ | |
# | |
# The MIT License (MIT) | |
# | |
# Copyright (c) 2014 Derek Willian Stavis | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy |
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
.
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 | |
/** | |
* Case-insensitive in_array() wrapper. | |
* | |
* @param mixed $needle Value to seek. | |
* @param array $haystack Array to seek in. | |
* | |
* @return bool | |
*/ |