View RemoveWin10Garbage.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Import-Module AppX | |
Import-Module Dism | |
$AppsList = "Microsoft.Bing" , "Microsoft.BingFinance" , "Microsoft.BingMaps" , "Microsoft.BingNews"` | |
, "Microsoft.BingSports" , "Microsoft.BingTravel" , "Microsoft.BingWeather" , "Microsoft.Camera"` | |
, "microsoft.microsoftskydrive" , "Microsoft.Reader" , "microsoft.windowscommunicationsapps"` | |
, "microsoft.windowsphotos" , "Microsoft.XboxLIVEGames" , "Microsoft.ZuneMusic"` | |
, "Microsoft.ZuneVideo" , "Microsoft.Media.PlayReadyClient", "Microsoft.WindowsMaps"` | |
, "Microsoft.XboxApp", "SpotifyAB.SpotifyMusic", "king.com.CandyCrushFriends"` | |
, "king.com.CandyCrushSaga" |
View every.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package every | |
import ( | |
"context" | |
"time" | |
) | |
// Every executes fn every d until ctx is canceled. Note that the first execution will not be until time.After(d). | |
func Every(ctx context.Context, d time.Duration, fn func()) { | |
t := time.NewTicker(d) |
View mrclean.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage: | |
# mrclean - list kitchen instances in all cookbooks | |
# mrclean destroy - destroy kitchen instances in all cookbooks | |
# Update to your cookbook path | |
CBDIR=$HOME/chef-repo/cookbooks | |
for c in $CBDIR/*; do | |
echo $(basename $c) |
View tf.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cmd=$1 | |
shift | |
env=$1 | |
shift | |
terraform workspace select $env || exit_error "failed to select workspace $env" | |
case $cmd in | |
# Custom command: plan -> outfile, confirm, apply outfile | |
planapply) |
View busboy.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"io" | |
"io/ioutil" | |
"log" | |
"os" | |
"time" |
View password.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package password | |
import ( | |
"bytes" | |
"crypto/rand" | |
"crypto/sha256" | |
"fmt" | |
"bufio" | |
"errors" | |
"io" |
View collator.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Collator struct { | |
results chan interface{} | |
errors chan error | |
wg *sync.WaitGroup | |
} | |
func NewCollator() *Collator { | |
return &Collator{ | |
results: make(chan interface{}), | |
errors: make(chan error), |
View aws_peers.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package config | |
import ( | |
"errors" | |
"io/ioutil" | |
"net/http" | |
"github.com/aws/aws-sdk-go/aws" | |
"github.com/aws/aws-sdk-go/aws/session" | |
"github.com/aws/aws-sdk-go/service/autoscaling" |
View makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is intended as a starting point for a customized makefile for a Go project. | |
# | |
# Targets: | |
# all: Format, check, build, and test the code | |
# setup: Install build/test toolchain dependencies (e.g. gox) | |
# lint: Run linters against source code | |
# format: Format the source files | |
# build: Build the command(s) for target OS/arch combinations | |
# install: Install the command(s) | |
# clean: Clean the build/test artifacts |
View benchwc.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage: benchwc.sh "path/to/package" "-build flags" | |
# e.g. benchwc.sh ./mypkg "-cpu=1,2,4 -tags=debug -benchtime=2s" | |
DIR=${1:-.} | |
BFLAGS=$2 | |
git stash save || exit 1 | |
cd $DIR && go test -run=^$ -bench=. -benchmem $BFLAGS | tee old.out | |
git stash pop || exit 1 | |
cd $DIR && go test -run=^$ -bench=. -benchmem $BFLAGS | tee new.out | |
benchcmp old.out new.out | tee comparison.out |
NewerOlder