File => Attach To Process, pick devenv.exe
.symfix
.reload
.loadby sos clr
| #!/usr/bin/env python | |
| import boto3 | |
| import argparse | |
| class StaleSGDetector(object): | |
| """ | |
| Class to hold the logic for detecting AWS security groups that are stale. | |
| """ | |
| def __init__(self, **kwargs): |
| [alias] | |
| timesheet = reflog --pretty=format:'(%cd) %h - %d %s [%an]' --abbrev-commit --date-order --date=local --author=coridrew | |
| ts = reflog --pretty=format:'(%cd) %h - %d %s [%an]' --abbrev-commit --date-order --date=local --author=coridrew | |
| timesheetPretty = reflog --pretty=format:'%Cgreen(%cd) %Cred%h%Creset -%C(yellow)%d%Creset %s %C(bold blue) [%an]%Creset' --abbrev-commit --date-order --date=local --author=coridrew | |
| tsp = reflog --pretty=format:'%Cgreen(%cd) %Cred%h%Creset -%C(yellow)%d%Creset %s %C(bold blue) [%an]%Creset' --abbrev-commit --date-order --date=local --author=coridrew | |
| timesheetAll = reflog --pretty=format:'(%cd) %h - %d %s [%an]' --abbrev-commit --date-order --date=local | |
| tsa = reflog --pretty=format:'(%cd) %h - %d %s [%an]' --abbrev-commit --date-order --date=local | |
List moved
Please use https://github.com/bf4/learning to fork and pull changes.
| #!/usr/bin/env/ruby | |
| require 'socket' | |
| # AWS API Credentials | |
| AWS_ACCESS_KEY_ID = "your-aws-access-key-id" | |
| AWS_SECRET_ACCESS_KEY = "your-aws-secret-access-key" | |
| # Node details | |
| NODE_NAME = "webserver-01.example.com" |
| // TRY HARD SHIT. | |
| // I did and I'm learning a lot. | |
| // | |
| // 2 days ago I had no idea what I was doing but I decided I was going to create | |
| // a database. I figured this would be a great way to learn even more about the | |
| // databases I use today. I will write better software because I will know how they are | |
| // designed and the optimizations and limitations they have to work with. | |
| // | |
| // After two days I have: | |
| // - Modelled column based data model (like Cassandra) on top of a key/value store (SQLite4 does I think). |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
| #!/bin/sh | |
| ## | |
| # This is a script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # Run in interactive mode with: | |
| # $ sh -c "$(curl -sL https://raw.github.com/gist/2108403/hack.sh)" | |
| # | |
| # or run it without prompt questions: |
| if has('win32') || has ('win64') | |
| let $VIMHOME = $HOME."/Dropbox/dotfiles/.vim" | |
| if !empty($CONEMUBUILD) | |
| set term=xterm | |
| set t_Co=256 | |
| let &t_AB="\e[48;5;%dm" | |
| let &t_AF="\e[38;5;%dm" | |
| endif |