Skip to content

Instantly share code, notes, and snippets.

View bwinchester's full-sized avatar

Brandon Winchester bwinchester

  • Wintel, Initrode
  • Kansas
View GitHub Profile
@bwinchester
bwinchester / loop-max-sidebar-width.user.js
Last active April 2, 2025 15:34
Microsoft Loop, Wide Sidebar
// ==UserScript==
// @name Microsoft Loop Wide Sidebar
// @namespace http://tampermonkey.net/
// @version 2025-02-17
// @description Makes Microsoft Loop use full screen width by updating a single element's CSS variable, and restores the original value via a toggle button with a fixed, translucent design.
// @author bwinchester
// @match https://loop.cloud.microsoft/p/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=cloud.microsoft
// @grant GM_addStyle
// @license MIT
@bwinchester
bwinchester / webpack.config.js
Created February 13, 2020 22:02
barebones webpack config for webpack-dev-server
const path = require('path');
const proxy = require('./src/proxy.conf');
module.exports = {
devServer: {
contentBase: path.join(__dirname, 'dist'),
index: 'index.html',
compress: false,
port: 4200,
proxy: proxy,
@bwinchester
bwinchester / .bash_aliases
Created November 16, 2017 21:41 — forked from vratiu/.bash_aliases
Git shell coloring
# Customize BASH PS1 prompt to show current GIT repository and branch.
# by Mike Stewart - http://MediaDoneRight.com
# SETUP CONSTANTS
# Bunch-o-predefined colors. Makes reading code easier than escape sequences.
# I don't remember where I found this. o_O
# Reset
Color_Off="\[\033[0m\]" # Text Reset