- Create a folder in OneDrive. For these instructions we'll use "World of Warcraft Settings" and will refer to it as
Settings
folder. - Right click on the folder and make sure the "Always keep on this device" is checked.
- Copy the
WTF
,Interface
andScreenshots
folders to theSettings
folder.
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
let systemIcons = [ | |
"circle", | |
"square", | |
"arrow.left", | |
"arrow.up", | |
"arrow.right", | |
"arrow.down", | |
"arrow.left.and.right", | |
"arrow.up.left", | |
"arrow.up.right", |
This is a compiled list of falsehoods programmers tend to believe about working with time.
Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.
- There are always 24 hours in a day.
- February is always 28 days long.
- Any 24-hour period will always begin and end in the same day (or week, or month).
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
Find and Replace following regular expression with empty string to remove copyright headers | |
//\n//.+\n//.+\n//\n//.+\n// Copyright.+$\n//\n\n | |
// | |
// FileName.m | |
// ProjectName | |
// | |
// Created by Author on Date. | |
// Copyright 2015 iPhone Developer. All rights reserved. | |
// |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
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
UITableView convenience classes for resizing header and footer with autolayout. |
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
ACTION | |
AD_HOC_CODE_SIGNING_ALLOWED | |
ALTERNATE_GROUP | |
ALTERNATE_MODE | |
ALTERNATE_OWNER | |
ALWAYS_SEARCH_USER_PATHS | |
ALWAYS_USE_SEPARATE_HEADERMAPS | |
APPLE_INTERNAL_DEVELOPER_DIR | |
APPLE_INTERNAL_DIR | |
APPLE_INTERNAL_DOCUMENTATION_DIR |
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
/* | |
- Trivial wrapper around system sound as provided by Audio Services. | |
- Don’t forget to link against the Audio Toolbox framework. | |
- Assumes ARC support. | |
*/ | |
@interface Sound : NSObject | |
// Path is relative to the resources dir. | |
- (id) initWithPath: (NSString*) path; |