Skip to content

Instantly share code, notes, and snippets.

@jacobdrury
jacobdrury / 01_branching_strategy.md
Last active February 16, 2023 22:55
Netchex branching strat

Proposed Netchex Branching Strategy

Note: This page is still a work in progress and may contain incomplete or inaccurate data.

Introduction

Definitions

  • "Feature Branch" -- Any branch used to track distinct work related to a particular Azure DevOps ticket that has been reviewed by the team. This might include bug.123.release, story.123.release, or task.123.release branches.
@jacobdrury
jacobdrury / Program.cs
Created January 15, 2022 16:28 — forked from DanielSWolf/Program.cs
Console progress bar. Code is under the MIT License: http://opensource.org/licenses/MIT
using System;
using System.Threading;
static class Program {
static void Main() {
Console.Write("Performing some task... ");
using (var progress = new ProgressBar()) {
for (int i = 0; i <= 100; i++) {
progress.Report((double) i / 100);