Skip to content

Instantly share code, notes, and snippets.

View adderthorn's full-sized avatar

Noah Wood adderthorn

View GitHub Profile
@adderthorn
adderthorn / firefox-multi-tabs.css
Created January 31, 2019 02:24
Firefox Multi-row tabs 57-64
/* MULTI-ROW TABS
based on https://www.reddit.com/r/FirefoxCSS/comments/7dclp7/multirow_tabs_in_ff57/
If tabs are too narrow, go into about:config and adjust browser.tabs.tabMinWidth
*/
/* General Rules */
#tabbrowser-tabs .arrowscrollbox-scrollbox {
overflow: visible;
display: block;
}
@adderthorn
adderthorn / Program.cs
Created February 5, 2017 18:52 — 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);