DIY Seltzer Water

I’ve been drinking allot of seltzer recently and started looking at home-brew option on instructables.com

In the process I found a beverage distributor that sells a kit ready to go.  Homebrew drops the price from $2 to about 4 cents per 2 liter bottle.

http://stores.kegconnection.com/Detail.bok?no=245

Geer Gas – 20lb CO2 $105, $14 to fill.
829 Ingleside Avenue, Columbus, OH 43215

(614) 464-4277 geergas.com
great article of carbonation –  http://www.truetex.com/carbonation.htm

A little homework..

I’m updating actionscript unit from as 2 to 3.  Not an easy process….

import flash.events.Event;

/*function calculate(event:MouseEvent):void
{
total_txt.text = value1_txt.text + value2_txt.text
}
calculate_btn.addEventListener(MouseEvent.CLICK, calculate);
*/

//the above sample concatenates v1 and v2 how do we convert the data type?

function calculate(event:MouseEvent):void
{
total_txt.text = String(Number(value1_txt.text) + Number(value2_txt.text));
circle_mc.x -= 10;
}
calculate_btn.addEventListener(MouseEvent.CLICK, calculate);

//the Number() tool is a temporary translates the value, then you have to convert both back
//to a string to it can match the total_txt.text string.  Plew!!!!

function moveRight(event:Event):void
{
circle_mc.x += 1;
}

circle_mc.addEventListener(Event.ENTER_FRAME, moveRight);

//above will move the circle_mc instance x + 1 on the enter frame (means this will loop)




/* Mouse Click Event
Clicking on the specified symbol instance executes a function in which you can add your own custom code.

Instructions:
1. Add your custom code on a new line after the line that says “// Start your custom code” below.
The code will execute when the symbol instance is clicked.
*/

button_1.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);

function fl_MouseClickHandler(event:MouseEvent):void
{
// Start your custom code
// This example code displays the words “Mouse clicked” in the Output panel.
trace(“Mouse clicked”);
// End your custom code
}

//above is code snippet example of click handler, students need a strong understanding of functions before they get this.


http://www.actionscript.org/forums/showthread.php3?t=236069   – link to whack a mole

Mansfield Hamfest

A chilly drive to Mansfield for the Mid Winter Hamfest was worth the trip.  
Note: eaesales.com 260.627.5871 had a great selection of Weller soldering station replacement tips.
Very interesting Leslie-ish speaker assembly from a Lowrie Organ.  Almost purchased it.

Hamfest Treasure Report:
KD8RIB embroidered hat
EICO Sweep Meter – purchased for the awesome cabinet 
Cobra 38WXST CB 
Radio Shack SWR/FS meter
Assorted old lamp housings
Popular Science from 1969
6 tubes of assorted TTL chips and sockets
Vintage EV mic
800-900mhz mag mount antenna
Headset mic for VX-8RG

APRS Tracking:

FT8900 Mobile Mount

The plastic bracket to mount the FT8900 head is a little flimsy and I’ll be removing it when I have the vehicle parked at home so I started looking for a more durable solution.  I ended up using a tripod ball head with a quick release shoe.  I found an inexpensive medium sized ball head from cowboystudio on amazon.  I purchased a pair so I can have one base installed in my car and one on my desk at home.

The head makes a solid mount that I can remove in about 10 seconds.

TUSCO Hamfest

Ended up being a nice day for a drive.  I finished building and installing the removable bracket for my mobile and had a chance to get acquainted with the FT8900 on the road.  I had been practicing scanning and changing the main without having to glance at the radio. 

I realized that I had made a noob mistake when I tried to check in to the hamfest station.  I didn’t have the pl tone to access the repeater.  I had been wondering if the tones created after a transmission were a function of the radio or repeater.  The silence after my attempted call answered the question.

This was the first hamfest I’ve attended as a ham.  It was a small fest relative to Findlay but I did find a few treasures: 

1$ plastic parts bins – can you ever have too many?

Alesis Micorverb – I want to add reverb to a amp that I build a while ago and I think this will do nicely.

PL-259s and some other antenna building supplies

A 3$ mag mount CB radio antenna in great shape.

 
Treasure of the day is a “new in box” Radio Shack Electronic TV scoreboard!  I remember having a very similar console as a kid.  I cant wait to dust off an analog tv in the basement and see if it works. 


– Posted using BlogPress from my iPhone