Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:Microsoft Research (Score 1) 117

(1) Not everyone can draw a cartoon version of themselves that would be aesthetically pleasing.

(2) They animate the face to match captured motion.

Now, granted, for (2) they could instead analyze a cartoon face drawn by a human and figure out how to animate it...but I'm guessing you would think THAT was a waste of time as well.

I used to work in creating educational software. Having this technology would have been a boon for some of the stuff we were planning.

You sure are down on what, I think, are interesting research projects. I don't think anyone could have ever been under the impression that Song Smith would or was intended to replace actual composers.

Comment You train them the same way you train anyone else. (Score 1) 292

The way you train a "replacement" is the same way you train any new employee on a software team.

Start by giving them small tasks. Let them work their way through your backlog of things you haven't gotten around to doing. Bugs are great candidates for new members of the team. Ease them into the code base. Do code reviews with them before check-ins.

Personally, I like to do some pair programming during the first couple of days to help them set up their development environment and familiarize themselves with how I've been working on the code.

Unless this is a trivial project, you're never going to be able to impart all of the knowledge you have about it. If they're worth anything (and you're worth anything) it won't be so complex that they can't figure out how to extend / maintain it. Your job is to give them a leg up and ease the learning curve.

Be open and honest and helpful. The reality is that this new guy is either able to replace you or isn't. If a novice is able to successfully replace you, maybe the project has matured beyond the need for a senior-level developer and it's time for you to move on.

If that's not the case, it will become abundantly clear in due time and they will treasure you all the more for having seen the difference your skills & experience provide.

Comment Re:Question: (Score 1) 708

I can't believe this is marked as insightful.

Worries about your current job don't trump other factors when deciding whether or not to create a human being.

Sure, the timing is unfortunate, but there are a million other concerns that might far outweigh the stability of your current position.

Comment Re:Patterns over hyped? (Score 1) 129

Depending on the type of work you are doing, it might be that the majority of your architecture is already in place (e.g., web frameworks like Rails). It could also be (as someone else implied) that the patterns are there and you aren't recognizing them. I hope you don't mind, but I checked your profile and it said "java web dev". You're not going to escape using Java for just about anything without using design patterns. You may not be implementing them, but the libraries you are using make use of them extensively.

The "valueOf" function in Java is a static factory method. Why does it matter that it has a name? Because if you and I both know the name, we can discuss it more efficiently.

For instance:

Jill: "You have a lot of different constructors for your class, have you considered using static factory methods to make it more obvious what is going on?"
Bob: "We could do that but maybe we should consider using the Builder pattern instead."
Mike: "Whoa, wait a minute. I think Builder might be overkill for this situation."

If our heroes don't have a common understanding of "static factory method" and "Builder pattern" the discussion becomes more lengthy. Having a common terminology for patterns facilitates discussion.

People can describe a solution to a problem they encountered. Maybe their solution is a known pattern - great! They don't have to describe it themselves, they can point you at a wiki article and then describe how that solution worked in their specific situation. Maybe their solution isn't a known pattern - interesting! They can describe it in relation to other patterns and discuss the pros & cons of their approach versus the others.

You can look up implementations of the pattern in the language / framework you happen to be using and see how other people have approached the problem.

You can read people's thoughts about using the pattern, "Well, we considered but ended up doing something closer to ." Maybe you hadn't even considered "pattern 2" and maybe it's a better solution for your situation.

And if people aren't using the names, you can still sometimes listen to their description of the system and short circuit a whole bunch of (high level) analysis. "Ah...that thing he's taking two pages to describe is a Factory. Got it."

As far as using the patterns as a catalog...yes, that can be a problem. There is real danger of ending up in a "solution looking for a problem" mindset. But, paired with maturity and discipline, familiarity with solutions other people have used for a variety of problem can't hurt.

Comment Re:Do keep up, dear boy... (Score 4, Informative) 546

You are completely and absolutely wrong. Are you getting him confused with someone else? Asimov studied for and received his Ph.D. in biochemistry the standard way. He then worked for the Navy during WWII as a chemist and was later a professor of biochemistry at Boston University. I know all of this because I was a huge fan as a kid (and read his autobiography multiple times). But here's the wikipedia article: http://en.wikipedia.org/wiki/Isaac_Asimov
Music

Brian Eno Releases Second iPhone App 196

Brian Eno, or as he is known to many in my office, "God," has released his second iPhone App. A followup to Bloom, this one is called Trope and supposedly creates darker music. You create music by drawing shapes on the iPhone's screen.

Slashdot Top Deals

All seems condemned in the long run to approximate a state akin to Gaussian noise. -- James Martin

Working...