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
<?xml version="1.0"?> | |
<root> | |
<item> | |
<name>Remap Escape Functions</name> | |
<appendix>Optional Description of Setting</appendix> | |
<identifier>Unique Identifier of Setting</identifier> | |
<autogen>__SimultaneousKeyPresses__ KeyCode::ESCAPE, ConsumerKeyCode::BRIGHTNESS_DOWN, KeyCode::F1</autogen> | |
<autogen>__SimultaneousKeyPresses__ KeyCode::ESCAPE, ConsumerKeyCode::BRIGHTNESS_UP, KeyCode::F2</autogen> | |
<autogen>__SimultaneousKeyPresses__ KeyCode::ESCAPE, KeyCode::EXPOSE_ALL, KeyCode::F3</autogen> |
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
<?xml version="1.1" encoding="UTF-8"?> | |
<!DOCTYPE keyboard SYSTEM "file://localhost/System/Library/DTDs/KeyboardLayout.dtd"> | |
<!--Created by Ukelele version 2.2.8 on 2014-07-15 at 11:58 (EDT)--> | |
<!--Last edited by Ukelele version 3.0.5.81 on 2016-08-12 at 13:41 (GMT-4)--> | |
<keyboard group="126" id="-17407" name="U.S." maxout="1"> | |
<layouts> | |
<layout first="0" last="17" mapSet="16c" modifiers="f4"/> | |
<layout first="18" last="18" mapSet="984" modifiers="f4"/> | |
<layout first="21" last="23" mapSet="984" modifiers="f4"/> | |
<layout first="30" last="30" mapSet="984" modifiers="f4"/> |
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
{ | |
"Profiles": [ | |
{ | |
"Set Local Environment Vars" : true, | |
"Working Directory" : "\/Users\/Joe", | |
"Prompt Before Closing 2" : 0, | |
"Selected Text Color" : { | |
"Green Component" : 0.9017454, | |
"Blue Component" : 0.9017454, | |
"Red Component" : 0.9017454 |
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
set-option -g default-shell /bin/zsh | |
bind-key C-c run-shell 'tmux save-buffer - | reattach-to-user-namespace pbcopy' | |
bind-key C-v run-shell 'reattach-to-user-namespace pbpaste | tmux load-buffer - \; paste-buffer -d' | |
bind -n WheelUpPane if-shell -F -t = "#{mouse_any_flag}" "send-keys -M" "if -Ft= '#{pane_in_mode}' 'send-keys -M' 'copy-mode -e'" | |
source "/usr/local/lib/python2.7/site-packages/powerline/bindings/tmux/powerline.conf" | |
set -g mouse on | |
#set -g mode-mouse 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
function startServersR(){ | |
if [[ -z $1 ]]; then | |
echo "No port Supplied. Default to 3000/4000"; | |
1=0; | |
fi | |
rails s -p$(expr 3000 + $1) & | |
} | |
function startServersE(){ | |
if [[ -z $1 ]]; then |
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
define(function, exports, module) { | |
var View = require('famous/core/View'); | |
var Entity = require('famous/core/Entity'); | |
var Modifier = require('famous/core/Modifier'); | |
var Transform = require('famous/core/Transform'); | |
var Transitionable = require('famous/transitions/Transitionable'); | |
var TransitionableTransform = require('famous/transitions/TransitionableTransform'); | |
function FlexGrid() { | |
View.apply(this, arguments); |
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
def url_for_radconnect(options) | |
"radconnect://infosheet/?acc=#{options[:accession]}&mrn=#{options[:mrn]}" | |
end |
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
module Format | |
def self.pad_mrn(mrn) | |
if mrn.to_i != 0 | |
mrn.rjust(7, "0") | |
else | |
nil | |
end | |
end | |
def self.clean_patient_name_vital(name) |
NewerOlder