Click here to Skip to main content
15,867,488 members
Articles / All Topics

A Coder Interview With Chris Sells

,
Rate me:
Please Sign up or sign in to vote.
4.95/5 (14 votes)
7 Mar 2012CPOL9 min read 37.5K   5   8
Welcome to our continuing series of Code Project interviews in which we talk to developers about their backgrounds, projects, interests and pet peeves. In this installment we catch up with developer, author, blogger and instructor Chris Sells, who we previously interviewed back in 2000.

Welcome to our continuing series of Code Project interviews in which we talk to developers about their backgrounds, projects, interests and pet peeves. In this installment we catch up with developer, author, blogger and instructor Chris Sells, who we previously interviewed back in 2000.

Who are you?

My name is Chris Sells and I'm the Vice President of the Developer Tools division of Telerik, a developer tools and controls company (among other things). The US subsidiary for which I officially work is in Boston, whereas the division that I lead is based at the company's headquarters in Sofia, Bulgaria. I, on the other hand, live and work in Portland, OR, and travel to visit the team about one week per month.

What do you do?

I've worked on countless projects, the details of which since 1995 can be seen on my blog at sellsbrothers.com.

Most recently, I spent the last year working on the Windows 8 Metro-style app tooling on the Visual Studio team. I did a number of things on that team, but most visibility I was the team lead for the Metro/JS templates you see today in the Visual Studio 11 Developer Preview.

My typical day, in the abstract, hasn't changed much since I joined DevelopMentor in 1994. I keep a running list of things that I can do to help make developers' lives better: a blog post, a book, a conference talk, a product, a feature, a library, an answer to a question, etc. Based on that list, each day I dive in, either doing the work myself or working with the team I need help to make it happen.

The combination of individual work and team-based work is still important to me. Because of the time zone difference, when I'm not visiting Eastern Europe to work directly with the team, I spend the first three hours of the day doing the collaborative work in meetings or emails while my team is still awake, then I switch to individual work. This makes for a very nice mix, since I still need to code and write technical articles to feel like I'm really connecting with my intended customer.

It is very much the case, however, that 2/3 of my 28-year career has been focused on that single question: what can I do to make developer's lives better? It's been a very satisfying choice.

What is your development environment?

I've programmed a lot of languages, including BASIC, Lisp (Common and Scheme), Fortran (I hate whitespace significant languages!), DOS batch files, Korn shell, Pascal, Ada, C and C++, HTML and CSS, XML, XSLT (ick!), dBase, SQL, SML, Java, C# (wahoo!), JavaScript and several proprietary 4GLs for which I can't even remember the name.

Of those, I spent 10 solid years on C++ and 10 more solid years on C#. Both of them has their pluses and minuses, especially in a mobile computing world, but C# is the one I turn to for my own personal projects. It has the right level of spell-check unit testing (AKA the compiler), tooling (I love reliable IntelliSense!) and performance for my own personal needs.

My dev box is a 15" MacBook Pro with 8GB of RAM, 512GB of SSD and 8 cores of I7 goodness. It runs Mac OS X something (Lion? Pussy Willow? Who knows?), but that was just so I could run Boot Camp and get Windows 7 on there, which is my day-to-day OS right now. I plan for that to change soon with Windows 8, which I currently run in a VM inside Windows 7 using VMWare Workstation 8.

What new tools, languages or frameworks interest you?

2011 was a very intense JavaScript/HTML/CSS year for me where that's all I did. I have to recommend HTML, JavaScript and CSS for practically all UI front-end needs in the future. It has nearly universal availability for computers and devices, plus it's even available as a native option in Win8 and on iOS and Android via PhoneGap. I expect to be doing a lot more of this in the future.

What is your coding pet peeve?

My biggest coding pet peeve is inconsistent coding style in a single source code file. In a team I once ran long ago, we had a coding style guideline document with two rules:

  1. Keep the coding style consistent in every file you edit.
  2. Use spaces instead of tabs.

Rule #1 allows a developer to use their own coding style on the files that they spend the most time in, while also teaching other members of the team the merits of a coding style different than their own. Rule #2 is just good sense.

Another recent pet peeve is based on code I'm reading a lot in C# these days, which just uses "var" everywhere. I really love "var" as a shortcut when I'm creating an instance of an obvious type:

var x = 42; // an int
var s = "foo"; // a string
var p = new Person(); // a Person
var wtf = GetSomeData(); // ???

The problem with the last line is that without hovering my mouse over "GetSomeData", I have no idea what type it is by reading that line of code. And I hate using my mouse. I'm a keyboard guy, especially when I'm coding.

I used to use Hungarian in my Win16 days — cuz all the cool Win32 kids were doing it. Likewise, I use PascalCase and camelCase when it's appropriate to do so based on prevailing language conventions. Really, as you can tell from my coding style rule #1, I just like to fit in. :-)

As far as code formatting, I'm K&R all the way. It reads better, fits more info into a smaller space without hampering readability, fits into books and slides better, etc. It's all goodness. I wish it were the default in Visual Studio. It's the one option I must change whenever I install a new copy.

How did you get started programming?

I spent my high school years programming Applesoft Basic on my Apple II+ in my parent's basement. I still remember the day when my mother took me to get it. I had the choice of an Apple II+ or an Apple IIe. The IIe was more expensive and I figured that 80 columns and lowercase characters were just a fad, so I went with the cheaper II+. I have always since purchased the most expensive computer I could afford.

Even so, I loved that computer. I'd come home every day after school, flip to Danger Mouse on TV, play computer games and write software. I wrote a D&D character sheet database for me and my friends. I wrote track & field score tracking software for my high school. I used the speech synthesizer card my grandmother bought me to write a program that would read 6502 assembly code listings back to me so I could find errors in programs I'd typed in from magazines.

BASIC programs on the Apple were available for listing just like the View Source programs in today's browser apps, which meant that I could learn how to program by reading programs written by other programmers I admired; the Beagle Bros. springs to mind as the top of that heap. To keep their IP, they would add a line 0 that would actually be executed when it was listed to cause the memory to be cleared and no more lines of code to be listed, so you learned to start listing from line 1. Then they moved their memory clearing code to line 1 and it was a cat — n' mouse game forever after that. I loved those guys.

How has the developer community influenced your coding?

As I mentioned, I'm a big fan of learning to code by reading other people's code. Whenever I look something up online, I skip the first few paragraphs just so I can get to that first code sample. In fact, one time I did that, found the code I needed, but kept reading because I found I liked the writing style. By the end I figured out that it was an article that I'd co-written with a friend of mine. Talk about focusing on the trees instead of the forest.

The programming community has had an enormous effect on my programming. I learned to really think like a programmer in a reading group during my first real job at Intel, spending lunchtimes discussing the next chapter in Steve Maguire's "Writing Solid Code," with my co-workers.

Teaching at DevelopMentor introduced me to a whole new community of speakers and conference attendees and heroes, like Matt Petriek, Charlie Kindel and Don Box.

Those developers inspired me to speak and write and to start a web site, which I did way back in 1995. That web site started to be shared around, so I added stuff and that got shared around and suddenly, I was a real community member, interacting with other community members, trying to one-up each other with the newest, coolest thing (I mean really "the MeowMoniker " what was I thinking?).

Today, I'm still as much of a participating member of the community as I can get time to be. I was honored to give part of the keynote at the developer launch of Windows 8. I've written a number of books (and am currently writing a Windows 8 Metro/JavaScript book). I still blog as much as I can, but not as much as I used to because I'm a huge fan of boiling my thoughts down to 140 characters for twitter, where I am @csells. Also, it seems like whenever I've got a technical question, I invariably end up with an answer on StackOverflow.

What advice would you offer to an up-and-coming programmer?

I would give a programmer this piece of advice: keep learning. The IT industry is a fast-changing place and to keep doing the coolest, most fun things, you have to be willing to spend evenings and weekends following your whims and learning new things. Build apps. Write blogs. Moonlight. Ask stupid questions. Try things that cause your computer to burst into flames. Whatever it is, keep learning new things all the time.

If you do that, you'll get to look back on your career like I have and say, "Really? You paid me to do that? I'd have done it all for free!"

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer CodeProject Solutions
Canada Canada
The CodeProject team have been writing software, building communities, and hosting CodeProject.com for over 20 years. We are passionate about helping developers share knowledge, learn new skills, and connect. We believe everyone can code, and every contribution, no matter how small, helps.

The CodeProject team is currently focussing on CodeProject.AI Server, a stand-alone, self-hosted server that provides AI inferencing services on any platform for any language. Learn AI by jumping in the deep end with us: codeproject.com/AI.
This is a Organisation

4 members

Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionGreat Pin
Fabio Franco8-Mar-12 6:29
professionalFabio Franco8-Mar-12 6:29 
AnswerRe: Great Pin
Chris Sells8-Mar-12 8:42
Chris Sells8-Mar-12 8:42 
GeneralRe: Great Pin
Fabio Franco8-Mar-12 9:58
professionalFabio Franco8-Mar-12 9:58 
GeneralMy vote of 5 Pin
Shrilata Ellaboina7-Mar-12 18:54
Shrilata Ellaboina7-Mar-12 18:54 
GeneralMy vote of 5 Pin
Pranit Kothari7-Mar-12 16:28
Pranit Kothari7-Mar-12 16:28 
GeneralMy vote of 5 Pin
Pete O'Hanlon7-Mar-12 11:39
subeditorPete O'Hanlon7-Mar-12 11:39 
GeneralRe: My vote of 5 Pin
Chris Sells8-Mar-12 8:40
Chris Sells8-Mar-12 8:40 
GeneralRe: My vote of 5 Pin
Pete O'Hanlon8-Mar-12 9:28
subeditorPete O'Hanlon8-Mar-12 9:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.