Due to a series of unfortunate events, the surface mounted 1/8 jack was torn off of the board of this Korg Monotron analog synth. I decided to try and tie into the existing onboard speaker to allow the synth to still connect to external speakers or mixer.
I drilled a small hole on the left side to allow wires into the enclosure.
I noted the wires so that if pulled, the solder joints won't be stressed.
I ran the new line-out red line into the existing solder joint for the onboard speaker.
I desoldered the black line to the onboard speaker. I made a joint between the new line-out black line, the speaker black line, and a new jumper.
All soldered together and bit of heat shrink.
Connected the switch (momentary - normally off) to the original speaker black line solder joint and to the jumper from above.
All put together with the switch mounted and a lesbian adapter on the 1/8 inch male plug end.
Here is a video of the synth put back together and operating. First part of the video (~20 secs) is demoing the momentary switch activating the onboard speaker. The rest is using an external speaker system.
This here is just a space for holding my Titanium Studio customizations to extend or overwrite the provided ruble for snippets. Feel free to use them and let me know if you have any additions that help you code faster.
snippet 'inspectObject' do |s|
s.trigger = "inspect"
s.expansion =
'Ti.API.info("Inspecting Object: " + ${1:myObject});
for (var thing in ${1:myObject}) {
Ti.API.info("${1:myObject}." + thing + " = " + ${1:myObject}[thing]);
}'
end
snippet 'Ti.API.info qk' do |s|
s.trigger = 'dump'
s.expansion = 'Ti.API.info(\'[qk]:${1:variableName}\ = \' + ${1:variableName});'
end
snippet 'Alloy On Event' do |s|
s.trigger = 'on'
s.expansion =
'${1:myObject}.on("${2:click}", function(e){
});'
end
snippet 'Ti.API.info' do |s|
s.trigger = 'info'
s.expansion = 'Ti.API.info("${0:log}");'
end
Turns out it was an issue with how the the Titanium HTTPClient serializes JSON data. (I thought the Ti API did this auto-magically but, maybe I'm mistaken.) If you run into the same problem, call JSON.stringify() manually on the JSON data that you are posting. Seems to do the trick. Here is an example:
var xhr = Ti.Network.createHTTPClient();
xhr.open("POST", "https://api.usergrid.com/YOUR_ORG-NAME/YOUR-APP-NAME/users");
xhr.setRequestHeader('Content-Type','application/json');
xhr.onload = function(){
try {
Ti.API.info(this.responseText);
} catch(e) {
Ti.API.info(e);
}
};
var data = {
username: "raoul.duke",
email: "raoul.duke@doomed.net",
name: "Raoul Duke",
password: "b4tc0untry!!"
};
xhr.send(JSON.stringify(data)); //this is the important bit
I ran into a problem the last time Ubuntu upgraded either the kernel or grub (not sure which); Either way, it blew away my Chameleon bootloader and replaced it with Grub. Here's how to fix it:
Reboot from the iATKOS v7 CD
Deselect all checkboxes except the one for Install Chameleon
Install
Now you should be able to boot into OS X but, Ubuntu will be unavailable.
Boot from the Ubuntu Live CD
Open the Terminal from Applications >> Accessories
sudo -s mkdir /mnt/r mount /dev/sda4 /mnt/r mount --bind /dev /mnt/r/dev mount --bind /proc /mnt/r/proc chroot /mnt/r update-grub grub-install --force /dev/sda4
It appears that CommonSpot (version 5, at least) ignores Application.cfc files when using a custom script in the same directory. In CF Wheels, Application.cfc is used to setup the entire framework.
Here is what I did to get it working:
Put your CF Wheels application in the customcf/ subdirectory
Rename Application.cfc to application.cfc (This is done to prevent the application from being initialized twice if accessed outside the CMS.)
Edit the index.cfm at the root of the application directory:
<!--- If this is the first time the application has run, call the onApplicationStart method ---> <cfset app = CreateObject("component","application")>
<!--- Call the onRequestStart method and pass the current page as a parameter ---> <cfif not structKeyExists(application, "wheels")> <cfset app.onApplicationStart()> </cfif>
<!--- Call the onRequestStart method and pass the current page as a parameter ---> <cfset app.onRequestStart(cgi.script_name)>
<!--- This is the only original line in the file ---> <cfinclude template="wheels/index.cfm">