2008-10-19 12:28
Posted in iPod-Stuff by Jeff Thorsett
I have been putting off getting into the whole portable music device market for some time, and have had a pretty poor attitude towards iPods over the years, but finally succumbed to the latest offering from Apple. The new iPod Touch has enough things going for it to turn a blind eye to the lack of playable music formats Apple allows and other nagging negatives like iTunes. I bought the 16 GB version with 2.1 firmware for around the same price a 30GB iAudio X5L costs, which makes me sad, but the ability to add useful applications and surf to webapps specifically designed for the touch made it more appealing.
The wifi capability of the iPod Touch is really what made my final decision to purchase one. With the ability to stream Pandora in the brewhouse, there is never a need to battle the evil disc skipping stereo we use. The battery life with streaming music playing is drastically shortened, although I have not had an issue with running out while brewing (so > 7.5 hours). Now if Pandora would keep adding variety to their music and if you could do other tasks while streaming with their app, I think they would have a real winner.
There are of course tons of applications that vary in usefulness available in the iTunes app store. So far I have been using Sportacular for sport scores, FStream for streaming internet radio, and Lux Touch (a Risk game) for wasting time.
I have recently discovered a bunch of nice webapps for the iPod. These are basically websites that have been optimized for the iPod/iPhone and Safari on the device. One such application that I use is thinkpod. My broker (who seems to get most of my money these days) has been developing a relatively usable interface for trading on the iPod. Once thinkpod has the charting abilities that their other mobile platforms have, like thinkAnywhere, I will be using the iPod to continue my portfolio’s downward spiral.
Over the last couple weeks, I have been pretty pleased with the iPod Touch. I will post my findings of good apps/webapps here as I find them, and feel free to leave me some suggestions on what you people use.
2008-09-22 18:26
Posted in Barlow by Jeff Thorsett
It has been 11 months since Barlow’s TPLO surgery and recovery has been a roller coaster ride for him. For most of the summer, things were going as good as could be expected, but in recent weeks we have seen some return to his old ways. Nowadays he wont put much weight on the surgery leg, and is showing some signs of stiffness after exercising. Our vet has cursorily confirmed the surgery is as it should be, but has said we need to treat him as an arthritis dog. Lucky for Barlow, that means losing some weight. He loves to diet. Hopefully the next few weeks will show some strengthening of the leg. Time will tell, but until then, fetching has become a thing of the past.
[2]
2008-09-21 09:52
Posted in Fun-Stuff by Jeff Thorsett
Telluride was Telluride yet again. Flagstaff Brewing Company was once again representing at the Blues and Brews festival. This year’s festival was marked by record breaking crowds, record breaking beer consumption, and (in my book) record breaking sunshine. This was probably the best festival in a few years as far as the music lineup was concerned. John Hiatt was probably the biggest surprise, probably because I haven’t seen him in forever. Warren, Trucks (both), Dirty Dozen, and Joan all were up to festival standards. For a special treat Warren Haynes and Susan Tedeschi-Trucks, with Ron Holloway, preformed a great set up at the conference center Saturday night, making for a sleepy Sunday morning.
The breweries were out in force as usual on Saturday morning. Despite adding a couple breweries to the roster, overcrowded beer lines were standard. We drained the three FBC kegs in record time, and I would venture to guess most breweries were out of beer within 2.5 hours. Overall, one of the more memorable festivals in recent times. Until next year Telluride!
2008-09-17 10:04
Posted in Fun-Stuff by Jeff Thorsett
Here is the thinkscript code for the Inverse Fisher Transform RSI that will work with thinkorswim charts.
#
# StinkyGreene 2008
#
def e = 2.718281828;
input length = 5;
def diff = if close > close[1] then close - close[1] else 0;
def diff2 = if close < close[1] then close[1] - close else 0;
rec avg = compoundValue(1, 2 / (length + 1) * diff + (length - 1) / (length + 1) * avg[1], diff * 2 / (length + 1));
rec avg2 = compoundValue(1, 2 / (length + 1) * diff2 + (length - 1) / (length + 1) * avg2[1], diff2 * 2 / (length + 1));
def value = if avg2 != 0 then 100 - 100 / (1 + avg / avg2) else 0;
def Value1 = 0.1 * (value - 50);
def Value2 = wma(Value1,9);
def IFish = (Power(e,(2 * Value2)) - 1) / (Power(e,(2 * Value2)) + 1 );
plot plot1 = IFish;
plot plot2 = 0.5;
plot plot3 = -0.5;
It seems as though textpattern (and my site format) is sticking those long lines through the right sidebar of the site. I you highlight the whole thing and copy it should work on the paste in Studies. Here is what it should look like if it is working right (click for a larger, readable picture):
Edit: That is fixed now, sorry about the scrollbars
2007-12-08 06:07
Posted in Flag-Stuff by Jeff Thorsett
Finally a Flagstaff weather forecast that reminds of the pre-Bush globally cold days. It really probably won’t do anything, but we can at least hope.
[2]
Previous Next