- New project
- Import audio
- Hide & deactivate "raw" tracks until needed
- Spread output channels to correct I/O
- Reset Pan to match labels
- Trim gain to match labels on tracks
- Fix names (remove the
_bip
that logic adds to the end of each) - Add colors for logical groupings (drums, bass, rhy, lead, keys, vox, etc.)
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
See the end of this message for details on invoking | |
just-in-time (JIT) debugging instead of this dialog box. | |
************** Exception Text ************** | |
System.IO.IOException: No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept. | |
at System.IO.Ports.InternalResources.WinIOError(Int32 errorCode, String str) | |
at System.IO.Ports.SerialStream..ctor(String portName, Int32 baudRate, Parity parity, Int32 dataBits, StopBits stopBits, Int32 readTimeout, Int32 writeTimeout, Handshake handshake, Boolean dtrEnable, Boolean rtsEnable, Boolean discardNull, Byte parityReplace) | |
at System.IO.Ports.SerialPort.Open() | |
at Pacific_Sun.Form1.connect() |
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
# Your keymap | |
# | |
# Atom keymaps work similarly to stylesheets. Just as stylesheets use selectors | |
# to apply styles to elements, Atom keymaps use selectors to associate | |
# keystrokes with events in specific contexts. | |
# | |
# You can create a new keybinding in this file by typing "key" and then hitting | |
# tab. | |
# | |
# Here's an example taken from Atom's built-in keymap: |
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
// "clean" way to pull in app module | |
var appModule = require('../appModule'); | |
appModule.controller('myController', function(dependencyA, dependencyB) { | |
// ... | |
}); | |
// --- TEST --- |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
# CentOS box prompts for password when using `vagrant ssh`, but others work fine. | |
# Alternative boxes left in to make switching and verifying easier. |
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
(![]+[])[+[]]+(![]+[])[+!+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]; |
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
DIR="wwt-rocks" | |
if [ -d $DIR ]; then | |
rm -Rf $DIR | |
fi | |
git clone git://github.com/angular/angular.js.git $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
export JAVA_HOME=/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home | |
java -jar TechnicLauncher.jar |
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
ngModule.factory('contactSearchService', [ | |
'ContactResource', | |
function (ContactResource) { | |
// This is pretty much the most naive cache possible; do whatever makes sense for your use case. | |
var lastQuery, | |
lastResults; | |
function invalidateCache() { | |
// Or similar mechanism...again, whatever makes sense for you. | |
lastQuery = null; |