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
| <key>Sample:268435532</key> | |
| <string>/Users/peter/Library/Audio/Sounds/C8.wav</string> |
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
| <key>Sample:268435457</key> | |
| <string>/Users/peter/Library/Audio/Sounds/A1.wav</string> | |
| <key>Sample:268435458</key> | |
| <string>/Users/peter/Library/Audio/Sounds/A#1.wav</string> | |
| <key>Sample:268435459</key> | |
| <string>/Users/peter/Library/Audio/Sounds/B1.wav</string> |
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
| $ generate_aupreset [starting pitch] [ending pitch] [template filename] [output filename] |
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
| $ generate_aupreset 30 102 template.aupreset output.aupreset |
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
| <key>Zones</key> | |
| <array> | |
| <dict> | |
| <key>ID</key> | |
| <integer>1</integer> | |
| <key>enabled</key> | |
| <true/> | |
| <key>loop enabled</key> | |
| <false/> | |
| <key>max key</key> |
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
| <key>Zones</key> | |
| <array> | |
| ***ZONES*** | |
| </array> |
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
| <key>file-references</key> | |
| <dict> | |
| <key>Sample:268435457</key> | |
| <string>/Users/peter/Library/Audio/Sounds/9_A1.wav</string> | |
| <key>Sample:268435458</key> | |
| <string>/Users/peter/Library/Audio/Sounds/9_A#1.wav</string> | |
| ... | |
| </dict> |
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
| <key>file-references</key> | |
| <dict> | |
| ***FILE REFERENCES*** | |
| </dict> |
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 numbers = [ 10000, 10303, 30913, 50000, 100000, 101039, 1000000 ] | |
| var formattedNumbers: [String] = [] | |
| for number in numbers { | |
| let formattedNumber = NSNumberFormatter.localizedStringFromNumber(number, numberStyle: .DecimalStyle) | |
| formattedNumbers.append(formattedNumber) | |
| } | |
| // [ "10,000", "10,303", "30,913", "50,000", "100,000", "101,039", "1,000,000" ] |
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 formattedNumbers = numbers.map { NSNumberFormatter.localizedStringFromNumber($0, numberStyle: .DecimalStyle) } | |
| // [ "10,000", "10,303", "30,913", "50,000", "100,000", "101,039", "1,000,000" ] |