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
-- The following is an AppleScript function ProfitTrain will call when you choose "Email Client..." | |
-- under an invoice. Before using the built in AppleScript ProfitTrain will look for | |
-- this user AppleScript file at: | |
-- /Users/[you]/Library/Application Support/ProfitTrain/email_invoice_using_user_script.scpt | |
-- By edting this file you can further customize the email with different subject lines, etc. | |
-- and/or use an alternative email client that is not supported by Billable by default. | |
-- Script using Airmail |
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
scriptencoding utf-8 | |
" Powerline setup | |
set guifont=Droid\ Sans\ Mono\ for\ Powerline:h15 | |
set laststatus=2 | |
" MVim options | |
set guioptions-=T " Removes top toolbar | |
set guioptions-=r " Removes right hand scroll bar | |
set go-=L " Removes left hand scroll bar |
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
""" | |
Attempting to set session variables directly from TestCases can | |
be error prone. Use this super-class to enable session modifications | |
from within your tests. | |
Usage | |
----- | |
class MyTest(SessionEnabledTestCase): |
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
*.pyc | |
bin/ | |
include/ | |
lib/ |
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
" Author: Bernardo Fontes <[email protected]> | |
" Website: http://www.bernardofontes.net | |
" This code is based on this one: http://www.cmdln.org/wp-content/uploads/2008/10/python_ipdb.vim | |
" I worked with refactoring and it simplifies a lot the remove breakpoint feature. | |
" To use this feature, you just need to copy and paste the content of this file at your .vimrc file! Enjoy! | |
python << EOF | |
import vim | |
import re | |
ipdb_breakpoint = 'import ipdb; ipdb.set_trace()' |