This file contains hidden or 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] | |
name = VonC | |
email = [email protected] | |
[core] | |
; just making sure those eol's stay as they are | |
autocrlf = false | |
; see http://stackoverflow.com/a/22208863/6309 (Git/Bash is extremely slow in Windows 7 x64, until fix in msysgit 1.9.4) | |
fscache = true | |
[alias] | |
; from http://www.jukie.net/bart/blog/pimping-out-git-log, with author displayed |
This file contains hidden or 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
Wrapper: | |
C:\Prog\Toolbox\bin>more peazip.bat | |
@echo off | |
set t=%~dp0 | |
set adp0=%t::\=:\"%" | |
call "%~dp0checkupdate.bat" | |
start /B %adp0%..\apps\peazip-3.6\res\7z\7z.exe %* | |
=> aliases: |
This file contains hidden or 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
C:\Users\VonC\prog\so> | |
diff -y --suppress-common-lines -I ".*=" -I "\*\*" reputation20120219.txt reputation20120225.txt | grep -Fv ">" | |
Using gnu diff (available on Windows through gow for diff, grep and other gnu commands: https://github.com/bmatzelle/gow/downloads | |
See http://stackoverflow.com/questions/7646266/grep-command-being-reversed-by-special-character |
This file contains hidden or 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
@echo off | |
REM if corporate environment, set your proxy | |
REM set HTTP_PROXY=http://username:[email protected]:port | |
REM set HTTPS_PROXY=http://username:[email protected]:port | |
REM set NO_PROXY=.corp,localhost,127.0.0.1,%USERDOMAIN% | |
set HOME=%HOMEDRIVE%%HOMEPATH% | |
REM if corporate environment, set your HOME to an *external* backed-up drive | |
REM set HOME=Z:\ |
This file contains hidden or 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
/senv.sublime-* | |
/WindowTabsSettings.txt |
This file contains hidden or 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
File describing this collection of files in this Gist named "MyGistWithFiles" |
This file contains hidden or 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
test |
This file contains hidden or 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
1. foo | |
````python | |
print 'bar' | |
```` | |
1. sub-foo | |
````python | |
print 'sub-bar' |
This file contains hidden or 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
Verifying that +vonc__ is my blockchain ID. https://onename.com/vonc__ |
This file contains hidden or 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
@echo off | |
setlocal enabledelayedexpansion | |
rem set pkg=github.com/jroimartin/gocui | |
set pkg=%1 | |
if "%pkg%"=="" ( | |
echo expect package name github.com/user/project | |
exit /b 1 | |
) | |
if exist "vendor/%pkg%" ( | |
echo '%pkg%' already vendorized |
OlderNewer