September 5th, 2007
Just back from backpacking in Colorado w/ my to good friends Pat and Ken. Flew into Denver, stayed in Fort Collins, and backpacked/camped Friday-Sunday at Twin Crater Lakes:
Google map of final campsite location: Google Map
Site about twin crater:
http://www.landscapeimagery.com/twincrater.html
Posted in Travel | No Comments »
August 23rd, 2007
var meat:Object = new Object();
var varx:String;
meat[”image1″] = 1;
meat[”image2″] = 2;
meat[”image3″] = 3;
meat[”image4″] = 4;
meat[”image5″] = 5;
meat[”image6″] = 6;
meat[”image7″] = 7;
meat[”image8″] = 8;
trace(typeof meat);
for(varx in meat)
{
trace(meat[varx]);
}
stop();
——————————
This outputs:
2
6
8
5
1
7
4
3
——————————
Why!!!
Posted in ActionScript, Web | No Comments »
August 19th, 2007
Kompoz.com, a online music collaboration site that I help produce, is featured in the LA Times today! It is in both print and online.
Posted in Web | No Comments »
August 17th, 2007
I want to ’set’ a var using a dynamic name in JavaScript. Some other programing languages allow you to do this with commands like ‘Set’. You pass it to arguments: 1) the variable name as a string and 2) the value you want to set that variable:
set(’some_var_as_string’, 10);
This will set the variable some_var_as_string to 10.
But JavaScript has nothing like this and I can find any documentation about it.
My work-around: use Window[’var_name’].
window[’var_name’] = 10
This will set the globale variable var_name to 10.
Posted in Development, Web, JavaScript | No Comments »
August 16th, 2007
Posted in Uncategorized | 2 Comments »
August 14th, 2007
This is what I want to do in
Fort
Fun:
- Have 3 Margaritas in a row at the
Rio
- Have a Punjabi Pale Ale and play a game of pool at Cooper Smiths
- See a band at the Star
- Spend $150 at the Hunt Club
- Get a REGULAR WHITE TORTILLA,
MONTEREY JACK, BLACK BEANS, BEEF CARNE ASADA W/ POTATO, SOUR CREAM AND GUACAMOLE AT Big City Burrito
- Sara
- Camp and Hike at the ol’ camp ground: “stream and big’um rock” camp ground
- Bike on the Pooter Bike trail
- Get my hair cut at Sally’s new salon
Posted in Travel | 2 Comments »
August 13th, 2007
Welcome to my new website: runbadscott.com. I have not had a personal website in a long time. My old web site/domain, sawilliams.com, had been down for a few years. I bought this domain because its the same as my phone number: (RUN) BAD-SCOTT
Posted in Uncategorized | 3 Comments »