Function | Shortcut |
---|---|
Previous Tab | ⌘ + Left Arrow |
Next Tab | ⌘ + Right Arrow |
Go to Tab | ⌘ + Number |
Go to Window | ⌘ + Option + Number |
Go to Split Pane by Direction | ⌘ + Option + Arrow |
Go to Split Pane by Order of Use | ⌘ + ] , ⌘ + [ |
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> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
<script> | |
(function() { | |
var _apiHost = 'https://testflightapp.com' | |
$.ajax({ | |
url: _apiHost+'/api/sdkinfo', |
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
// Establish Date ranges | |
var date_today = new Date.today().toString("yyyy-MM-dd"); | |
var date_lastweek = new Date().last().week().toString("yyyy-MM-dd"); | |
var date_twoweeks = new Date().last().week().addDays(-7).toString("yyyy-MM-dd") | |
// Execute this function when the 'Make API Call' button is clicked | |
function makeApiCall() { | |
// FP announce page views | |
var fpAnnounce = gapi.client.analytics.data.ga.get({ |
I use Sublime for everything text related, but it doesn't have any built-in way to preview my Markdown files.
This is how easy it is to preview in Mou:
- In Sublime, go to Tools -> Build System -> New Build System...
- In the newly opened file, replace the file contents with this and save: { "osx": {
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
.ipad-only, | |
.iphone-only, | |
.retina-only, | |
.non-retina-only, | |
.retina-iphone-only, | |
.non-retina-iphone-only | |
display: none | |
// iPad Only | |
@media only screen and (device-width: 768px) |