follow A Selection of Varied Topics

Showing posts with label tech. Show all posts
Showing posts with label tech. Show all posts

Friday, December 24, 2010

Let's be angsty, shall we?

I've got a simply gigantic doozy of a post being worked upon, the obligatory end-of-year post, and it would have been the 200th post too, but I feel the waves of irony, sarcasm and angst [oh and humor] washing over me today.

.......
Naturally I've all but forgotten what I was going to be angsty about! Oh well here's for a quick recap.

Patriocentricity update: 
Stacy McDonald replied to my comment....well actually she didn't publish it, but sent me an email.
[I had mercifully all but forgotten about it until right now, heh.] Suffice it to say that I angsted about the whole thing for a week or two. I am still irked at what seems to me to be a refusal to discuss things honestly. I believe that it is possible for someone to be entirely well-intentioned in their views, but at the same time close themselves off to considering any other viewpoint as valid. They are honest in their intentions, but their protection of their views is not honest.   And THAT, my friends, is what I call disingenuous.



FIRST news: 
Remember the NASA grant that we were so sure we wouldn't get? Well it came through.....$5000 registration paid and now we have a tidy sum laid by for next year/buying parts for this year. Awesomeness all round.

The FRC team in New Jersey whose team captain I'd been bugging to not give up hope: they are fully funded, the money came through in the pinch.

The FRC team in Eugene [whose captain I had also been bugging], is ALSO fully funded: last night, to my frantic enthusiasm, their team captain told me that FIRST actually came through [via our Regional Director] and worked things out. This is wonderful news, it would have been very disappointing to see Eugene not be able to participate.



The other day several members of the robotics team gathered at my place to learn programming [in the lack of anyone who actually is already proficient in C++.....] under the tutelage of a former FRC team member and current computer sci. student. I became quite enthused and have spent the last few days tooling around in Wind River Workbench [where code compile properly] and Xcode [where perfectly legitimate code can't find its libraries and hands me a bunch of error messages].

Today I undertook to copy the WPI libraries [written by Worcester Polytechnic Institute specially for use in FRC] to my Mac [Eddie, running Xcode]. This proved tortuous.....some of the errors have gone, but others have popped up in their place, nevertheless in a way which gives me hope I might some day be able to compile FRC code on a Mac. Because I REFUSE to dual-boot Eddie into Windows or anything like that.

Just for kicks, let's post a sample of code: this, linked against the WPI libraries, should theoretically be enough to run a 120-lb. robot....it even includes a snazzy little user-defined class called, stunningly enough, 'kicker', in attempts to recreate the idea behind last year's soccer-ball-kicking robot.


#include "WPILib.h"
#include "kicker.h"

/**
 * This is a demo program showing the use of the RobotBase class.
 * The SimpleRobot class is the base of a robot application that will automatically call your
 * Autonomous and OperatorControl methods at the right time as controlled by the switches on
 * the driver station or the field controls.
 * Includes kicker.h, Bethany's user-defined class. 
 */ 
class RobotDemo : public SimpleRobot
{
RobotDrive myRobot; // robot drive system, can be controlled by two victors
Joystick stick; // only joystick
Solenoid sol1; //solenoid 1
Victor vic1; //victor 1
Victor vic2; //victor 2 
Kicker kick; //kicker defined in kicker.h 
public:
RobotDemo(void):
// these must be initialized in the same order
stick(1), // as they are declared above.
sol1(1),
vic1(1),
vic2(2),
myRobot(&vic1, &vic2) //pointers to locations of victors
//Kick needs no perameters
{
GetWatchdog().SetExpiration(100); //0.1 seconds
}
/**
* Drive left & right motors for 2 seconds then stop
*/
void Autonomous(void)
{
GetWatchdog().SetEnabled(false); 
vic1.Set(0.5); // drive both motors forward, half speed
vic2.Set(0.5);
Wait(2000);    //    for 2 seconds
vic1.Set(0.0); // stop robot
vic2.Set(0.0);
}
/*Runs the motors with arcade steering. */
void OperatorControl(void) //does this need void parameter? implied with mere ()? 
{
GetWatchdog().SetEnabled(false); //disable Watchdog
while (IsOperatorControl())
{
myRobot.ArcadeDrive(&stick); // drive with arcade style (use right stick [?])
Wait(5); // wait for a motor update time, .005 seconds
//joystick trigger for solenoid
if (stick.GetTrigger()==true) //can also use stick.GetTrigger() [without ==true]
{
sol1.Set(true); 
}
else {
sol1.Set(false);
}
if (stick.GetTrigger()==true) //or stick.GetTriggger() 
{
kick.Release();  //variable.function.....kick [does] release
kick.Kick(true); //if want long kick....kick [does] kicks
}  
else {
kick.Retract(); //retract at all other times
}
}
}
};


START_ROBOT_CLASS(RobotDemo);  //why a macro? I thought macros were bad policy?



Note the copious use of comments [like this: //this is a comment]......I suspect that my fully-commented code will be a wonder, and a thing of beauty and sarcasm. As we know: as a programmer, my job is to write documentation that happen to compile. [Devil's advocate says: never document. If it was hard to write, it should be hard to understand.]  Also: if the robot hasn't burst into flames, the problem is the programmer's fault. Another Chief Delphi quote to round out the evening: We'll defenestrate our programmer, and I'll report back our solution if we get anything working.


First game hint  is out! It has resulted in speculation that the game will
a) involve columnar game pieces
b) take place on stairs
c) be a mash-up of all previous games [FIRST's 20-year anniversary]
d) be related to a 'conjunction' of some sort [planetary or otherwise]
e) incorporate trains, train-tracks, or 'engines' [towed behind robots...but we did that in 2009]
f) loco-motion, the name of the singer in that game hint's major hit, will come into play: crazy == loco....some form of new and terrifying-to-program motion....
g) the game will definitely be called LocoMotion [or perhaps Back on Track]

and...
h) this hint, of course, means water game.


I think the angst I mentioned in the title [admittedly just to get people to read this post..] stemmed from my unwisely trawling through a website the other day which touted a comprehensive 'modesty checklist'....which listed high heels and the hose classically worn with them as immodest. Several commenters mentioned they didn't see why that would be a problem, as they never wear skirts shorter than ankle-length anyway.
Why do I hang out with these people?

On another note, allow me to link to a blog by an amazing young woman who I can, perhaps, agree to disagree with. Bailey's blog,  Big House in the Little Woods.
[One of her latest posts mentions me so I thought it appropriate to link....note that there is at least one other Bethany who comments on her blog, look for the profile pic :) ]

I finally rallied myself to comment on said post.....comment moderation in effect tho, so possibly delayed.  It's quite unusual to find someone who holds a lot of patriocentric views, but is still willing to discuss things honestly.


Annnnnd.....it's Christmas Eve. I'd come out with a homily of some sort but if you're anything like me, you've been bombarded with such for the past few days.

...oh DEAR......my mom and I were just talking about gifts, she mentioned the shortfall of gifts for me [hah, shortfall, not really, I am amazingly fortunate :) ] and I piped up 'The iPod...' [iPod Shuffle, which we arose at an unearthly hour to buy at an early sale]....and then she says 'Oh yes! Except I don't know where that is....'
There is a running joke of gifts and so on getting mislaid in the wrapping-up process. One year it was a flash drive, rubber bands, AND a packet of garden seeds [I was specially keen on those rubber-bands...] and some of them didn't show up for months.
There's also this great herbal lip balm [a Key Point in cold wet weather] that I picked out for myself recently but which ought now to be packed up into my stocking....I came very close to EATING the darned thing after I bought it....yummy rose flavor.....NOM. The label actually says 'Don't eat' with a mention of how nommy it is....hehe.

Fun Fact of the Day: a package carrying goodies [cookies, a cement-like block of homemade fruitcake, and assorted fruit, all packed with care in real Oregon fir branches doubtless harboring horrible foreign bug-pests] can wing its way to the East Coast in.....drum-roll please.....one weekend before Christmas. I shipped it out in a flat-rate box on Saturday and it arrived by Monday....we were all in awe of the superlative US Postal Service. A book-rate package did the same journey in three days I think, irregardless [teehoo] of foul snowstorms and patented 'wintry mix' currently dispersing itself over the continental US!

We are sitting around being happy that we didn't go to California for Christmas [to see my grandparents...we were considering it two weeks ago]......mudslides and evacuations and torrential rain are such fun ways to spend one's Christmas holiday. Earlier in the month, we also had a near escape from heading to Seattle by train for a programming workshop on the same day that Amtrak was shut down due to flooding.

-Dropbox is very, very nifty.
-Dance/electronica/techno music is very fun and Basshunter is a prime specimen of this.
-Pointers are a unique concept in programming which causes me to brood for prolonged periods of time and then burst out with obscure technical references whilst batting the air.
-Full moon causes bad dreams.
-The Voyage of the Dawn Treader was a very good movie and a rather bad book-adaptation. I want screenshots from it though, that was a PRETTY movie in parts.
-I don't really like live-action 3D films.

And now I think I shall adjourn. More posts soon, hopefully.

Thursday, May 13, 2010

wanderings on the dark side

We been having crazy times [when do I NOT say that....], even more than usual. Lotsa techie stuff.
Things pile up, things fall apart.  Plans for the Europe trip are off: in the last week or so circumstances conspired against the plan. Volcano in Iceland not going away, mom's health and treatments, dad's employment, and now my school situation.

   [Tuesday] I was given a note during math class, telling me to come to the office after class. I went down accordingly [remember the counseling office that I got so familiar with last fall whilst figuring out classes?] and found it full of geeks wondering what was going on. It developed that we had all signed up for computer science/programming for next year. Turns out there will NOT be any programming or CS offered next year at this high school.
   Time for a rant. This is disgraceful. My town is arguably one of the most technology-oriented in the area. The two biggest employers in the area are Hewlett Packard and the best engineering university in the state. Our area has the strongest high school robotics community in the state: people from other areas say they wish they had anywhere near the community and support that we do. The local 6 teams regularly are some the strongest at Regionals, chiefly because of the support from the university [mentors and such] and local tech/engineering businesses.  Now the biggest high school in the area is cutting their advanced computer classes.
   Computer programming/advanced computer skills are an absolute requisite in today's world. Sure, some people can learn those skills on their own.....but why are those same skills any less important than courses high schools would never think of dropping, like math or history. We hear every day that the US is losing its competitive edge in the technology market. If students do not have access to quality instruction in techie stuff, how can we be surprised at this?

  Women in technology: another rant.  I am not a feminist. But I do believe that girls should have every chance that boys do when it comes to choosing a career, if they decide to do so. In the last few days I have had a few conversations that have to bear on this.  The programming teacher from last year at CHS is a woman...here's part of an email responding to my query about the programming class: 


 "There are way too few of us in the industry, and employers are screaming for female employees in computer science/engineering.  If you want to be in high demand, and believe you enjoy programming, you're thinking pretty smart for a future! Especially when the government employment department is predicting that in 5-10 years the demand for computer science/engineering employees is going to be 70% higher than currently.  More so for women, too."

 Part of this is because of affirmative-action type stuff that involves quotas for female employees, I have no doubt. Be that as it may, you are still going to have to be top-tier to get a job in computer science [CS].

   Yesterday I hunted down the teacher who was reputed to teach the computer applications class...turns out that is not happening either, but he mentioned an interesting alternative: tech support.  Every year he has a smallish class of people who help with tech support around the school, from repairing computer operating systems to installing software...no experience necessary.  I paraphrase:   'It's always a good class for girls to take....to not be scared to go into the insides of a computer and tool around in there, because really it's just a bunch of junk, it's nothing to be scared of.  I find it gives them confidence they might otherwise lack; not that it seems like you have a problem with that' [I had all but swaggered into the classroom, wearing classic black and carrying Bag of Holding full of textbooks, and spoke with my characteristic poise: anybody who knows me knows what I'm talking about ;) ]

  Tuesday also.....at the meeting for the advanced computer class, I was one of only two girls in the room. Nevertheless, I was the one able to offer forth info about Autodesk Maya [computer assisted design program].

  I'm primed to become the Mid-Valley's leading robotics geek.....I'm practically on two teams, at meetings for one team I wind up leading the meeting, at the other team I tend to have info on whatever event is being talked about. Beloved laptop in hand, I sit at the center of a web of information. A few taps of the keys, and I can tell you the names of the teams registered for the off-season competition at OSU in two weeks; the possibilities of college credit at the area high schools; the season scores of any robotics team; and any other miscellaneous stuff you might need to know at the time.....

  Of course I also have resources other than purely technical. Contacts for one...I know everybody everywhere, or at least I'm working towards that goal. Theatre, robotics, film-making, I get around.

  Then there are the....skillz. Skills like getting people to do things for me. That sounds creepy doesn't it. It's not really.....I think the deal is that I am so sure that people will do what I want them to [this is usually along the lines of, hiring me as videographer, or helping me scout, or getting me into a class, or trying that take of the movie ONE MORE TIME] that THEY think they want to do it too, and away we go, and everyone is happy.    
  And knowing what's going to happen. I don't make much of this, because it sounds presumptuous [to my ears at least], but it's definitely there.  I knew a lot of the things that were going to happen this year...

    Anyways.

I'm back in black.  The past two months are over. Life moves forward.
  

   Don't die, guys.

Saturday, April 24, 2010

What I've been up to

warning, this may be a very geeky post.


Mebbe I should start a tech blog, where I post successes and failures of the amateur videographer....


Well I was supposed to return the camera to the studio on Wednesday morning after school. Naturally, this mean that I thought I didn't have to start uploading footage off of it until Tuesday night.....yeaahhh. That didn't go so well. I had problems with that, 5 hours of HD video footage eats up hard drive space pretty quickly. Left it to (as I thought) upload all night, only to come down and discover that it had stopped halfway through because Eddie's hard drive was full. There was a lot of dealings with transferring all the footage to an external hard drive.
Wound up returning the camera Thursday instead.


After that we had to decide which computer to edit the footage on. I've never taken the time to learn the ins and outs of iMovie, so I was planning to edit on the (very slow) HP desktop machine running Windows XP, with Sony Vegas Movie Studio editing software. [May I recommend SVMS, it is a very nice and easy-to-use piece of software. However if you EVER plan to switch to a Mac OS, don't buy it, because it is, as I found too late, a PC-only program.]


 Well I thought I had things nailed. I installed SVMS on my dad's computer and lugged the whole setup upstairs. My dad's comp. is from 2002, Windows XP, and only has about 70 gigs of hd space, but it is still really fast because we don't go online with it EVER.  Then the computer and I migrated upstairs to my bedroom, hitherto used for nothing except sleeping [or failing to sleep] because, well, let's just say it's not exactly climate-controlled. Fingers get NUMB in winter.....


The innocent tiny bedroom was turned easily enough into what my dad referred to as a hacker's lair. Come round the corner of the bed and you are confronted by a menacing array of sheer computing power.


Things were all fine and dandy until I actually tried to import some of the video footage into SVMS.
........


This did not go so well.


.......
Hm. No go.


I've had this problem before, the audio comes in but NO VIDEO. Then I attempted the tried-and-true method of drag-and-drop the files into the program, instead of 'File/Import'.  btw, this usually works, try it if you're having trouble opening files.  This did not work EITHER. I was becoming rather ticked.


Next we tried to view some of the video clips using Quicktime for Windows. 'Need to install more Quicktime components to view this file'.   Thinking that this would be fixed easily enough by downloading the newest version of Quicktime, I did so.   NUUP.  I had had warning that this might be the case and further research confirmed that Quicktime for Windows does NOT allow you to play hi-def.  .mov files.   Note that a .mov file IS a Quicktime file. A program doesn't play it's own format of files!  


This caused displeasure on the part of the lordly ME.  Remember all the hoopla a few weeks back with DivX media player and Gspot and all that? Well I took one of the files into Gspot to see if it could diagnose what codec was needed to play the file. NOTHING. File not recognized or somesuch.    .mov is a fairly common file, ONE WOULD THINK. 


All these files played FINE on my Mac. 
There were various other options considered, but in the event it was my non-techie mom who suggested the solution. The studio has Macbook pro laptops running Adobe FinalCut pro [professional, top of the line editing software] available for loan.   Friday I went in and got the laptop. Toted it up to the Lair and Then There Was a Scary Amount of Computing Power in the room. 
Eddie [my own macbook], dad's desktop comp (for show), dad's speakers with (to quote him) Scary Bass, and the loaned 17" macbook. Also an external hard drive and a power strip bristling imposingly. 


We are now on an even keel video-wise, have only to learn the ins and outs of FinalCut......'oh this is such a cool program! massive amounts of computing power! 17" screen laptop! professional-quality!......um how do you edit the volume levels?


Then two nights ago I was summoned forth from my lair by my mom, with the announcement that the computer was having a problem. The family PC, that is. Its antivirus (Norton 360) had expired, we knew it was going to happen but going to Atlanta kinda interfered with making arrangements. 


This entailed a good bit of research, and we bought Trend Micro pro version, as suggested by various geeky friends. Installed that today with surprisingly little hassle. 


Hmm, guess that about sums up the techie side of things.....I'm doing me online homework for math, logarithms great fun hehehe......anybody know how to solve an equation involving log squared?  not log (x^2)   but (log x) ^2
My book fails.....





Wednesday, March 31, 2010

THIS should have been called Über-geek....

Only the other day I was mentioning that 'I have no life'. This was refuted by my worthy compatriot, who has also been quoted as saying that my days don't end, they just slow down a bit.   I am definitely back in the insanity-zone....

Sunday we drove back up to P-town to RETURN the sink we bought two days before. This was after a pleasing interlude in the sink aisle at Home Depot whilst the three of us discussed the respective merits of various sinks. There was some heated debate over whether or not it was important to have a sink that is resistant to scratches, stains and grey marks from pans. I became quite fired up, and mentioned that I planned to write a manifesto laying out a 'Workers' Declaration' that the sole consideration regarding kitchen implements should be Utility and Function, not Aesthetic Appeal.  However instead of Rallying the Troops, I wound up laughing as we trailed through the store looking at countertop materials. 

Monday it was back to the daily grind of school and expeditions into geekery.  After school I went to a robotics meeting for the CHS team, and wound up staying the whole three hours. DIscussed video-considerations with the team captain.....there was a huge amount of things to be hashed over and planned out, and now I am engaged in making a short ad to air on the local community access TV station, and also filming the introduction of the robot at tomorrow's assembly. Yesterday I rendezvoused after school to film the voice-over for said advert.    Today I stayed at school the whole day, in order to be present at the robotics meeting after school and likewise the assembly run-through at lunch. 

Also on the way back from P-town I read over part of the infamous novel I wrote last November, and was surprised at how hysterical it was. Most amusing to read the incoherent copy I wrote at the height of the lack of sleep. And a couple of terribly funny lines that I honestly do not remember writing.... O.o  

Wednesday tech stuff:  I didn't know it was possible to be this much of a geek. I'm wearing a pair of earphones over my earbuds, am working simultaneously on two computers, have two flash drives in play, am downloading a codec for Mac and Windows...all this as preliminaries for editing an advert for robotics. 

I was given a .avi file of Team 997's winning match at the championship games at regionals. This is for use in making the ad to turn in to the broadcasting studio in the next day or two. The file plays with no trouble in VLC media player (a really nifty little free media player, btw...download here) but when I tried to import it to my editing program (Sony Vegas Movie Studio) only the audio was visible. The same thing happened when I tried to play it with Windows Media Player, or (switching to Mac) import to iMovie.  

I have heard this is a problem sometimes, and it requires fiddling with codecs. A little hunting on the internet revealed the VMS editing platform tends to have trouble with certain .avi files, and I found recommendations to download GSpot, a tiny application which diagnoses which codecs are needed to play the file.    Downloaded that...found that the file needed the DX50 codec, supplied by DivX. I downloaded a version for both Mac and Windows.    That is currently being installed, so we shall see.....


and because I have nothing better to do than my bio homework, here's this....
Date: Wednesday, March 31, 2010
Starting time: 18:38
Mood: geeky :P
Outside my window: sun on huge snow clouds
I'm thinking: I hope this codec works.....
I'm reading: Baha! Who has time to read?  Well Great Expectations, on and off...finished 1984.
I'm listening to: Scott's voice-over for the robotics ad  XD
I'm wearing: dark grey tank, black and white plaid shirt of me dad's, jeans with a TON of stuff in teh pocketses
Yesterday, I: went to robotics potluck :)
I'm excited for: Atlanta
I'm sad because: not sad :)
I'm hungry for: salad
The song stuck inside my head is: Another One Bites the Dust
I want: FinalCut Pro
I love: being awesome :P
I loathe: cold wet weather
This week, my goal is: to get the robotics stuff done on time

Friday, November 13, 2009

Friday the 13th

Interesting times :)

I had to rise at an unseemly hour in order to go to this craft show with my mom. I didn't want to go but had to in order to get to class on time. It was in an old grange, filled with middle-aged ladies and holiday crafts. I was outta there in about ten minutes. Went directly to culinary class.

After that I rendezvoused with Dallan [we'd previously arranged all the details] and started walking towards downtown. Fortunately the rain let up for most of the time. Eva had planned to join us but she called in sick alas. It seems like a lot of people were sick about three weeks ago, they all recovered, and now the next batch is ill. I do hope everyone is recovered by the show....

Anyways, we pottered around town for a while. Actually pottered is not really the right term, we walked quite briskly. On the train tracks, sometimes. Hit most of the literary spots in town: library, The Book Bin [used], Borders, Grass Roots which is celebrating their 38th birthday today. Actually the festivities were supposed to pick up around 6, so it should be quite lively over there about now :) Grass Roots is the splendid independent bookstore in town, a local legend.

There was a nasty sticky bit of business involving transportation. But we worked through it and I am glad to be off my feet, we must have walked over a mile.

Let's see. What else is new. C++: yeaahh, it would REALLY help if my programming book were more recent than 1997....lol. Found a good tutorial online at cprogramming.com and got the classic Hello World program to work!!!!! Awesome!!

NaNo: started working on it again! I still loathe my NaNo Stats page though....hehe.

Theatre: our rehearsal on Wednesday was good. We had a certified Awesome Techie on audio. Am still trying to work out the issues of feedback. And the receiver takes 6 AA batteries in its mouth and goes NOMNOMNOM then ooops low battery.

Theatre consumes my every thought. It's getting obsessive. I look at random attic-stuff and say 'OOH! Audio cables!". Today at the craft show I spied a STAGE at one end of the Grange. Small, but serviceable with two entrances and a curtain. Mmm.

And AWWKKH I just remembered that I don't have the music for tomorrow's dance practice....argh....

Today was Talk Like A Brit Day! [heh..as declared by me :) ] I talked posh at intervals, lol.

Monday, October 26, 2009

award!












I've been awarded the awesome Lady Brainsample who regales us with tales from the far frontiers of stage life...a fabulously geeky-cool person! :) :) thanks much!

The Rules
1. Copy the Kreativ Blogger picture and post it on your page
2. Thank the person who gave it to you and link back to their blog
3. Write seven things about you that we don't know
4. Choose seven other bloggers that you would like to give the award to
5. Link to the bloggers that you choose
6. Let the winners know that they have the lovely award.

Seven things you may or may not know about me:

1. I'm reading The Hitch-hiker's Guide to the Galaxy right now: Bk. 1. I finally know what all the fuss is about. You can bet I know where my towel is. For as long as I can remember I have maintained that the towel is the peak of man's invention. I could not live without towels.

2. I'm a doomsteader. Another words [to quote Pogo], I garden, save, scrimp, and expect the worst and am very happy doing so. :)

3. I fancy myself a connoisseur of esoteric music: right now [check out my playlist] I'm listening to a fabulous song by a Swedish group, Garmarna.

4. I can speak a bit of French, and I can read it pretty well.

5. I'm in touch with someone who can provide me with an XLR-to-standard 1/4" cable converter for theatre business. btw, I love theatre business! =)

6. Sword-fighting/fencing is one of my favorite things to do, but I'm really bad at it.

7. I think cloaks are the some of the most awesome things ever [right behind towels....how about a cloak made out of towel material? It could happen...probability two to the power of ten hundred-thousand to one against and falling]


Seven people to award this to:

Olive Tree

The Reluctant Dragon
Gwyniver
Bracie
Tinydancer
Bekah
Earwen

And oh yes, I'll try and post about today SOON! :)

Sunday, October 25, 2009

life in the land of the mixing console





































Oh, good times. Yesterday we had a splendid dance rehearsal as evidenced by the accompanying pics. Perfected some snazzy tricks. Talked music. Tried to fit all seven of us onto one tiny flattened cardboard box [very interesting]. Felicity did a nice impression of a faun. Phillip did his very best "cat hacking up a furball". Dallan managed to flip me over his back without landing us both on the ground [as I did when attempting it with the hapless Felicity last week].

After that I discussed audio; came home and meandered upstairs to my dad's stacks of speakers and other stuff and..."What's this? A mixing board?!" It's an old Fostex x-26 muli-track tape recorder but I'm pretty sure it can be rigged to be a mixing board of sorts. I spent the evening curled up on the couch with it in one hand and the manual in the other, trying to get my brain around the concepts of "AUX" and "LINE/MIC" and busses and so forth. I'M A TECHIE!!! Oh yeah. Spent a looong time in Wikipedia today trying to figure things out.

The day's score has been a hot mix of '30s French jazz/swing [Django Reinhardt's "Minor Swing" for example] which I am sifting through for the play. We decided that Beatles, happy as they are to dance to, were too much of an anachronism. This is going to be one enjoyable performance.

We have plans for some sort of duet during scene change, there's a couple of duels [we do not think too much about the fact that duels were definitely out in the '30s], there's a sketchy spy in a trenchcoat, a beautiful German spy queen [haha] as played by me, there's two happy-go-lucky good-hearted [if blundering] British lads. Oh 'tis epic. All you folks in the area, come to the performance! The 21st of November: we shall trot the boards at the Western Star Grange....

I just realized that Friday's post was my 100th....appropriately titled "The times they're gettin weird". :)

You will find a new poll in the right sidebar. Also I finally got around to doing some much-needed rearrangement and house-keeping on ole bloggie! Check out the awesomeness. Also my new playlist! Hehe, gives you a sample of what my iPod set to "Shuffle" sounds like :)