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
ddsdfdfd |
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
{ 'Hanley Ramírez': { tx_price: 57, keeper: false, final_price: 57 }, | |
'Troy Tulowitzki': { tx_price: 56, keeper: false, final_price: 56 }, | |
'Francisco Rodríguez': { tx_price: 1, keeper: false, final_price: 1 }, | |
'Jonathan Broxton': { tx_price: 12, keeper: false, final_price: 12 }, | |
'Justin Verlander': { tx_price: 45, keeper: false, final_price: 45 }, | |
'Ryan Braun': { tx_price: 54, keeper: false, final_price: 54 }, | |
'Derek Jeter': { tx_price: 33, keeper: false, final_price: 33 }, | |
'CC Sabathia': { tx_price: 56, keeper: false, final_price: 56 }, | |
'Jorge Posada': { tx_price: 1, keeper: false, final_price: 1 }, | |
'Dan Uggla': { tx_price: 45, keeper: false, final_price: 45 }, |
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
adsf |
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
git log --shortstat --format=format:"%cd" --date=short --no-merges | sed -e '/^$/d;N;s/\n//;s/files changed, //;s/insertions(+), //;s/ deletions(-)//' | |
just delta info: | |
git log --shortstat --format=format:"" --no-merges --all | sed '/^$/d;s/[a-z()+,-]//g' | |
git log --format=format:"%cd" --date=short --no-merges --all | wc -l | |
num commits total | |
git log --format=format:"%cd" --date=short --no-merges --all | uniq -c | |
num commits for each day |
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
# goes in $HOME\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 | |
function rmrf { | |
rm -Recurse -Force $Args | |
} | |
function clone_vimfiles { | |
Set-Location $HOME | |
rmrf _gvimrc | |
rmrf _vimrc |
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
#! /usr/bin/env ruby | |
class Recorder | |
def push amt | |
puts "push: #{amt}" | |
end | |
def add | |
puts "add" | |
end |
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
export CLICOLOR=1 | |
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx | |
alias ll="pwd; ls -lhaG" | |
alias lll="ll | less" | |
alias tree="find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'" | |
alias scmtree="find . -print | grep -v "\.svn" | grep -v "\.git" | sed -e 's;[^/]*/;|____;g;s;____|; |;g'" | |
alist gitbranchesbydate="for k in `git branch|perl -pe s/^..//`;do echo -e `git show --pretty=format:\"%Cgreen%ci %Cblue%cr%Creset\" $k|head -n 1`\\t$k;done|sort -r" |
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
// ==UserScript== | |
// @name Better List View | |
// @namespace http://asolutions.com | |
// @include https://jira.asolutions.com/secure/TaskBoard.jspa* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js | |
// ==/UserScript== | |
$('.gh-issue-corner, .gh-issue-type, .item-name, .item-summary, .gh-breadcrumbs, .command-bar').hide(); | |
$('.gh-issue, .gh-issue-inner').css('height', 'auto'); |
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
<marquee>§`1234567890-=[]\;',./~!@#$%^&*()_+{}|:"<>?éCONTENT<iframe title="YouTube video player" width="425" height="349" src="http://www.youtube.com/embed/sOUsbtUrXHk" frameborder="0" allowfullscreen></iframe> |
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
[user] | |
email = EMAILZ | |
name = Benjamin Lee | |
[core] | |
repositoryformatversion = 0 | |
filemode = false | |
bare = false | |
logallrefupdates = true | |
[color] | |
ui = auto |
NewerOlder