Skip to content

Instantly share code, notes, and snippets.

View Mariapori's full-sized avatar
🚀
Continuous learning

Topias Mariapori Mariapori

🚀
Continuous learning
View GitHub Profile
@popey
popey / snapcraft.yaml
Created April 3, 2019 20:17
Template snapcraft.yaml for Unity3D games.
name: unitygame
version: "1.0"
summary: Unity Game
description: |
A simple game made in Unity.
base: core18
confinement: strict
parts:
unity-game:
@DanielSWolf
DanielSWolf / Program.cs
Last active May 2, 2024 18:33
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);