Evil Stick Blog

Ravings

The joys of a new job

by Evil Stick Man on Apr.22, 2009, under Randomness, Ravings, Technology

Somewhere along the line I read an article (I think it was on http://www.joelonsoftware.com, but I can’t be sure) that stated that it takes a new programmer anywhere from 6 months to a year to become fully productive and competent in a new environment. In my experience this has been pretty accurate. Mind you I’m not saying that you can expect a new programmer to sit there with his thumb up his ass for 180 days - far from it! It’s just that there’s a certain amount of sluggishness in their work as they flounder in the unfamiliar code, finding their way around much as a new citizen would wander the town without a map. I typically take 4-6 months before I feel competent enough in a system to have strong opinions about its general function. Of course I’ll have made contributions by then - with my past jobs I’ve typically had functional code released within the first two weeks (depending on the company and the release cycle) - but inexperience with the system coupled with a need to discover the lay of the land tend to put a dampening effect on my desire to rock the boat.

My new position has been more of the same, so far, but with this being my fourth company over the past 5 or so years, I’m starting to notice some patterns:

Whether or not you realize it, you are being unconsciously judged by your coworkers based on how long it takes you to pick things up.

This is not something that will necessarily be set in stone for the duration of your employment, but it can color many of your early interactions. Of course you never exactly know how you measure up, not until it’s too late to change anything, but you can gauge your progress based on interactions with coworkers. Call it the “time to guru rapport” measurement - every company has its guru programmers, the guys that have been there since the beginning and know everything there is to know. The sooner you are on a comradely level with a majority of them, the better you are doing.

A coherent, well-documented code architecture is invaluable to ramping up new programmers.

80% of your development time should be spent in design. The architecture of a system is by far the best indicator of an organization’s dedication to code quality. It’s also the first evidence that a new developer will see of the type of coding environment at your company - will that neophyte see a culture that praises re-use and judicious application of patterns in a logical manner? Or will they see five solutions to the same problem written under a looming deadline?

No matter how intuitive something looks, it is not as intuitive as you think it is.

Everyone comes from different perspectives. Coworker A may have 5 years in .NET, coworker B 6 years in LISP, and you’re all writing in FORTRAN. What passes the “5 minute” test with you may not do so for someone used to a different idiom. What’s obvious in functional programming may be anathema in procedural programming (we’ll hold the “FP makes coders better” discussion at another time), and what seems like the simplest thing in the world may be a foreign concept to the most surprising of people.

There’s no such thing as too many comments for a programmer stumbling his way through a new system.

It doesn’t matter how ridiculous your current programmers think comments are. “Preposterous!” they say, “Good code comments itself! Anyone who can’t grasp this is a moron!” The question we need to ask ourselves is that if our organization is spending $50 an hour on a programmer, and one comment that takes thirty seconds to write can reduce their ramp-up time by an hour, how can you not write comments? I have yet to hear a decent argument that convinced me that there is any such thing as too many comments in the code - at the absolute worst, you lose nothing by having them (no matter how unnecessary they seem).

You can tell about a company’s commitment to code by the discussions that take place around its architecture.

If you kick off projects without an architecture meeting, you’re doing things wrong. It may seem like too corporate a model for your company, but keeping the knowledge of the overall program structure in the head of two or three people leads only to labor duplication. Conversely, multiple discussions for a simple service may point to a process that is too top-heavy.

Process is good if it is well thought-out, but process for the sake of process is overkill.

Having a clear sequence of steps from conception to realization is invaluable. On the flip side, though, one page of documentation per line of code is excessive. Similar to the previous item, balance is key in this area.

One can tell if a development shop is a firehouse with the answer to one simple question

“Was my workstation ready to go when I got to my desk?” An oversight such as this says more about the company than any two of these points combined. If your infrastructure group is not on the ball enough to have desks configured for new employees, or if there is not some process built up around onboarding, you’re sending a message that you like to fly by the seat of the pants and get things done quickly as opposed to getting things done well.

Firehouse development, while edge-of-your-seat cool, doesn’t lead to good code.

Every office has a hero - that guy who’s in until 4 AM, on his second pot of coffee working towards a release. Does your environment encourage this style of development? Many people have pointed out the negative correlation between hours worked per week and code quality, but organizations still persist in encouraging long hours in development with shortened schedules. The only time a programmer should be pulling 12 hour days is if something is metaphorically (or sometimes literally, depending on your job description) on fire. Any other time and it’s a failure of management, process, or both.

In any case, these are the things I tend to notice. What do you people look for in your first couple weeks on the job?

2 Comments :, , more...

Coding problems, logic problems, and the joys of job hunting

by Evil Stick Man on Apr.13, 2009, under Randomness, Ravings, Technology

This morning I came up with an answer to a programming/logic question I was given during an interview back in early February. Before going into the rest of it, let me give the problem (and the solution I belatedly derived):

Problem: Given a dimension n, output an array that represents an n x n matrix of numbers beginning at (n*n)-1 and decreasing to 0. The numbers must be output in such a manner as to “wrap around” the resulting matrix, and must be output as a single array. For example, if the function is given the number ‘3′, the output will be as follows:

8, 7, 6, 1, 0, 5, 2, 3, 4

Which is a linear, row-major representation of the matrix

8, 7, 6
1, 0, 5
2, 3, 4

You may not pre-calculate the matrix and index into it, nor may you store an array of results and index them based on the dimension. In other words, you need to develop a function that, when given a position (i, j) and a dimension n, outputs the appropriate value for (i, j).

My solution:

int calc(int i, int j, int n)
{
  if(i == 0 || j == (n-1))
  {
    return ((n*n) - 1 - i - j)
  }
  if(i == (n-1) || j == 0)
  {
    return (((n-1)*(n-1)) - ((n-1) - j) - ((n-1) - i))
  }
  if(n > 2)
  {
    return calc(i-1, j-1, n-2)
  }
  // should never get here
  return 0
}

Explaining the solution:
I don’t claim that this solution is optimal, or that this solution is the “right” solution. All I can say for it is that when I worked out the “wrapped” matrices for several dimensions and then ran those resulting matrices cell-by-cell through the above algorithm the results matched, meaning that if nothing else the function above successfully takes a coordinate input and returns the “wrapped” value. Indeed, if anyone has a better solution to the problem, please let me know!

One of the first things that should be obvious in this solution is the recursion (when n > 2), and I figure that deserves some explanation. If you write out several examples, you start to notice a pattern. For example, take a look at the matrices for n = 3 and n = 5:

            24, 23, 22, 21, 20
8, 7, 6,     9,  8,  7,  6, 19,
1, 0, 5,    10,  1,  0,  5, 18,
2, 3, 4     11,  2,  3,  4, 17,
            12, 13, 14, 15, 16

The larger dimension, n = 5, actually contains the matrix for n = 3 verbatim. In fact, this is true of all odd and all even dimensions - the matrix for n = 6 contains n = 4, and the matrix for n = 7 contains both n = 5 and  n = 3 (I’ll leave it to you to work out these matrices to see that this is true). So the recursion needs to occur on n -2 in each case, to move to the next odd or even dimension as applicable. A dimension of 1 outputs 0 in a single location, and a dimension of 2 outputs the matrix 3, 2, 0, 1 as expected given the above conditions, meaning that the guard against n > 2 is unnecessary, but I felt uncomfortable leaving it out.

Once you figure out the recursion, you then need a means to calculate the “border” values. The two equations you see above are the results of two or three hours of deliberations and testing by hand. There is a division between how you count each edge - the top and rightmost edge use one formula, while the bottom and leftmost edge use another. This is reflected in the two conditions above. (I originally wrote it out as four separate conditions, but condensed it into 2). The conditions check only for the edge cases - when i = 0 (top edge), when j = 0 (left edge), when i = n-1(right edge, or when j = n-1 (bottom edge).

OK, so what’s the big deal?
This problem has been bothering me for almost two months now. It was something I should have been able to do (and, indeed, I was eventually able to do it), and I’m pretty sure that my inability to provide the complete answer during the interview resulted directly in me not getting the job (especially considering I nailed the technical portion of the interview). More than that, though, it exposed a worry that I had that I was actually losing intelligence as I age. I felt strongly that I should have been able to solve it sooner, and indeed some anxiety as a result of this internal assertion probably led to my inability to provide the complete solution during the interview. That and the general stress of interviewing with a company whose phone screen was so technically intense that anyone who could make it into their offices for the in-person pretty much officially Knows Their Stuff (or so I’m told).

This problem bugged me so much that I spent time solving it while on vacation, sitting around with graph paper and a pen while my family socialized around me. For some reason I let this one problem, this one failed interview get to me in a very primal way, and I’ve been wracking my brains trying to figure out why I just couldn’t get over it. I tied my ability to solve problems (which, as a programmer, is pretty much my bread and butter) to my self-worth, and became slightly obsessed as a result. Indeed the obsession is still fading - half the reason for this post is the hope that someone out there in internet-land has a better solution, or at the very least can confirm my efforts!

One of the biggest problems any coder looking for work has is in proving themselves. Companies are looking for programmers who know what they claim to know, who aren’t bullshitting the interviewer into a job they’ll be forced out of in 6 months due to incompetence. Furthermore, many companies ascribe to the philosophy that a great programmer is many times more productive than a mediocre programmer (a philosophy I don’t necessarily disagree with, but more on that later) and thus orient their screening process towards ferretting out these artisans of ascii. This basically boils out into one of three interview patterns:

1 - The candidate is subjected to several intense hours of technical interviews covering topics ranging from mathematics to algorithms to data design
2 - The candidate is subjected to a programming or logic test designed to be unique enough so as not to be easily searchable on the web and to test the candidate’s ability to both work under pressure and produce excellent code
3 - The candidate is subjected to both pattern 1 and pattern 2.

The problem faced by the companies, of course, is that there are a lot of people out there who would attempt to subvert the interview process by learning a few buzzwords and faking their way through the process. As a result, these charlatans have caused the rest of us decent people trouble and made companies highly selective.

The problem faced by the job candidate, though, is more insidious. First off, some people (I am not one of them, but I can understand the mindset) take offense at having to take coding tests, thinking that their years of experience and stellar references should be adequate proof of their ability. Second, these kinds of problems can have a profound effect on the job candidate, and can affect the course of the interview. Sure, throwing a curve ball at someone is a good opportunity to judge how they react to adverse situations, but with programmers (and problem-solvers in general), if they get this kind of thing wrong, or even worse if they can’t solve it at that time, this problem will work itself into their psyche, DEMANDING that it be solved, and will take a measurable toll on the individual as they obsess about the problem while trying to continue to answer the interviewer’s questions as they move on to other areas, and in the end this kind of problem colors the company’s perception of the candidate in a manner disproportionate to the applicability of the skills involved to the job being applied for. Third, these kinds of problems have yet to demonstrably select the “best” candidate for the job. The skills used to solve logic puzzles are not necessarily those used to solve programming problems, and 95% of any programmer’s job is not going to require thought of that order at all. Take Microsoft, for example - they are notorious for using these kinds of interviewing tactics and as a result they do write some very good code, but they also make some of the most horrific blunders in code and application design known to man.

Probably the biggest problem with this kind of interviewing pattern, though, is that every worthwhile company has their own problem or three, and every worthwhile company thinks that pushing their candidates through the technical interview/logic/coding problem wringer results in getting the best of the best. Each and every company prides themselves on having the best and the brightest, evidenced by how well these individuals did on their tests. This calls into view a white lie that recruiters tell themselves - that there are more bright people than there are job openings. Any person of moderate intelligence can do the math and realize that the number of positions governed by hiring managers employing these tactics exceeds the statistically probable numbers of “best and brightest”. Not everyone gets to be an astronaut, and there are a lot more fry cooks than there are rocket scientists. But most importantly of all, these managers and these companies ignore one of the brutal truths of programming in general: 95% of coding is performing the equivalent of menial labor, the kind of tasks that you could train a monkey to perform if you had the time. No matter how intelligent your programmers are, their intelligence is largely wasted if all they do is implement specs. For every person developing an algorithm for an autonomous combat drone, there are dozens squirreled away in a cube farm updating corporate software for the next big product switch, changing enumerations occasionally throughout the code, or hunting down an elusive typo.

As a job seeker, there’s not much we can do except rail against the system quietly after we’ve already gone through the wringer and found that next employer. The only means to change this process come when you have power that is typically granted to people that don’t have Computer Science anywhere in their credentials, and even then a significant portion of technical manners swear by the “beat down” method of interviewing. For myself, all I can do is know that I am competent, that given enough time I can perform 95% of coding tasks in the business world, and that no matter what my inability to solve a problem is much more easily explained by stress than by a phantom loss of intelligence.

Note that this is not an indictment of my current employer. Yes, I had to take a coding test when I was interviewing with them, but they also had one of the least BS-laden interview processes I’ve ever been through. I only wish the rest of the companies I interviewed with had been as straightforward. All I’m really doing here is releasing some pent-up aggression from my job hunt in the form of an internet rant. Not really effective, but it does help me feel better :) Anyway, I’m done with the incoherent ramble.

52 Comments :, , , , more...

Life takes precedence

by Evil Stick Man on Feb.25, 2009, under Exercise, Ravings

After two months of silence, I have progress to report - I’ve lost about 8 pounds! From 228 at the start to right around 220 now (217 on a good day). However I’m not certain this is something to be proud of - I haven’t done a pushup in over two months. The loss of my job back in January hit me pretty hard, and when I wasn’t applying to jobs or studying for interviews I just didn’t have the motivation to keep myself in shape. I think the 8 pounds above is some combination of eating less and digesting more due to stress, but I obviously can’t say anything for certain. I was also borderline ill for most of the period, and full-on ill for the last week, so that probably contributed to my lack of motivation.

On the plus side I walked 3.5 miles today. One of the benefits of losing my job is that my new position will require much more walking, which will mean much more exercise for a certain lazy ass I know. I’m not going to name names, but his initials are MYSELF. So hopefully what has resulted over the past two months continues into the future as I get more active. The 3.5 miles was round trip to and from the train station, which will be my primary means of commute going forward. I figure that at least during the warmer months I can walk it, then when it starts to get cold I can switch to a bike with cold weather gear. From tragedy arises opportunity.

Leave a Comment :, , , more...

Treading water

by Evil Stick Man on Jan.05, 2009, under Ravings

Still in “back-off” mode to ensure I don’t damage myself. I had wanted to start working out again this week, but due to some chaos in evil stick land I’m going to have to continue to take it slow. As it is, though, I’ll still be staying very active as we make improvements on the house this week and hit the still-packed stuff with a vengeance.

Starting next week, I’m going to start everything over. I’ll kick off the pushups from week 1 again, doing those on Monday, Wednesday, and Friday. I’ll then do the situps on Tuesday, Thursday, and Saturday. Part of the problem I think I ran in to is that I was doing the pushups and situps concurrently on Monday, Wednesday, and Friday, possibly overtaxing my system. I’ll give this approach a couple weeks, and see how it goes. If it all goes well, then full steam ahead.

I’m also still on my enforced absence from the treadmill. I figure once the weather starts to warm up in March I’ll begin actually walking outside. in the meantime I don’t feel comfortable using the treadmill as it’s the beast that caused my problems in the first place. I may use it to do some walking, but I definitely won’t be running indoors for a while (if at all).

On a side note, as I was eating breakfast this morning (corn flakes, woo!) I remembered a snack I used to enjoy back in high school - put corn flakes in a cup, add whipped cream, then mix and enjoy! Ahh the halcyon days of youth, when I could eat whatever I wanted without fear of reprisal. Back then I had a theory that I wouldn’t start to get fat until I started working out heavily, as if I didn’t have a lot of muscle I wouldn’t have any muscle to convert to fat due to inactivity. Naive, but it has a certain ring to it, I think.

2 Comments :, , , , more...

Need to back off

by Evil Stick Man on Dec.29, 2008, under Ravings

So I pushed a little harder than I should have at this whole pushup-situp thing, and I’m pretty sure I pulled a muscle. As a result I’m taking it easy for a bit to make sure I don’t do any more damage. On top of that, I’m getting sick for some reason. I blame it on the small children I was near over the holidays. I don’t have time to be sick, dammit. So things are a bit slower right now than they usually are. It’s both irritating, as that’s now twice that I’ve caused problems by trying so hard to do the right thing, and demoralizing, as due to the impending illness I have absolutely zero energy of any kind. argh.

Leave a Comment :, , , more...

Still truckin’

by Evil Stick Man on Dec.22, 2008, under Ravings

So while I’ve been quiet, I’ve still been slowly working at improving myself. I’m still on the revamped 100 pushups program (now with less speed and better form!) and am currently on week 3. I actually finished week 3 last week, but I didn’t feel confident in my results. As such, I’ll be doing week 3 again during this holiday week to ensure I meet with success. This way around is definitely harder (especially due to my addition of crunches to the program, being done concurrently with the pushups), but I think I’m making some progress.

Wish the same could be said about my running. I haven’t hit a treadmill since the twinge in my knee made me step off for a bit, thinking i needed to rest. Now I notice that my knee starts to hurt after snowblowing the driveway for an hour or so. I’ve probably done some damage to something in my leg, so I should probably see a doctor at some point. At the moment, though, that requires both finding a clinic nearby and finding a reputable doctor at said clinic, as my last physician is no longer with the clinic I used to go to, and that’s a lot of effort I’m not too keen on putting out. As it is, I can now understand how people can go months with medical issues before seeking help, as if it’s something that just doesn’t affect one’s life too heavily they’re easy to ignore. My main concern, though, is insurance-based, as in “What is actually going to be covered if I need physical therapy?” Never mind where I’m going to find the time.

Anyway, I was watching Christmas with the Kranks the other day, and even getting past the “performance” of Tim Allen as one of the titular kranks, I was struck by just how hard the movie was pushing the “Saving money is for suckers, spend to show your love” dynamic. As one who does not necessarily take joy in this season because of the crass overcommercialization of what should be essentially a religious holiday, I may be a bit hypersensitive to these kinds of things, but they still strike me as doing a disservice to youth. Tell me that movies like Christmas with the Kranks, or How the Grinch Stole Christmas, don’t indoctrinate youth into thinking that attempts at thriftitude over the holidays represent something vile to be frowned upon! Seriously, in nearly ever tale of Christmas cheer, the central message of love and togetherness is replaced with love and retail. Scrooge from “A Christmas Carol” was noticeably thrifty, the Grinch lamented the propensity of the Whos to purchase needless things that they’d just throw away, and even the Martians demanded toys of the man in the red pimp suit.

Now I don’t have a problem with Christmas itself. If it was more like Thanksgiving, focused on a gathering of family and a meal, then I would have no complaint whatsoever. However, as it exists now all that Christmas stands for for most people is mindless spending. People buying people gifts not necessarily because it makes them happy, but almost out of a sense of obligation that’s been pounded into us from our innocent youths all the way up to yesterday’s jewelry commercial. Why can’t gathering as a family be enough? Why must we constantly be inundated with demands that we fork over our hard-earned cash to fulfill the wishes of someone else? Do we really serve their needs by perpetuating their desires for stuff that they may not actually need? Is the basis of capitalism so weak that it needs a yearly shine to continue honest function?

Christmas = woohoo! Gifts and the advertising and retail blitz = bah humbug.

Leave a Comment more...

Seriously, WTF

by Evil Stick Man on Dec.19, 2008, under Ravings

Pop quiz: You see a car in a turn lane, spinning tires, with hazards on making little progress. Do you A) recognize that this person is stuck and go around, B ) attempt to assist them in moving the vehicle, or C) Start honking, gesturing wildly, and flipping people off?

Seriously, what the fuck possesses people around here? 95% of the population needs to be wiped off the fucking map for being such retarded fucking assholes that the mere threat of their procreation should be sufficient to have them executed for treason. To the idiot old man in the red minivan who thought that honking at me and flipping me off while gesturing wildly would somehow magically make my car obtain traction and move, I hope you die in a fire, after having watched all your friends and love ones get raped by an aids-carrying syphilitic midget hooker bear with barbed wire wrapped around its shaft like a barber pole.

2 Comments :, , more...

First camp complete, first true test of improvement

by Evil Stick Man on Dec.08, 2008, under Exercise, Music, Randomness, Ravings

Kilties 2009 Open house has come and gone. I’m not exactly sure how to feel about it. On the one hand, my physical preparation definitely paid off in spades - I was able to control the horn better, had better endurance, and didn’t have nearly as much arm pain this year as I have in years past. So if nothing else, I’m definitely more physically fit than I have been before.

The other side, though, is two new experiences that I went through this weekend. First, I moved up to 1st bari to give it a shot. It’s a bit outside my range now, but I’m hoping that if I work my ass off over the next couple months I’ll be able to manage the show range-wise come January. As it went yesterday, I did OK for about the first 15 minutes, but then repeated Ds above high C wore me out quickly. I’m kind of facing the same problem I had on trumpet - no problems at all with technical stuff or with rhythms, but lots of trouble with endurance and range. Of course I’m told by several people that the opener for this year is a lot tougher on the baritones than it was last year, so I suppose that should be taken into account. In any case I’ll definitely be busting my ass to improve my range and tone quality before January Camp.

The second experience was my first weekend as a staff member. After last season, Scott wanted to make some changes in how we handle staff. Mainly he felt that he wasn’t getting enough commitment from the staff he had at the time, and furthermore that some of the membership was doing a better job teaching things that he could see than the staff he had. So he’s trying something new this year - pulling most of the staff from within the corps itself. Horn and visual techs, percussion techs, and guard staff are all marching members (with one or two exceptions due to physical limitations). There are still non-marching staff members - coordination and big-picture tower stuff necessitates the person teaching that caption not be in  the line - but most of the winter program is being conducted by members themselves. I was fortunate enough to be chosen as a visual tech for the brass line. This basically means that I get to teach the entire visual program, and lead basics and visual sectionals.

So anyway, this weekend was my first camp as visual staff, really my first camp as any kind of staff member. We had spent several weeks discussing the finer points of the visual program among ourselves (things like “The arms shall form a 120 degree triangle, the weight shall be 60% forward, etc), which I then got the opportunity to present to the corps during basics blocks this weekend. The main problem we’ve had as a corps is that so far we’ve had a different visual program every year that I’ve marched. Unfortunately, that includes this year. As we had our staff meetings in October and November, we came to a consensus that there were some things in last year’s visual program that just weren’t working as well as they could. So we made a series of small changes that ended up amounting to some major-ish changes in how the hornline presents itself. The core philosophy presented last year by the visual staff is still essentially the same - movement initiates from the center of the body, emphasis is on moving the center about as opposed to reaching for positions - but some of the particulars are changed. In particular, what we’re emphasizing is almost an alternative way to think of marching in that instead of stepping with the left foot, we’re pushing off with the other foot. Some stuff we are changing - for example, we’re pulling the corps down off the platform some on the backwards march. This is to make the program more accessible, and to improve balance and maneuvering among those who may be having trouble in the first place. But the main concept of the movement is the same - the center of the body has always been the focus of the movement - it just may never have been adequately stated to the corps.

But I’ve digressed a bit, I think. As I mentioned, this was the first weekend, which means that I was essentially responsible for teaching the corps the new visual program. This also means that, from a certain perspective, the staff’s changes are MY changes. The new program is MY new program. Some of the stuff we’re doing with the upper body is quite different from what the corps has done in the past (but not that different from how most DCI corps do things today), and it showed as I tried to teach it. It was almost as if I could feel a “WTF is this?!” gravitating off everyone in the line.

It’s kind of weird, because from one perspective I know that I’m perpetuating a problem that the corps has had in the past - a visual program that changes from year to year - but from another perspective I’m really just doing what I can to push the program that pretty much the entire staff agreed upon. Yeah, it sucks to have to change every year, and for this to be just another year in the sequence, but we’ve got to be honest with ourselves - every visual person has a different idea of what’s “modern,” of what “looks good,” of what is “old school” much as most brass staff have differing ideas of a hornline’s characteristic sound. By virtue of having changed visual staff every year I was there (Chad Quamme in 2007, Andy Brady in 2008, Myself, Terry and Scooter in 2009) you’re going to see changes in the program. The trick then becomes one of staff retention. If the staff doesn’t change from year to year, the visual program won’t change from year to year either. It really isn’t change for change’s sake in that case, it’s more along the lines of “Look, you hired me to teach to the best of my ability, and this is what I know how to teach.” The best case for a group like the Kilties is to have a consistent staff year in and year out. If the staff doesn’t change, then the main program itself doesn’t change. My view is that staff retention leads to program stability, and I think that a lot of people can agree with that.

In any case, as a staff member this year, I feel two impulses. One, I have to overcome the frustration/reticence/irritation at yet another visual program change as I teach, and two, we as a staff need to settle on something that will change as little as possible. As a person who is new to teaching anything, I feel a little bit out of my depth taking this on. I know that what I’m presenting is well thought-out and well-reasoned (even if some people disagree with it), but because I’m inexperienced I have no way of knowing if I’m doing an effective job of getting this across. One of my biggest concerns is that the hornline comes away from visual sections thinging that I’m throwing this stuff at them completely at random. I think most of this is in my head, though. All I can really do is offer open communication on any issues the members have, and be confident in my own abilities in the end. Some people won’t like the things I’m presenting, and if I can change their mind that’s great. Some people don’t think the staff model is the right way to go, and they’re entitled to their opinion. I can only hope people keep an open mind and discuss their concerns before using them as a reason for leaving the organization.

My work is cut out for me. From what I’ve been told, we’re doing a lot more communication as a staff this year than has been done in years past. Being new to this I don’t have any basis for comparison, so all I can do is make sure I know everything I can ahead of time. Time to buckle down.

2 Comments :, , , more...

The true story of Christmas

by Evil Stick Man on Dec.05, 2008, under Randomness, Ravings

Surely you remember the French and Indian war. Even though that was technically a loss for the colonies, we were able to snag a small amount of territory in the extreme north of Canada, as they were distracted by a raid in Montreal (we were attempting a long-term pincer tactic - by the time they figured out our plan on coming from the north, it’d be too late). No bigger than 36 miles square, but it was enough for our purposes. At that time we didn’t have a flag of our own to plant, still being under british rule, so instead we put up a striped pole to indicate cooperation of the old (the red, Britain) and the new (the white, the pure, American colonies). In this territory we set up a small arms-manufacturing venture, as due to our sheer distance from standard supply lines the soldiers needed to re-arm and resupply themselves. They had a lot of help from the local population - a tribe of small, compact humanoids who scraped a living hunting reindeer and caribou - who proved to be a mighty boon to our productivity. They were actually a splinter tribe from the main Eskimo population of what is now Alaska, popularly known at the time as the Eskimo Liberation Front (ELF, for short).

Well the war ended in 1763, just as the northern production base was getting under full steam (back in those days, they took a long view of things). When the soldiers received the message, they promptly abandoned the facility at the “north pole” (as it came to be known) and began the long journey home. All, of course, with the exception of one redcoat Sergeant, a Christopher Nicholas Kringle, who had discovered a home among the Elves and the frigid north. He had also fallen in love with one of the Elves, and was married according to their custom (the exact ceremony is lost to time, but is thought to involve snow sculptures augmented with coal and carrots). With his new bride and tribe, he realized that a weapons production facility isn’t the best place to raise a family, so he had the entire facility converted into a toy shop and bakery. Within a few years he became renowned for both endeavors - for his high-quality wooden toys, and for his Danish Kringles (named after the cook who invented them - Dana, an ELF of great renown, and for the proprietor that gave him the means to create such delicacies - Sgt. Kringle).

After a while, though, the price of base foodstuffs became too much to justify the supply train the North Pole workshop regularly received, so he sold off his bakery to some Scandanavian merchants, who promptly went on to make a name for themseves in the pastry business. After this, the North Pole kind of fell off the map, so to speak, as due to their self-sufficiency they didn’t have much need of the standard traders, who after a while just stopped coming. Memory of the area slowly faded until one fateful Christmas, twenty years later, when Chris Kringle (or Sgt. Nick as he liked to be known) made a visit to the Colonies bearing the fruits of 20 years of ELF toy-making labor. Having had a hard journey, he was so overjoyed at his arrival that he gave away most of his toys for free to celebrate.

Thus we have the true origin of Christmas. Sgt. Nick, over time, has lost the ‘g’ in his appelation, to become St. Nick, and the whole world knows the joy that Chris Kringle’s toys can bring to unsuspecting tots. Now you know, and knowing is half the battle.

Leave a Comment :, , , more...

Boredom breeds inanity

by Evil Stick Man on Nov.14, 2008, under Ravings

Had a friend send me this quiz - seemed like a good thing to do at the time. I repeatedly come up as INTJ, how about you?

http://www.humanmetrics.com/cgi-win/JTypes1.htm

Your Type is
INTJ

Introverted Intuitive Thinking Judging
Strength of the preferences %
78 62 75 67

Qualitative analysis of your type formula
You are:

  • very expressed introvert
  • distinctively expressed intuitive personality
  • distinctively expressed thinking personality
  • distinctively expressed judging personality

Rational Portrait of the Mastermind (INTJ)All Rationals are good at planning operations, but Masterminds are head and shoulders above all the rest in contingency planning. Complex operations involve many steps or stages, one following another in a necessary progression, and Masterminds are naturally able to grasp how each one leads to the next, and to prepare alternatives for difficulties that are likely to arise any step of the way. Trying to anticipate every contingency, Masterminds never set off on their current project without a Plan A firmly in mind, but they are always prepared to switch to Plan B or C or D if need be.

Masterminds are rare, comprising no more than, say, one percent of the population, and they are rarely encountered outside their office, factory, school, or laboratory. Although they are highly capable leaders, Masterminds are not at all eager to take command, preferring to stay in the background until others demonstrate their inability to lead. Once they take charge, however, they are thoroughgoing pragmatists. Masterminds are certain that efficiency is indispensable in a well-run organization, and if they encounter inefficiency-any waste of human and material resources-they are quick to realign operations and reassign personnel. Masterminds do not feel bound by established rules and procedures, and traditional authority does not impress them, nor do slogans or catchwords. Only ideas that make sense to them are adopted; those that don’t, aren’t, no matter who thought of them. Remember, their aim is always maximum efficiency.In their careers, Masterminds usually rise to positions of responsibility, for they work long and hard and are dedicated in their pursuit of goals, sparing neither their own time and effort nor that of their colleagues and employees. Problem-solving is highly stimulating to Masterminds, who love responding to tangled systems that require careful sorting out. Ordinarily, they verbalize the positive and avoid comments of a negative nature; they are more interested in moving an organization forward than dwelling on mistakes of the past.

Masterminds tend to be much more definite and self-confident than other Rationals, having usually developed a very strong will. Decisions come easily to them; in fact, they can hardly rest until they have things settled and decided. But before they decide anything, they must do the research. Masterminds are highly theoretical, but they insist on looking at all available data before they embrace an idea, and they are suspicious of any statement that is based on shoddy research, or that is not checked against reality.

Alan Greenspan, Ben Bernanke, Dwight D. Eisenhower, General Ulysses S. Grant, Frideriche Nietsche, Niels Bohr, Peter the Great, Stephen Hawking, John Maynard Keynes, Lise Meitner”, Ayn Rand and Sir Isaac Newton are examples of Rational Masterminds.

Leave a Comment more...