Skip to content

Instantly share code, notes, and snippets.

View ngmachado's full-sized avatar
💭
in the æther

Axe ngmachado

💭
in the æther
View GitHub Profile
@ngmachado
ngmachado / static-file-server
Last active February 3, 2017 12:37
bare-fileserver
package main
import (
"flag"
"log"
"net/http"
"path/filepath"
)
var (
@ngmachado
ngmachado / TextProgressBar.cs
Last active December 18, 2015 11:37 — forked from jorgenpt/TextProgressBar.cs
Text based progress bar for C#
using System;
using System.Collections.Generic;
namespace JPT
{
public class TextProgressBar : IDisposable
{
private int _progress;
private int _total;
private int _width;