-
Enable tabs - View > Show Tab Bar
-
Double click on file in project view and open in new tab - Xcode > Preferences > Navigation > Double Click Navigation > 'Uses Separate Tab'
-
Increase the font size - Close all projects > Xcode > Preferences > Fonts & Colors > Choose your theme in the left column > Click on 'Plain Text', Cmd + A to select all > Click on the little 'T' icon on the bottom right font picker > Change font size
-
Install plugin manager - See http://alcatraz.io/
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
**Movement** | |
Beginning of line - Ctr+a | |
End of line - Ctr+e | |
**Text Manipulation** | |
Delete word behind - Ctr+w | |
Delete beginning of line to cursor - Ctr+u | |
Delete end of line to cursor - Ctr+k | |
**Command Manipulation** |
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
// User preferences | |
{ | |
"color_scheme": "Packages/Color Scheme - Default/Monokai Bright.tmTheme", | |
"font_size": 11, | |
"hot_exit": false, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"remember_open_files": false, |
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
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST))) | |
current_dir_name := $(notdir $(patsubst %/,%,$(dir $(mkfile_path)))) | |
all: run | |
compile: | |
chpl -o bin/$(current_dir_name) src/$(current_dir_name).chpl | |
run: compile | |
bin/$(current_dir_name) |
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
// // Qucksort psudo-code taken from http://en.wikipedia.org/wiki/Quicksort | |
// For speedup information, see https://docs.google.com/a/knox.edu/spreadsheets/d/1I3ReQhltJn6DObg3Lm9uQ4T49QOb3qXgf3biW6Q-oj4/edit?usp=sharing | |
// See comment on cell A1 ^ | |
use Random; | |
use Time; | |
// n - size of the random array to be sorted | |
config const n: int = 50; |
- the command
xcrun simctl boot
is broken (or, more accurately, fixed [because the fact that it worked the way it did in xcode 6 is a fluke, apparently]) as of XCode 7 / October 2015 https://forums.developer.apple.com/message/51922 calabash/run_loop#235
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
PATH_add ./node_modules/.bin |
- Default material button style is destroyed if you set a button's background to say,
#FFF
. The background attribute not only controls background color, but coner radius as well.
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
Stdlib definitions for touch events (what android define as a tap, double tap, swipe, etc.) - https://developer.android.com/reference/android/view/ViewConfiguration.html#getScaledTouchSlop() |
I recently read through the March 2017 iOS Security Guide and made a few notes - it's quite dense!
I thought I would share these notes so other people can benefit from the time I put in, too.
Additions and clarifications from external sources where noted.
OlderNewer