$$ % Typography and symbols \newcommand{\msf}[1]{\mathsf{#1}} \newcommand{\ctx}{\Gamma} \newcommand{\qamp}{&\quad} \newcommand{\qqamp}{&&\quad} \newcommand{\Coloneqq}{::=} \newcommand{\proves}{\vdash} \newcommand{\star}[1]{#1^{*}} \newcommand{\eps}{\varepsilon} \newcommand{\nul}{\varnothing} \newcommand{\brc}[1]{\{{#1}\}} \newcommand{\binopm}[2]{#1~\bar{\oplus}~#2} \newcommand{\mag}[1]{|{#1}|} \newcommand{\aequiv}{\equiv_\alpha} \newcommand{\semi}[2]{{#1};~{#2}} % Untyped lambda calculus \newcommand{\fun}[2]{\lambda ~ {#1} ~ . ~ {#2}} \newcommand{\app}[2]{#1 ~ #2} \newcommand{\fix}[3]{\msf{fix}~({#1} : {#2}) ~ . ~ #3 } \newcommand{\truet}{\msf{true}} \newcommand{\falset}{\msf{false}} \newcommand{\define}[2]{{#1} \triangleq {#2}} % Typed lambda calculus - expressions \newcommand{\funt}[3]{\lambda ~ \left(#1 : #2\right) ~ . ~ #3} \newcommand{\lett}[4]{\msf{let} ~ \hasType{#1}{#2} = #3 ~ \msf{in} ~ #4} \newcommand{\letrec}[4]{\msf{letrec} ~ \hasType{#1}{#2} = #3 ~ \msf{in} ~ #4}a \newcommand{\ift}[3]{\msf{if} ~ {#1} ~ \msf{then} ~ {#2} ~ \msf{else} ~ {#3}} \newcommand{\rec}[5]{\msf{rec}(#1; ~ #2.#3.#4)(#5)} \newcommand{\case}[5]{\msf{case} ~ {#1} ~ \{ L(#2) \to #3 \mid R(#4) \to #5 \}} \newcommand{\pair}[2]{\left({#1},~{#2}\right)} \newcommand{\proj}[2]{#1 . #2} \newcommand{\inj}[3]{\msf{inj} ~ #1 = #2 ~ \msf{as} ~ #3} \newcommand{\letv}[3]{\msf{let} ~ {#1} = {#2} ~ \msf{in} ~ {#3}} \newcommand{\fold}[2]{\msf{fold}~{#1}~\msf{as}~{#2}} \newcommand{\unfold}[1]{\msf{unfold}~{#1}} \newcommand{\poly}[2]{\Lambda~{#1}~.~ #2} \newcommand{\polyapp}[2]{{#1}~\left[{#2}\right]} \newcommand{\export}[3]{\msf{export}~ #1 ~\msf{without}~{#2}~\msf{as}~ #3} \newcommand{\import}[4]{\msf{import} ~ ({#1}, {#2}) = {#3} ~ \msf{in} ~ #4} % Typed lambda calculus - types \newcommand{\tnum}{\msf{num}} \newcommand{\tstr}{\msf{string}} \newcommand{\tint}{\msf{int}} \newcommand{\tbool}{\msf{bool}} \newcommand{\tfun}[2]{#1 \rightarrow #2} \newcommand{\tprod}[2]{#1 \times #2} \newcommand{\tsum}[2]{#1 + #2} \newcommand{\trec}[2]{\mu~{#1}~.~{#2}} \newcommand{\tvoid}{\msf{void}} \newcommand{\tunit}{\msf{unit}} \newcommand{\tpoly}[2]{\forall~{#1}~.~{#2}} \newcommand{\tmod}[2]{\exists ~ {#1} ~ . ~ #2} % WebAssembly \newcommand{\wconst}[1]{\msf{i32.const}~{#1}} \newcommand{\wbinop}[1]{\msf{i32}.{#1}} \newcommand{\wgetlocal}[1]{\msf{get\_local}~{#1}} \newcommand{\wsetlocal}[1]{\msf{set\_local}~{#1}} \newcommand{\wgetglobal}[1]{\msf{get\_global}~{#1}} \newcommand{\wsetglobal}[1]{\msf{set\_global}~{#1}} \newcommand{\wload}{\msf{i32.load}} \newcommand{\wstore}{\msf{i32.store}} \newcommand{\wsize}{\msf{memory.size}} \newcommand{\wgrow}{\msf{memory.grow}} \newcommand{\wunreachable}{\msf{unreachable}} \newcommand{\wblock}[1]{\msf{block}~{#1}} \newcommand{\wloop}[1]{\msf{loop}~{#1}} \newcommand{\wbr}[1]{\msf{br}~{#1}} \newcommand{\wbrif}[1]{\msf{br\_if}~{#1}} \newcommand{\wreturn}{\msf{return}} \newcommand{\wcall}[1]{\msf{call}~{#1}} \newcommand{\wlabel}[2]{\msf{label}~\{#1\}~{#2}} \newcommand{\wframe}[2]{\msf{frame}~({#1}, {#2})} \newcommand{\wtrapping}{\msf{trapping}} \newcommand{\wbreaking}[1]{\msf{breaking}~{#1}} \newcommand{\wreturning}[1]{\msf{returning}~{#1}} \newcommand{\wconfig}[5]{\{\msf{module}{:}~{#1};~\msf{mem}{:}~{#2};~\msf{locals}{:}~{#3};~\msf{stack}{:}~{#4};~\msf{instrs}{:}~{#5}\}} \newcommand{\wfunc}[4]{\{\msf{params}{:}~{#1};~\msf{locals}{:}~{#2};~\msf{return}~{#3};~\msf{body}{:}~{#4}\}} \newcommand{\wmodule}[1]{\{\msf{funcs}{:}~{#1}\}} \newcommand{\wcg}{\msf{globals}} \newcommand{\wcf}{\msf{funcs}} \newcommand{\wci}{\msf{instrs}} \newcommand{\wcs}{\msf{stack}} \newcommand{\wcl}{\msf{locals}} \newcommand{\wclab}{\msf{labels}} \newcommand{\wcm}{\msf{mem}} \newcommand{\wcmod}{\msf{module}} \newcommand{\wsteps}[2]{\steps{\brc{#1}}{\brc{#2}}} \newcommand{\with}{\underline{\msf{with}}} \newcommand{\wvalid}[2]{{#1} \vdash {#2}~\msf{valid}} \newcommand{\wif}[2]{\msf{if}~{#1}~{\msf{else}}~{#2}} \newcommand{\wfor}[4]{\msf{for}~(\msf{init}~{#1})~(\msf{cond}~{#2})~(\msf{post}~{#3})~{#4}} % assign4.3 custom \newcommand{\wtry}[2]{\msf{try}~{#1}~\msf{catch}~{#2}} \newcommand{\wraise}{\msf{raise}} \newcommand{\wraising}[1]{\msf{raising}~{#1}} \newcommand{\wconst}[1]{\msf{i32.const}~{#1}} \newcommand{\wbinop}[1]{\msf{i32}.{#1}} \newcommand{\wgetlocal}[1]{\msf{get\_local}~{#1}} \newcommand{\wsetlocal}[1]{\msf{set\_local}~{#1}} \newcommand{\wgetglobal}[1]{\msf{get\_global}~{#1}} \newcommand{\wsetglobal}[1]{\msf{set\_global}~{#1}} \newcommand{\wload}{\msf{i32.load}} \newcommand{\wstore}{\msf{i32.store}} \newcommand{\wsize}{\msf{memory.size}} \newcommand{\wgrow}{\msf{memory.grow}} \newcommand{\wunreachable}{\msf{unreachable}} \newcommand{\wblock}[1]{\msf{block}~{#1}} \newcommand{\wloop}[1]{\msf{loop}~{#1}} \newcommand{\wbr}[1]{\msf{br}~{#1}} \newcommand{\wbrif}[1]{\msf{br\_if}~{#1}} \newcommand{\wreturn}{\msf{return}} \newcommand{\wcall}[1]{\msf{call}~{#1}} \newcommand{\wlabel}[2]{\msf{label}~\{#1\}~{#2}} \newcommand{\wframe}[2]{\msf{frame}~({#1}, {#2})} \newcommand{\wtrapping}{\msf{trapping}} \newcommand{\wbreaking}[1]{\msf{breaking}~{#1}} \newcommand{\wreturning}[1]{\msf{returning}~{#1}} \newcommand{\wconfig}[5]{\{\msf{module}{:}~{#1};~\msf{mem}{:}~{#2};~\msf{locals}{:}~{#3};~\msf{stack}{:}~{#4};~\msf{instrs}{:}~{#5}\}} \newcommand{\wfunc}[4]{\{\msf{params}{:}~{#1};~\msf{locals}{:}~{#2};~\msf{return}~{#3};~\msf{body}{:}~{#4}\}} \newcommand{\wmodule}[1]{\{\msf{funcs}{:}~{#1}\}} \newcommand{\wcg}{\msf{globals}} \newcommand{\wcf}{\msf{funcs}} \newcommand{\wci}{\msf{instrs}} \newcommand{\wcs}{\msf{stack}} \newcommand{\wcl}{\msf{locals}} \newcommand{\wcm}{\msf{mem}} \newcommand{\wcmod}{\msf{module}} \newcommand{\wsteps}[2]{\steps{\brc{#1}}{\brc{#2}}} \newcommand{\with}{\underline{\msf{with}}} \newcommand{\wvalid}[2]{{#1} \vdash {#2}~\msf{valid}} % assign4.3 custom \newcommand{\wtry}[2]{\msf{try}~{#1}~\msf{catch}~{#2}} \newcommand{\wraise}{\msf{raise}} \newcommand{\wraising}[1]{\msf{raising}~{#1}} \newcommand{\wif}[2]{\msf{if}~{#1}~{\msf{else}}~{#2}} \newcommand{\wfor}[4]{\msf{for}~(\msf{init}~{#1})~(\msf{cond}~{#2})~(\msf{post}~{#3})~{#4}} \newcommand{\windirect}[1]{\msf{call\_indirect}~{#1}} % session types \newcommand{\ssend}[2]{\msf{send}~{#1};~{#2}} \newcommand{\srecv}[2]{\msf{recv}~{#1};~{#2}} \newcommand{\soffer}[4]{\msf{offer}~\{{#1}\colon({#2})\mid{#3}\colon({#4})\}} \newcommand{\schoose}[4]{\msf{choose}~\{{#1}\colon({#2})\mid{#3}\colon({#4})\}} \newcommand{\srec}[1]{\msf{label};~{#1}} \newcommand{\sgoto}[1]{\msf{goto}~{#1}} \newcommand{\dual}[1]{\overline{#1}} % Inference rules \newcommand{\inferrule}[3][]{\cfrac{#2}{#3}\;{#1}} \newcommand{\ir}[3]{\inferrule[\text{(#1)}]{#2}{#3}} \newcommand{\s}{\hspace{1em}} \newcommand{\nl}{\\[2em]} \newcommand{\evalto}{\boldsymbol{\overset{*}{\mapsto}}} \newcommand{\steps}[2]{#1 \boldsymbol{\mapsto} #2} \newcommand{\evals}[2]{#1 \evalto #2} \newcommand{\subst}[3]{[#1 \rightarrow #2] ~ #3} \newcommand{\dynJ}[2]{#1 \proves #2} \newcommand{\dynJC}[1]{\dynJ{\ctx}{#1}} \newcommand{\typeJ}[3]{#1 \proves \hasType{#2}{#3}} \newcommand{\typeJC}[2]{\typeJ{\ctx}{#1}{#2}} \newcommand{\hasType}[2]{#1 : #2} \newcommand{\val}[1]{#1~\msf{val}} \newcommand{\num}[1]{\msf{Int}(#1)} \newcommand{\err}[1]{#1~\msf{err}} \newcommand{\trans}[2]{#1 \leadsto #2} \newcommand{\size}[1]{\left|#1\right|} $$

&Notepad

Making the Most Out of CMU

Will Crichton   —   May 16, 2016
Carnegie Mellon is a big investment, so you should make the most out of it. If you don't pay attention, its opportunities can slip right past you. I recommend doing research, taking fewer classes, ignoring your diploma, and trying to TA a class. I also include a few quick tips for better life in Pittsburgh!
Figure 1: Graduation or sleep. Pick 1.

I’m finally done. Wow. It’s difficult to think that the naïve little freshman who walked into Hamerschlag four years ago became who I am today. I am eternally grateful to the multitude of people who helped me along this journey whom I could not possibly all name in this note. My undergraduate experience has been a transformative one—I have progressed both as an academic and as a person, a friend, someone who can contribute to society. However, much of this change only occurred because I took advantage of the many opportunities that Carnegie Mellon has to offer. In this note, I would like to share with you a few of the things that enriched my time here in the hopes that you or others may follow suit and have a better experience at CMU for it.

1. Do research.

Carnegie Mellon is one of the best research institutions in the world. As a corollary, its professors are some of the smartest people you will ever meet. I know that as a student, I sometimes discounted the quality of my professors based on their teaching style or how interesting their lectures were, but don’t let that fool you: every single faculty member here is at the forefront of research in their field, and only got there through an enormous amount of hard work and brainpower. You have precisely four years to take advantage of this incredible opportunity, so do it! If you do not work with a professor, you are wasting a significant portion of CMU’s opportunities.

Personally, doing research was the best decision I made here for my academics. Until junior spring, I knew 100% that I was industry-bound, and nothing could convince me otherwise. Then, that semester I started research with Kayvon Fatahalian, and my predilections disappeared. Since then, I pivoted to grad school and now am about to start my Ph.D. at Stanford next fall. I’m only a single data point in the research narrative, but I can assure you I am not alone. So please, I implore you—talk to a professor. TA their class. Work with their grad students. It may not work out, but you have a lot to gain and little to lose.

2. Take fewer classes over time.

This piece of advice stems from a couple important observations:

  1. The more you learn, the more you realize where all the cool problems are that you can solve. As a freshman, I had no ideas how large CMU’s computer science program was, so if I asked my 18-year-old self what a cool problem would be, he would say, “doing front-end work for a startup!” 1. Now, I can speak with some confidence on machine learning (didn’t know that existed), computer vision (thought that was basically solved), computer architecture (didn’t care when I started), and so on. However, this perspective took me a long time to gain. Part of the reason I’m going to grad school is because I want more time to work on these cool problems.
  2. Cool problems require a lot of time and energy, so you can’t take a lot of courses and work on a cool problem. When I say “work on a cool problem,” I mean really invest your heart in soul. It’s definitely possible to pick up a research project or start a company with 10 hours a week, but you gain far less from the experience. If you invest 30 hours a week on your cool problem of choice, then you can make an impact: at best you’ll produce real value for someone, and at worst you’ll learn immensely about the process of tackling tough problems and you’ll cultivate invaluable connections with your fellow project members or academic advisor.
Figure 2: My number of course units over time. Thesis units are subtracted from the last two semesters. Note the downward trend!
  1. You can’t find the coolest problems in a class. The kind of problems you’ll find on a homework or in a lab can certainly be fun or enlightening, but they are almost inevitably well-trodden ground. If you want to work on problems with a real impact or ones on the edge of human knowledge (or ideally both!) then you have to free yourself from the shackles of coursework and run headfirst into the unknown, i.e. research or independent study.

In sum, do yourself a favor and work hard early on to clear out your course requirements. Take some of your free time in junior and senior year to do exploratory work. Also keep watch in freshman/sophomore year for areas you might want to specialize in! I took my first class with my future academic advisor in sophomore spring.

3. Ignore your diploma.

Diplomas are meaningless. Minors and majors are meaningless. Multiple diplomas times zero is still zero. Nobody (employers, universities, etc.) cares about which specific degree you have, but rather a) what you know, b) who you know, and c) the fact that you came from CMU (not necessarily in that order). The trouble with these pieces of paper is that they impose upon you substantial coursework burdens, and every major/minor will always have some classes that you do not want to take. Curricula must be one-size-fits-all by nature, so in order to give someone full exposure to computer science, business, theatre, etc. the curriculum designers must require a good number of core courses and electives. Your job as a student is to wiggle out of as many of these requirements as possible and to think critically about which classes are best for you 2. Take courses that interest you, as you’ll do far better if you actually like the material—this seems like an truism, but a surprising number of students seem to take courses they don’t like.

However, a number of students take the equally surprising move of not shedding requirements, but instead burdening themselves with more! Many of my fellow classmates had multiple minors, double/triple majors, and dual degrees. This is not to say that taking a greater variety of classes is bad; indeed I have great respect for people who put in the effort to get two diplomas, and for some that is truly the correct path. For most people, though, their time can be better allocated. Anecdotal evidence: my brother graduated from CMU with a dual degree in both Computer Science and Electrical and Computer Engineering. However, he was really only interested in the computer architecture part of ECE, yet he still had to take courses in analog circuit design, signal processing, and so on. Although he graduated with two pieces of paper, in retrospect he wished that he didn’t have to have taken those extra classes unrelated to his true passion.

This also impacts point #2: you won’t have time to explore cool problems if you have to take 18 classes your senior spring to finish up all of your degrees. So again, do yourself a favor, minimize the course requirements and maximize the courses that interest you.

4. TA a class.

If you really liked one of your classes and did well enough, then consider TAing it. A few reasons for this:

  1. You’ll improve as an educator and public speaker. I strongly encourage you to TA a class that has a recitation or lab, as this provides you a valuable chance to both interact directly with the course’s students and practice your education/speaking skills. Being able to concisely convey complex ideas to an audience of varying skill levels will come in handy the rest of your life, particularly in technical fields where most people are incapable of this. Also, you really should be comfortable speaking in front of a room. I could write an entirely separate note extolling the virtues of public speaking, but for now just believe me: it’s important. And TAing is one of the few opportunities you’ll get to reliably practice public speaking (unless you join debate! :D).
  2. You’ll understand the material far better. Let’s be real—you, like me, probably forget 80% of a course’s content after you’re done with it for the semester. TAing for a class will not only refresh the material in your mind, but help you internalize it. It takes a great deal more of understanding to teach a concept to someone else than to pass an exam.
  3. You get closer to the professor. If you’re interested in research (see points #1 and #2), there’s no better way to get close to a professor than to TA his/her class. I started doing research with my advisor, Kayvon, during the same semester I was TAing his class, 15-418.
  4. You’ll make some great friends. Like other extracurriculars, if you spend 10 hours a week in the same room with the same set of people, you’ll inevitably become friends. In my experience, your fellow TAs are almost always fun, smart, and motivated individuals and a great crowd to hang around.
  5. You should give back to the campus community. At least in computer science at CMU, undergraduate TAs are the backbone of most classes. I received an enormous amount of help from TAs over my four years, and they do a great service for the campus for relatively little reward (the pay is not great, but at least you can eat at Rose Tea every day). You should reciprocate this good will by serving as a TA in turn.

Addendum: Quick tips

Here’s a couple short pieces of advice for making the most of Pittsburgh and CMU campus.

  1. Pittsburgh Airport: always go to the alternate security checkpoint on the floor with the check-in counters. It has shorter lines.
  2. Haircuts: I’ve had a good experience at Puccini’s in Oakland. Close, good quality, relatively cheap, and not SuperCuts.
  3. Food:
    1. On campus: Exchange for decent lunch sandwiches. Food trucks if you’re not on a block. Don’t forget Fancy Resnik on Tuesdays.
    2. Close to campus: Craig St., generally Eat Unique or Rose Tea (or Sushi Fuku if you’re in to that kind of thing).
    3. Off campus: Mallorca [South Side], Casbah [Squirrel Hill], Sichuan Gourmet [Murray Ave] are all good.
  4. Leisure: go to Phipps Conservatory, Three Rivers Park, or the Climbing Wall.
  5. Gates:
    1. Never take the Helix (unless you have a class there).
    2. Actually, take the Helix once, just so you realize how bad of a mistake it is.
    3. Good meeting rooms: 9th floor corner, 8th floor corner, 7th floor near the commons, 6th floor by the bridge, 4th floor across from Rashid.
  6. Freshman dorms: you want, in order: Stever, Mudge, Morewood, Donner, Rez.
  7. Classes:
    1. Check out the Student Taught Courses (StuCo). Lot of cool stuff there.
    2. If you’re CS, please consider a minor that’s not math.
  8. Text editors: Emacs rules supreme (sorry, just had to throw that in there).

References

  1. That’s not to diminish front-end work—UI/UX and HCI in general have a lot of cool problems, but that’s the entire set of CS-related things I knew about coming in to CMU. 

  2. The people who design these curricula are the same incredibly intelligent professors mentioned in point #1. CMU curricula were designed for a reason, and you should strongly consider those reasons when deciding what courses to take for yourself. I’m not advocating that you throw caution to the wind and take whatever courses sound the most fun, but instead to just meaningfully engage with the course decision process instead of going to either extreme (taking only default courses vs. ignoring all the requirements).