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 batch script for loading git-bash and the vs tools in the same window | |
| REM inspiration: http://www.drrandom.org/post/2011/11/16/Grappling-with-multiple-remotes-in-git-tfs.aspx | |
| RME screenshot: https://twitter.com/#!/tim_abell/status/199474387731226624/photo/1 | |
| %HOMEDRIVE% | |
| cd %HOMEPATH% | |
| call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86 | |
| echo Use full exe names when running under bash, e.g. "msbuild.exe" | |
| echo Loading bash, you may now use git and msbuild in the same console \o/. | |
| "C:\Program Files (x86)\Git\bin\sh.exe" --login -i |
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
| #!/bin/bash | |
| TPY=${TM_PYTHON:-python} | |
| esc () { | |
| STR="$1" ruby <<"RUBY" | |
| str = ENV['STR'] | |
| str = str.gsub(/'/, "'\\\\''") | |
| str = str.gsub(/[\\"]/, '\\\\\\0') | |
| print "'#{str}'" | |
| RUBY |
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. Open Bundle editor | |
| 2. Select Themes -> Themes -> your theme | |
| 3. add to settings | |
| fontName = 'Monaco'; | |
| fontSize = '12px'; | |
| or what you want, enjoy :) |
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
| #!/usr/bin/env bash | |
| # memusg -- Measure memory usage of processes | |
| # Usage: memusg COMMAND [ARGS]... | |
| # | |
| # Author: Jaeho Shin <netj@sparcs.org> | |
| # Created: 2010-08-16 | |
| ############################################################################ | |
| # Copyright 2010 Jaeho Shin. # | |
| # # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); # |
NewerOlder