Function | Shortcut |
---|---|
New Tab | ⌘ + T |
Close Tab or Window | ⌘ + W (same as many mac apps) |
Go to Tab | ⌘ + Number Key (ie: ⌘2 is 2nd tab) |
Go to Split Pane by Direction | ⌘ + Option + Arrow Key |
Cycle iTerm Windows | ⌘ + backtick (true of all mac apps and works with desktops/mission control) |
I hereby claim:
- I am roycehaynes on github.
- I am roycehaynes (https://keybase.io/roycehaynes) on keybase.
- I have a public key ASBUo58WjFC0dUjpon1xHbWVsrPO0f2Hg6rTqlmcGRWy9go
To claim this, I am signing this object:
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
{ | |
"name": "the-app", | |
"version": "0.1.0", | |
"description": "description", | |
"main": "gulpfile.js", | |
"author": "Royce Haynes", | |
"dependencies": { | |
"es6-promise": "^1.0.0", | |
"validator": "~3.17.1", |
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
var AppConstants = require('../constants/AppConstants.js'); | |
var AppDispatcher = require('../dispatchers/AppDispatcher.js'); | |
var api = require('../utils/api'); | |
var ActionTypes = AppConstants.ActionTypes; | |
module.exports = { | |
create_customer: function(data){ | |
api.customer.create(data); | |
} |
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/Color Scheme - Default/Solarized (Dark).tmTheme", | |
"font_size": 16, | |
"hot_exit": false, | |
"remember_open_files": false, | |
"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
FROM ubuntu:12.04 | |
RUN mkdir -p /home/vagrant/www |
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
#RewriteEngine On | |
# This will enable the Rewrite capabilities | |
#RewriteCond %{HTTPS} !=on | |
# This checks to make sure the connection is not already HTTPS | |
#RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] | |
# This rule will redirect users from their original location, to the same location but using HTTPS. | |
# i.e. http://www.example.com/foo/ to https://www.example.com/foo/ | |
# The leading slash is made optional so that this will work either in httpd.conf |
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
<html> | |
<head> | |
<title></title> | |
<script type="text/javascript"> | |
function calculatePrice(){ | |
var form = document.forms['computePrice']; | |
var numOfUnits = form.elements['numOfUnits'].value; | |
var leadTime = form.elements['leadTime'].value; |
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
/** | |
* Handle an xmlrpc call (actual work) | |
* | |
* @param Zend_XmlRpc_Request $request | |
* @return Zend_XmlRpc_Response | |
* @throws Zend_XmlRpcServer_Exception|Exception | |
* Zend_XmlRpcServer_Exceptions are thrown for internal errors; otherwise, | |
* any other exception may be thrown by the callback | |
*/ | |
protected function _handle(Zend_XmlRpc_Request $request) |
NewerOlder