git-checkout 0f0d8a27622e7bf7f008983c4b8ee23bfb9843ab
> make your changes here
editor path/to/file
git-add path/to/file
git-commit --amend -v
git-rebase --onto HEAD 0f0d8a27622e7bf7f008983c4b8ee23bfb9843ab master
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
[Conditional("DEBUG")] | |
public static void WaitForDebugger(ref string[] args) | |
{ | |
if (args.Length >= 1 && | |
(String.Equals("dbg", args[0], StringComparison.OrdinalIgnoreCase) || | |
String.Equals("debug", args[0], StringComparison.OrdinalIgnoreCase))) | |
{ | |
args = args.Skip(1).ToArray(); | |
Console.WriteLine("Waiting for Debugger..."); | |
Debugger.Launch(); |
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
set $ssl off; | |
if ($scheme = https) { | |
set $ssl on; | |
} | |
proxy_set_header X-Forwarded-Ssl $ssl; |
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
/// <summary> | |
/// Run the sorting routine for the XML document. | |
/// </summary> | |
/// <param name="sourceDoc"></param> | |
/// <returns></returns> | |
public XDocument RunSort(string sourceDoc, int level, string attribute, int sortAttributes) | |
{ | |
XDocument doc = XDocument.Load(sourceDoc); | |
//Add these two hard-coded values as options from within the UI so we can apply it to any XML file. |
Like compressor.io
.\pngquant.exe --force --ext .png --quality=30-50 .\pics\*.png
.\optipng.exe --clobber -o99 .\pics\*.png
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
((.*\<Platform.*>)(.*)(</Platform>)\n(\s*)) | |
$1<PlatformTarget Condition=" '$(PlatformTarget)' == '' ">$3</PlatformTarget>\n$5 | |
(.*\<PlatformTarget.*>)(.*)(</PlatformTarget>\n) | |
$1$(Platform)$3 |
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
git push remote local_branch:remote_branch |
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
git branch -m old_branch new_branch # Rename branch locally | |
git push origin :old_branch # Delete the old branch | |
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
- Pull down all of the files from this gist.
- Update
<<YOUR_URL_HERE>>
indocker-compose.yml
and<<YOUR_PROJECT_NAME_HERE>>
inupdate.sh
. - Run
./update.sh
.
From this point onward, you just run ./update.sh
whenever you want to update your docker image. Alternatively, you can put the update script in a cron job, and update it however often you want.
NewerOlder