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
Show hidden characters
| { | |
| // Path for PHP executable, e.g. "C:/Program Files/PHP/php.exe". If empty, uses command "php" from system environments | |
| "codeformatter_php_path": "", | |
| "codeformatter_php_options": | |
| { | |
| "indent_size": 2, // Indent size | |
| "indent_with_tabs": false, // Indent with tabs or spaces | |
| "indent_style": "k&r", // Indent the code in k&r, allman, gnu or whitesmiths style | |
| "newline_before_comment": true, // add new line before comment block |
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
| { | |
| "color_scheme": "Packages/Theme - Nil/Big Duo.tmTheme", | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "tab_size": 2, | |
| "theme": "Nil.sublime-theme", | |
| "translate_tabs_to_spaces": true, | |
| "word_wrap": true, |
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
| { | |
| "color_scheme": "Packages/Dimmed Color Scheme/dimmed-monokai.tmTheme", | |
| "font_face": "Source Code Pro", | |
| "font_size": 12, | |
| "ignored_packages": | |
| [ | |
| ], | |
| "tab_size": 2, | |
| "theme": "Piatto Dark.sublime-theme", | |
| "translate_tabs_to_spaces": true, |
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
| { | |
| "color_scheme": "Packages/Theme - Farzher/WebDeveloperDark.tmTheme", | |
| "font_face": "Source Code Pro", | |
| "font_size": 12, | |
| "ignored_packages": | |
| [ | |
| ], | |
| "tab_size": 2, | |
| "theme": "Piatto Dark.sublime-theme", | |
| "translate_tabs_to_spaces": true, |
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
| { | |
| "color_scheme": "Packages/Theme - Piatto/Piatto Dark.tmTheme", | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "theme": "itg.flat.dark.sublime-theme" | |
| } |
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
| # Configure Rails Environment | |
| ENV["RAILS_ENV"] = "test" | |
| require "./dummy/config/environment.rb" | |
| require "rails/test_help" | |
| require 'simplecov' | |
| require 'simplecov-json' | |
| Rails.backtrace_cleaner.remove_silencers! |
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
| " Use pathogen to easily modify the runtime path to include all | |
| " We don't need vi compatibility | |
| set nocompatible | |
| " Plugins under the ~/.vim/bundle directory | |
| call pathogen#helptags() | |
| call pathogen#runtime_append_all_bundles() | |
| " Basic settings | |
| syntax on |
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
| # Stolen from http://sebgoo.blogspot.com/2012/04/git-rename-branch-local-and-remote.html | |
| #rename local branch | |
| git branch -m old-branch-name new-branch-name | |
| #delete remote branch with old name | |
| git push origin :old-branch-name | |
| #create remote renamed branch | |
| git push origin new-branch-name |
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
| from selenium import webdriver | |
| from selenium.webdriver.firefox.firefox_binary import FirefoxBinary | |
| class Firefox(webdriver.Firefox): | |
| def __init__(self, accept_untrusted_certs = True): | |
| binary = FirefoxBinary(firefox_path = '/Users/cnichols/Applications/Firefox.app/Contents/MacOS/firefox') | |
| profile = webdriver.FirefoxProfile() | |
| profile.accept_untrusted_certs = accept_untrusted_certs | |
| profile.set_preference('browser.shell.checkDefaultBrowser', False) |
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/setxkbmap -option "ctrl:nocaps" |