Skip to content

Instantly share code, notes, and snippets.

View zhygis's full-sized avatar

Žygimantas Legas zhygis

  • Kaunas, Lithuania
View GitHub Profile
@eimajtrebor
eimajtrebor / nightscout-on-azure.md
Last active October 3, 2022 05:41
Running Nightscout on Azure App Service

Running Nightscout on Azure App Service

These instructions assume the following:

Create an App Service Plan

  • Create a new App Service Plan resource
@DanielSWolf
DanielSWolf / Program.cs
Last active July 16, 2024 20:29
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);