Skip to content

Instantly share code, notes, and snippets.

[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();
@DoCode
DoCode / gist:c8a6afecb7b5235ef802
Created November 22, 2015 12:22 — forked from m0n5t3r/gist:1006281
set x-forwarded-ssl correctly (nginx, http+https in the same config)
set $ssl off;
if ($scheme = https) {
set $ssl on;
}
proxy_set_header X-Forwarded-Ssl $ssl;
@DoCode
DoCode / README.md
Created October 31, 2015 23:08
Correct commit history

To correct the commit history:

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
@DoCode
DoCode / gist:3b289c61741c69f12918
Last active October 30, 2015 18:10
Versioning at the project startphase

Project startphase

    ┬
    ├── 0.7              during initial development
    │   ├── 0.8-RC.1     close to stable
    ├── 0.8              completed draft undergoing review
    ├── 0.9              final draft for review
    │   ├── 0.9-ALPHA.1  first alpha release
    │   ├── 0.9-BETA.1   first beta release
 │ ├── 0.9-BETA.2 second beta release, with some fixes
@DoCode
DoCode / file.cs
Created October 27, 2015 18:44
Sort xml by attributes/tags
/// <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.
@DoCode
DoCode / gist:7b1b06c083dcab7a0c16
Last active October 27, 2015 15:34
Bulk png compression

Bulk png compression

Like compressor.io

.\pngquant.exe --force --ext .png --quality=30-50 .\pics\*.png
.\optipng.exe --clobber -o99 .\pics\*.png
@DoCode
DoCode / gist:45a2b80fc0f56245bae6
Created October 27, 2015 13:48
Regex to replace/append platformtarget to msbuild files
((.*\<Platform.*>)(.*)(</Platform>)\n(\s*))
$1<PlatformTarget Condition=" '$(PlatformTarget)' == '' ">$3</PlatformTarget>\n$5
(.*\<PlatformTarget.*>)(.*)(</PlatformTarget>\n)
$1$(Platform)$3
@DoCode
DoCode / gist:ba2ef06765655a3e71ae
Created October 13, 2015 13:59
git push to other remote branch (override!)
git push remote local_branch:remote_branch
@DoCode
DoCode / gist:06ada40b1e121359738d
Created October 13, 2015 13:56
rename git branch locally and remotely
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
@DoCode
DoCode / Readme.md
Created September 25, 2015 02:43 — forked from Morgul/Readme.md
Rocket.Chat Docker deployment and update script

Rocket.Chat Docker Deployment

Setup

  1. Pull down all of the files from this gist.
  2. Update <<YOUR_URL_HERE>> in docker-compose.yml and <<YOUR_PROJECT_NAME_HERE>> in update.sh.
  3. 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.