<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Work and Workings of a Nerd</title>
	<atom:link href="http://kevinleung.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kevinleung.com</link>
	<description>A personal blog about what&#039;s on Kevin&#039;s mind.</description>
	<lastBuildDate>Mon, 30 Jan 2012 05:04:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>If We&#8217;re Moving Classes Online, Where Are They Leaving From?</title>
		<link>http://kevinleung.com/archives/if-were-moving-classes-online-where-are-they-leaving-from/</link>
		<comments>http://kevinleung.com/archives/if-were-moving-classes-online-where-are-they-leaving-from/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 05:04:31 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://kevinleung.com/?p=725</guid>
		<description><![CDATA[There&#8217;s been a recent trend of moving opening up coursework to the world on the internet. The first steps towards this happened a few years ago with resources such as iTunes U and OCW, where recorded lectures and notes were made available online. This trend, however, has taken the next step as university courses in ...]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s been a recent trend of moving opening up coursework to the world on the internet. The first steps towards this happened a few years ago with resources such as <a href="http://www.apple.com/education/itunes-u/">iTunes U</a> and <a href="http://ocw.mit.edu/index.htm">OCW</a>, where recorded lectures and notes were made available online. This trend, however, has taken the next step as university courses in their entirety are being offered online, with graded homework and a certificate to boot. I&#8217;m mos  t familiar with <a href="http://www.cs101-class.org/hub.php">offerings</a> <a href="https://www.ai-class.com/">from</a> Stanford, but I think <a href="http://web.mit.edu/newsoffice/2011/mitx-faq-1219.html">others</a> are jumping on the bandwagon, too.</p>
<p>The reasoning behind it is sound. A lot of coursework is moving online anyways as convenience for students, and it seems like the <em>right</em> thing to do. I&#8217;m fortunate enough to be a student at a well-funded private university, but that luxury isn&#8217;t available to most people. With the popularity of this model from sites such as <a href="http://www.khanacademy.org/">Khan Academy</a> and the pipeline to do it, it seems almost unfair to restrict the content to the few who can afford it.</p>
<p>It&#8217;s not perfect. For many classes, there&#8217;s no replacement for the ability to work hands-on and in-person for a class. You lose the physical environment of a college campus and the ability to collaborate with instructors and other students directly. Some argue that the most valuable part of college is not the class but the people you meet. If you can&#8217;t have that, though, this is pretty close. The traditional teaching model with hour-long lecture and problem sets don&#8217;t really involve interaction to a large degree.</p>
<p>At the risk of sounding privileged and snooty, however, I&#8217;m a little disappointed by how this change is being embraced in class design for in-person students. Since this was an initiative in the Stanford Computer Science department, I&#8217;ve taken several classes (and am currently taking a class) that are now in the online format. To accommodate the students, they&#8217;ve made some changes to how the class is taught, both for online and in-person students. And I think they&#8217;re a little worse for it.</p>
<p>Most professors really do <em>just </em>lecture, and a recording is no different. I actually depend heavily nowadays on watching lecture online to work with my schedule. But some professors are really good in class, and it&#8217;s a shame to lose that. For example, <a href="http://www.stanford.edu/~jurafsky/">Dan Jurafsky</a> is teaching an online class on <a href="http://www.nlp-class.org/">Natural Language Processing</a>. I took the class from him junior year, and the lectures were great. He actively pushed students to think in-class, ask and answer questions, and just made it a really fun environment, even though he did teach by lecturing from slides. Even though the class was early in the morning, everyone was awake and could really be a part of things.</p>
<p>That class, however, might be an exception. The other substantial change that I&#8217;ve noticed is a change in the workload for students. In order to make classes available to possibly thousands of students, grading must be automated: it isn&#8217;t practical have TAs go through all the assignments by hand. This model isn&#8217;t really scalable for, say, English classes, where most of the work is discussion and essays. But for many technical fields, where work boils down to getting the right number at the end of a derivation or writing a program that computes the correct output for some specification, it might work.</p>
<p>Having gone through these classes, however, I think that might be cutting students short to some degree. Let&#8217;s take Computer Science as an example. Past the 3 course introduction to programming series, most of my work has been tailored towards proofs and conceptual understanding. Once you has a sense for how to program, actually programming in classes becomes much less relevant: if you need to implement a program, you take a few days and learn the specifics of the language. The real trickiness comes in understanding how to build systems, which requires conceptual understanding to compose and extend systems.</p>
<p>Take, for example, <a href="http://www.pgm-class.org/">Probabilistic Graphical Models</a>. Roughly, this class on artificial intelligence is about modeling phenomenon using probability. This class is historically known to destroy students. In the past, there were biweekly problem sets involving derivations and proofs for 5-ish problems, often the results of research papers in the field. TAs were responsible for grading these lengthy, often page-long proofs involving a mix of mathematical derivations, cleverness, and intuitive explanation. This syllabus, however, needed to be switched up, so it&#8217;s now weekly programming application projects.</p>
<p>So admittedly most of my response to that is bitterness at having been brutalized by the problem sets for this class while current students can just write a little bit of code. But it seems to me that students now aren&#8217;t getting the same depth that they would have thinking through problems. For many advanced algorithms, the actual implementation is relatively easy when it&#8217;s already outlined: it&#8217;s basically just translating a description into code, which often doesn&#8217;t require much insight into the algorithm itself. Trying to re-derive the same result or prove a similar concept, however, is much more difficult and requires understanding of how things work. I don&#8217;t need a class to teach me whether I did something right: I need a class to teach me whether I understand.</p>
<p>We&#8217;ll see how this shift goes moving forward. I&#8217;m all for providing content online as long as it doesn&#8217;t displace valuable aspects of current teaching methods. By focusing on the most tangible products of coursework, such as lecture content and quizzes, we might lose out on more subtle parts of an embodied, learning experience. Let&#8217;s democratize education as best we can, but don&#8217;t sacrifice the vitality of colleges while we&#8217;re at it.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinleung.com/archives/if-were-moving-classes-online-where-are-they-leaving-from/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using the Web to Make Academic Work Useful</title>
		<link>http://kevinleung.com/archives/using-the-web-to-make-academic-work-useful/</link>
		<comments>http://kevinleung.com/archives/using-the-web-to-make-academic-work-useful/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 05:47:56 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[psychology]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://kevinleung.com/?p=721</guid>
		<description><![CDATA[For several stretches of several academic school years, I have allowed my class-related work to become my blog content. Sometimes it&#8217;s more natural, such as the final essay for Creative Nonfiction, and sometimes it&#8217;s less natural, such as short critiques for Moral Philosophy. Most of my motivation for posting this work is pure laziness: it&#8217;s ...]]></description>
			<content:encoded><![CDATA[<p>For several stretches of several academic school years, I have allowed my class-related work to become my blog content. Sometimes it&#8217;s more natural, such as <a href="http://kevinleung.com/archives/you-use-this-washroom-often-by-kevin-leung/">the final essay for Creative Nonfiction</a>, and sometimes it&#8217;s less natural, such as <a href="http://kevinleung.com/archives/response-to-responses-to-benthams-utilitarianism/">short critiques for Moral Philosophy</a>. Most of my motivation for posting this work is pure laziness: it&#8217;s really hard to will myself to write a blog post after having worked through an essay. A smaller point, which is the crux of this post, is that it seems a shame that I should spend so much time on classwork that will ultimately be seen by only one grader.</p>
<p>Not all classwork is valuable beyond its own context. Mechanical math problems and proofs of known results are obvious examples of classwork for its own sake, so I hope you won&#8217;t be offended if I avoid posting addition and multiplication worksheets. A lot of other classwork, however, emphasizes critical thinking, synthesis, and creativity in research and projects.</p>
<p>I&#8217;ve tried to make most of my original and less embarrassing writing available on this site, either in blog posts or on my <a href="http://kevinleung.com/writing/">Writing page</a>. Despite its pedagogical purpose, classwork can still be original and contribute to knowledge as a whole, especially given how sparse some of the content may be. For example, Google Analytics tells me that my essays and responses for Moral Philosophy are some of the most popular content from google searches on specific philosophers and philosophies. Posting this content is cheap and easy for me, and it may be extremely valuable to anyone else who ends up researching similar topics to those papers.</p>
<p>Even so, most of my work has been relatively simple, and I have often been frustrated by how difficult it can be to find similar resources for some actual published papers. Many researchers have released open frameworks for their work, but more often than not, the details aren&#8217;t available. Datasets, stimuli, program code, and all sorts of other work are poured over by researchers for months and sometimes years, yet are basically forgotten after being summarized and presented in a paper. I&#8217;m not a full-fledged researcher and don&#8217;t understand most of the logistics, red tape, and politics that probably drive most of the reasoning behind the process, but in the pursuit of knowledge, it only seems right to make as much known as possible.</p>
<p>Along those lines, I&#8217;ve taken that first step and released several of my projects on <a href="https://github.com/StoicLoofah">GitHub</a>, where you can view much of the code for research I&#8217;ve done, along with some results and write-ups. As you might expect, the code is something of a mess, though should anyone want to use or understand it, I would be happy to clean it up. In all likelihood, the repositories will likely sit on the web, unseen and unimportant, but for how much I complain about not being able to find things, I can at least say that, &#8220;I tried.&#8221;</p>
<p>For many of my peers who have also worked on various projects, I recommend that you do the same. I&#8217;ve seen some really impressive work come out of class projects, and it would be a shame for that to be the end of it. And use it for current projects as well. Should you be doing any coding or research, you should be using a version control system anyways, so you might as well make it publicly available as well. In academia, we&#8217;re always all collaborating with everyone.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinleung.com/archives/using-the-web-to-make-academic-work-useful/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why Campaign Rules Turn Politicians and Voters into Bad People</title>
		<link>http://kevinleung.com/archives/why-campaign-rules-turn-politicians-and-voters-into-bad-people/</link>
		<comments>http://kevinleung.com/archives/why-campaign-rules-turn-politicians-and-voters-into-bad-people/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 19:36:09 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[nonfiction]]></category>

		<guid isPermaLink="false">http://kevinleung.com/?p=719</guid>
		<description><![CDATA[You can find it after the jump to TUSB. I would&#8217;ve posted it here, but it&#8217;s something I genuinely want feedback on, so I figured I would try to hit a bigger audience. Let me know what you think.]]></description>
			<content:encoded><![CDATA[<p>You can <a href="http://tusb.stanford.edu/2012/01/why-campaign-rules-turn-politicians-and-voters-into-bad-people.html">find it after the jump to TUSB</a>. I would&#8217;ve posted it here, but it&#8217;s something I genuinely want feedback on, so I figured I would try to hit a bigger audience. Let me know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinleung.com/archives/why-campaign-rules-turn-politicians-and-voters-into-bad-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Year’s Hopes: 2012 Edition</title>
		<link>http://kevinleung.com/archives/new-years-hopes-2012-edition/</link>
		<comments>http://kevinleung.com/archives/new-years-hopes-2012-edition/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 20:53:36 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://kevinleung.com/?p=713</guid>
		<description><![CDATA[Another year, another set of hopes. In case you&#8217;re not familiar with this series, my Hopes are like Resolutions, except without the resolve part. I&#8217;m not too committed, and therefore basically unable to fail. If that doesn&#8217;t quite make sense, you can follow the chain back from last year&#8217;s post and look at other explanations ...]]></description>
			<content:encoded><![CDATA[<p>Another year, another set of hopes. In case you&#8217;re not familiar with this series, my Hopes are like Resolutions, except without the resolve part. I&#8217;m not too committed, and therefore basically unable to fail. If that doesn&#8217;t quite make sense, you can follow the chain back from <a href="http://kevinleung.com/archives/new-years-hopes-2011-edition/">last year&#8217;s post </a>and look at other explanations I have given. Feel free to critique my explanation as it&#8217;s likely changed and become contradictory over time.</p>
<p>But first, let&#8217;s check in with last year&#8217;s Hopes:</p>
<p><strong>1) Be more informed and open-minded.</strong></p>
<p>I feel like I succeeded on this one. I still only read <em>The New York Times</em> as my only source of mainstream media news, but I have at least branched out to reading the conservative op-eds that they have. That&#8217;s getting a different perspective, right?</p>
<p>More seriously, though, I think another good switch that I made was using reddit instead of Google Reader as my primary stream of internet content. Although reddit has its limitation, Google Reader has more: I was only getting information from a fixed set of sources that I predetermined to be of interest to me, i.e. similar to my own mindset and views. reddit is a strange community, and it has the mob mentality and young, libertarian bent that you might expect from an internet community. Even so, I have been reading content from many sources I would have never found otherwise, and I can read reaction to content in the comments on reddit.</p>
<p><strong>2) Stay in touch.</strong></p>
<p>This was less successful. I think I have done as good a job staying touch with people as I ever have: I usually try to round up a couple big groups at this time of year, but otherwise, I haven&#8217;t really reached out too often. Cold-calling is a little awkward, especially in a growing world of asynchronous, digital communication, but I should probably work to overcome that a little more.</p>
<p>&nbsp;</p>
<p>So what do I have on tap for this upcoming year? I honestly contemplated not putting any hopes out there since I&#8217;ve recently been going through a weird zen phase where I&#8217;m trying to avoid planning and setting goals too much. Even so, I do have a few things on my mind that I would like to do, and I would be deceiving myself to deny that they exist. Hopes are just hopes anyways, right?</p>
<p><strong>1) Write a book, and get everything done to get to that point.</strong></p>
<p>I&#8217;m currently planning on finishing my master&#8217;s a quarter sooner than I originally anticipated, and although school comes to an end, I want to keep up with the same sort of things. For one of the term papers I wrote this past quarter, I ended up with a dozen different topics surrounding an issue that I thought were interesting, each of which could turn out to be an interesting chapter. While thinking through that, I read several interesting books and sources that I would have loved to spend more time reading as leisure. I&#8217;ve thought quite a bit about doing this, but we&#8217;ll see what comes of it.</p>
<p><strong>2) Play a few more video games.</strong></p>
<p>Specifically, I currently have 4 different role-playing games in my Steam account that I haven&#8217;t played, and I would like to catch up on those. Through college, I played a tremendous amount of Super Smash Bros. and found a few other fun things to do with my friends, but computer games, a staple in my pre-college days, were left behind.</p>
<p>I think this was the correct thing to do, but over the past month or so, I&#8217;ve been playing <a href="http://en.wikipedia.org/wiki/The_Witcher_(video_game)">The Witcher</a>. Although the gameplay is a little weak and monotonous, the decisions and plot were very compelling. Specifically, the moral choices are very complex. I&#8217;ve played many RPGs, and most have a good/evil split, with the &#8220;correct&#8221; choice being quite obvious. In The Witcher, nothing is clear: do you help the Order of the Flaming Rose, who is sworn to killing monsters, protecting humans, and maintaining order, but also is racist and intolerant of non-humans? Or do you help the Scoia&#8217;tael, the freedom fighters who believe in equality but have resorted to crime, terrorism, and hostage-taking to achieve their goals? I could go on quite a bit about some of the rest of the content, but it suffices to say that this game, for the first time ever, legitimately had me thinking for a minute about what the right response was in some conversation or decision. Perhaps I&#8217;ll discuss this further in another post.</p>
<p><strong>3) Cajun cooking.</strong></p>
<p>For the past few summers, I&#8217;ve had a goal of something that I wanted to work on with my cooking. I think the next goal I have is Cajun cooking. That probably means that my mostly vegetarian cooking will need to come to an end as I start using seafood and sausages, but we&#8217;ll see how that works when I get there.</p>
<p>&nbsp;</p>
<p>I think I have more that I want to do but don&#8217;t immediately have in mind. These types of Hopes come up regularly, so maybe I just need to follow the thoughts I have in the moment. Let&#8217;s count that as another Hope, too.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinleung.com/archives/new-years-hopes-2012-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Christmas Cooking with the Leungs</title>
		<link>http://kevinleung.com/archives/christmas-cooking-with-the-leungs/</link>
		<comments>http://kevinleung.com/archives/christmas-cooking-with-the-leungs/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 18:55:05 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[food]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://kevinleung.com/?p=683</guid>
		<description><![CDATA[Merry Belated Christmas, Happy New Year in advance, and Happy Holidays as a catch-all! Here at the Leung family estate, being all together means a few things: whining, bickering, accusing, and, most importantly, cooking. Often all at the same time. Over each other. It&#8217;s quite an enlivening experience once you get used to it. But ...]]></description>
			<content:encoded><![CDATA[<p>Merry Belated Christmas, Happy New Year in advance, and Happy Holidays as a catch-all! Here at the Leung family estate, being all together means a few things: whining, bickering, accusing, and, most importantly, cooking. Often all at the same time. Over each other. It&#8217;s quite an enlivening experience once you get used to it.</p>
<p>But Christmas is extra-special, because we put extra planning into everything: my mom coordinates all of the gifts, my mom determines what we&#8217;re going to cook for her birthday (often celebrated along with Christmas since they&#8217;re close and we&#8217;re all home), my mom makes sure that the house is organized for all of our arrival, and we all dredge up old stories to jab each other with. This particular Christmas, we all have our own kitchens to stock, so my mom appears to have amassed a huge pile of on-sale kitchen gadgets from which we can all snatch what we need. My haul was particularly good:</p>
<p style="text-align: center;"><a href="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0054.jpg"><img class="aligncenter" title="my Christmas gifts!" src="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0054-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>But moving past my obsession with containers and random gadgets, let&#8217;s focus on what we actually cooked up on Christmas. And all pictures are credited to the Zanbato iPad, which at least takes better pictures than my phone.</p>
<p>When it came time for planning our contributions to cooking for my mom, I was politely asked, &#8220;What are you doing?&#8221; I shrugged and offered up my services anywhere they were wanted, but my mom threw me a bone and said, &#8220;I liked the bagels you made last year.&#8221; That might make her the exception, as they were universally regarded as too salty and a little small and not fluffy, but I accept any low standards that I manage to set for myself. It makes it more difficult for people to be disappointed in the future. At the recommendation of Lisa&#8217;s Jewish boyfriend Matt, I looked specifically for a kosher bagel recipe, which I found <a href="http://kosherfood.about.com/od/kosherbreadrecipes/r/bagels.htm">here</a>.</p>
<p>The recipe called for far too little flour, and I ended up adding close to another cup of flour to get the consistency of the dough right. It also calls for very large pieces of dough for each bagel. I made them much larger than last time, but not quite as big as recommended. I think I got the size just about right.</p>
<p><a href="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0011.jpg"><img class="aligncenter size-medium wp-image-691" title="boiling bagels" src="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0011-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>This recipe said to put the bagels in hot but not boiling water as well. I&#8217;m not entirely sure if this is correct, but at least they floated this time. The dough also rose more at each stage (resting, boiling, and baking).</p>
<p style="text-align: center;"><a href="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0019.jpg"><img class="size-medium wp-image-692 aligncenter" title="top of a bagel" src="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0019-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p style="text-align: left;">The tops of the bagel browned up quite nicely after setting the oven to broil for the last 2 or 3 minutes of baking. The consistency is a little funny, which I think has to do with how I rolled out the individual bagels. You&#8217;ll note that there aren&#8217;t any toppings on it. In my excitement, I somehow ignored the etymology of &#8220;toppings&#8221; and got the notion that the bagels would work better if I had the toppings on the bottom where it would be pressed into the bagel more.</p>
<p style="text-align: center;"><a href="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0021.jpg"><img class="size-medium wp-image-693 aligncenter" title="bottom of the bagels" src="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0021-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>The bottom looks a little gross, but it ended up being delicious. They got a crispy side that beats any baking I&#8217;ve ever done, and it ended up being quite a success. Like many of my creations, they don&#8217;t look perfect, but the usual criticism ended there. We fortunately had some lox in the fridge, and they made a nice lunch before we started baking.</p>
<p>The menu for dinner ended up not being nearly as extensive as it has been in the past, but we didn&#8217;t need more food with stacks of leftovers in the fridge and more in our tummies from bagels and snacking. Nicole headed up the <a href="http://www.foodnetwork.com/recipes/tyler-florence/shrimp-and-chive-ravioli-with-grape-tomato-sauce-recipe/index.html">shrimp ravioli</a> made entirely from scratch. I beheaded some of the largest, ugliest shrimp I had ever seen, and she made and rolled out the pasta by hand. It sounds like it was a lot of work.</p>
<p style="text-align: center;"><a href="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0027.jpg"><img class="size-medium wp-image-695 aligncenter" title="shrimp ravioli" src="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0027-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>The ravioli were quite large, but Nicole managed to dole out all of the shrimp filling, so it worked out. I guess this is preferable to ravioli without enough pasta around the edges that might burst. The recipe didn&#8217;t make a lot of sauce, but it made enough to coat all of the ravioli, of which it was difficult to eat more than 1 or 2 because of the size.</p>
<p><a href="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0044.jpg"><img class="aligncenter size-medium wp-image-697" title="cooked ravioli" src="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0044-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>We had about an extra 1/2 pound of shrimp, so Lisa used that to make some <a href="http://www.marthastewart.com/326918/baked-shrimp-with-tomatoes-and-feta">Greek shrimp</a>. Unfortunately, mint didn&#8217;t quite make it onto the shopping list, but it still ended up being pretty tasty, even if there wasn&#8217;t quite enough shrimp. She ended up slicing them in half, which worked because with the huge shrimp we had, this meant that we still had 8 pretty meaty halves.</p>
<p><a href="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0041.jpg"><img class="aligncenter size-medium wp-image-696" title="greek shrimp" src="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0041-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>To fill out the rest of the meal, we also had a few <a href="http://www.thecurvycarrot.com/2011/12/08/cran-raspberry-brie-bites/  ">crackers</a> with some very ripe brie and leftover cranberry sauce:</p>
<p><a href="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0039.jpg"><img class="aligncenter size-medium wp-image-700" title="cranberry brie crackers" src="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0039-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>some asparagus:</p>
<p><a href="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0040.jpg"><img class="aligncenter size-medium wp-image-699" title="asparagus" src="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0040-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>and a simple salad. The most exciting part of the salad, from my perspective, was the avocado we used. I carried it back with me from California in my luggage after Julie and I picked it off of a tree at Stanford. We were worried that we picked it too soon, but it ripened nicely. The inside was bright green, soft, and juicy:</p>
<p><a href="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0035.jpg"><img class="aligncenter size-medium wp-image-701" title="avocado" src="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0035-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0043.jpg"><img class="aligncenter size-medium wp-image-702" title="salad" src="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0043-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>The other big effort was in making the birthday cake. My mom wanted something not too sweet and relatively light so that it wouldn&#8217;t languish in the fridge for a long time like the rest of our leftovers. It took a good portion of a car ride for her to describe a fruity cake, which was essentially the fruit tart we had always done, except with a sponge cake on the bottom instead of a crust. Why we couldn&#8217;t have just done the crust we&#8217;ve always done is beyond me, but I don&#8217;t do any planning.</p>
<p>The <a href="http://www.geethaskitchen.com/2009/02/trifle-sponge-cake-dessert-with-fruit.html  ">recipe</a> we found for it turned out to be a vegan recipe, which we only realized after Lisa made the cake, and we started the custard, all without using eggs. Quick tip: if there aren&#8217;t any eggs in it, it&#8217;s <em>not</em> custard. Anything pretending to be is suspect, and by suspect, I mean probably bad. While I was stirring the custard, we tried a bit, and it wasn&#8217;t very good. Lisa made a game-time decision and tossed that custard down the drain and started again with a real <a href="http://www.foodnetwork.com/recipes/gale-gand/vanilla-custard-with-raspberry-mash-recipe/index.html  ">custard</a>. Better success followed.</p>
<p><a href="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0051.jpg"><img class="aligncenter size-medium wp-image-698" title="fruit cake" src="http://kevinleung.com/wp-content/uploads/2011/12/IMG_0051-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Although it&#8217;s probably not the fruit cake you&#8217;re thinking of around Christmas time, it ended up being pretty good. The cake had an interesting (but not bad) consistency and definitely held its lime. The custard was as delicious as you might expect, and the array of fruit all worked pretty well.</p>
<p>I hope you saw something that you liked!</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinleung.com/archives/christmas-cooking-with-the-leungs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Valley State of Mind</title>
		<link>http://kevinleung.com/archives/valley-state-of-mind/</link>
		<comments>http://kevinleung.com/archives/valley-state-of-mind/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 18:13:14 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://kevinleung.com/?p=678</guid>
		<description><![CDATA[I always look forward to coming home on vacation. I know I have the chance to snap out of my regular rhythm, enjoy home cooking, sleep in, see my family, and snatch up various items from around the house. What I sometimes most look forward to, however, is the least predictable opportunity: catching up with ...]]></description>
			<content:encoded><![CDATA[<p>I always look forward to coming home on vacation. I know I have the chance to snap out of my regular rhythm, enjoy home cooking, sleep in, see my family, and snatch up various items from around the house. What I sometimes most look forward to, however, is the least predictable opportunity: catching up with grade school friends. Unlike my family, I&#8217;m not constantly updated with the latest news, and get-togethers let me hear where people have been in the often too-long time since I last saw them.</p>
<p>This particular vacation has been interesting because it&#8217;s 4 years since high school graduation, and many of my friends are just out of college. Oddly, I happened to end up meeting up with quite a few I haven&#8217;t seen at all since high school, which makes it as though college never really happened. It seems like people are all over the place: some have moved out of Texas, most stayed. Some are doing something related to their college major, most aren&#8217;t. But across the board, it sounded like they just didn&#8217;t really know what they wanted the rest of their life to be yet.</p>
<p>Which is fair. Unlike in other education systems, it seems that American students often make very late choices about what they want to do. I&#8217;ve heard that in Europe, some students are tunneled into a profession as soon as they reach high school. Here, most high school students don&#8217;t specialize at all. 4-year colleges often don&#8217;t require students to choose a major upon admission, and even if they do, they have the flexibility to change well into their 3rd and 4th years. And as I&#8217;ve discovered, even college graduates don&#8217;t know what jobs they want. It&#8217;s a sentiment I can understand given my huge changes over the past year or two, but I was surprised by their approach to dealing with it.</p>
<p>Many of them mentioned that they were just working jobs and not working on their careers. The sense I got is that they were biding their time: uncertain of what they wanted to do, they were trying something out to gain a little experience, like a small job at a big corporation, and they were continuing to explore and see what might come their way. While holding down the fort 9-to-5, they could spend their evenings learning about other opportunities and enjoying life. Instead of returning home and becoming dependents again, they wanted something temporarily stable until they found their true passion and could jump on that opportunity at that time, with a resume and work history that demonstrated their commitment.</p>
<p>Put that way, this plan seems very reasonable, and I happily agreed that this was the best thing for them to do at that time. Only after thinking about it a little longer did I realize that this very sound plan for any college graduate completely contradicted my own plan.</p>
<p>The mindset that I came into was that this time after college was the best time to go for the biggest, craziest idea possible. At this time, my only commitment is to eat and have a warm roof. I don&#8217;t have a family or any dependents and am not locked into a corporate ladder. Even if I fail, I can learn a lot, and even the worst failure is still work experience. By the time I&#8217;ve waited to find my passion, I&#8217;ll have lost that window of freedom. I only need that really steady position a few years down the road, and I can reevaluate the rest of my life at that point.</p>
<p>This mindset is undoubtably a product of my time in the Bay Area, where you can&#8217;t miss the optimism that anyone can change the world and the urgency that someone else will if you don&#8217;t. And even then, it can be hard to follow that plan. Many of my friends, even from Stanford, are heading out to well-paying jobs at big companies, some of which will definitely pitch their startup roots but realistically can no longer maintain that excitement and enable individuals to really go for the big thing. Even I almost took the safe path of job opportunities with Silicon Valley firms. It actually took some external forces to push me along the path I am now that has really allowed me to embrace this headlong mindset.</p>
<p>That difficulty and serendipity, however, reminds me how hard it is to believe these perspective from the outside. Out of my great confusion from CS378, one thing I learned is how important it is that one be immersed in a particular community and circumstance to really understand certain ideas. Just as how a halfback pass play isn&#8217;t very tricky to someone who doesn&#8217;t understand football conventions and strategy, it&#8217;s hard to really believe the mindset I&#8217;m in without being where I&#8217;ve been.</p>
<p>So for my peers reading this, I&#8217;m kind of directing this post at you. I understand that this mindset doesn&#8217;t really work for everyone, but don&#8217;t let that be an excuse for you. I think it applies to more people than they themselves realize. But don&#8217;t take my word for it: I think just reading my words on it is exactly the sort of passive engagement that I don&#8217;t think will change your life and is characteristic of learning about what you might do instead of going for it. I have an open couch for anyone outside of the Bay Area who wants to visit, and I&#8217;ll extend an open invitation for anyone around the Bay Area who wants to have lunch at Zanbato. At least take enough of a step to see what you might be able to do: once you start, it&#8217;s awfully hard to stop.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinleung.com/archives/valley-state-of-mind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kevin&#8217;s First Annual Newsletter</title>
		<link>http://kevinleung.com/archives/kevins-first-annual-newsletter/</link>
		<comments>http://kevinleung.com/archives/kevins-first-annual-newsletter/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 01:19:22 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://kevinleung.com/?p=676</guid>
		<description><![CDATA[I started this blog 6 1/2 years ago on a whim to keep everyone aware of what&#8217;s been happening in my life. It&#8217;s taken some odd turns here and there, including fiction, papers for class, food, tutorials, and more, but my life has been the core of it, with different facets of it coming into ...]]></description>
			<content:encoded><![CDATA[<p>I started this blog 6 1/2 years ago on a whim to keep everyone aware of what&#8217;s been happening in my life. It&#8217;s taken some odd turns here and there, including <a href="http://kevinleung.com/archives/first-time-for-everything/">fiction</a>, <a href="http://kevinleung.com/archives/response-to-responses-to-benthams-utilitarianism/">papers for class</a>, <a href="http://kevinleung.com/archives/dealing-with-green-bean-casserole-leftovers/">food</a>, <a href="http://kevinleung.com/archives/installing-django-on-snow-leopard-and-mysql-and-pil/">tutorials</a>, and more, but my life has been the core of it, with different facets of it coming into view at different times. I slowly transitioned from broad summaries to specific observations in my life, and although it makes blogging more engaging for me, it also leaves a disjointed trail for you to follow. And now that I&#8217;m at the point where my friends and family have dispersed, it seems more relevant now to pick that back up.</p>
<p>My mom still mails out a Christmas newsletter to family friends, but since it appears that snail mail is dead and no one reads their email, this blog seems like the right venue for that. The fact that it&#8217;s publicly viewable doesn&#8217;t bother me too much: my rule of thumb is that I&#8217;m willing to write about anything I would tell someone sitting next to me on an airplane. Most of the important facts are also available via any number of social networking sites as well. So, here&#8217;s the rundown.</p>
<p>I ended up graduating with my degree in Symbolic Systems this past June, right on schedule. My concentration was in &#8220;learning,&#8221; which was just a convenient way for me to fit the classes that I wanted to take. In reality, my studies were more directed towards computational models of cognition. Think of it as the flip side of artificial intelligence: instead of trying to make computers intelligent for its own purposes, I looked at how we could use the same technology to better understand how people think. I applied to PhD programs in psychology hoping to continue that type of work. That isn&#8217;t what I&#8217;m doing now, and I often skim over that fact by saying that I decided not to do that. The more complete truth is that I didn&#8217;t get accepted to anywhere that I applied to, so there wasn&#8217;t much of a choice. Instead, I decided to finish up a master&#8217;s in Computer Science at Stanford as part of a 5-year program that I was already accepted to.</p>
<p>Instead, I&#8217;ll be working at <a href="https://zanbatogroup.com">Zanbato</a>, a startup in Mountain View that I co-founded, as a software engineer and have been working at part-time during school. Currently, I&#8217;ll be finishing up my degree at the end of March and going full-time after that. The basic pitch is that we&#8217;re building a marketplace for infrastructure investments. Infrastructure, such as bridges, powerplants, and schools, has a pretty fragmented market, and given how much interest there is from both sellers and investors, it&#8217;s a shame that it isn&#8217;t easier to work in this space. If you&#8217;re interested, check out the 5 minute video at <a href="http://sokoni.com">sokoni.com</a> on what we&#8217;re doing for Africa. Although it&#8217;s not quite what I envisioned myself doing a year ago, I legitimately think that this is the most important thing I could be doing right now and can change the world with it.</p>
<p>As such, I&#8217;m planning on staying out in the Bay Area for awhile. Meanwhile, my parents ended up never moving to Boston and will now be staying in Houston for the foreseeable future. The house is a little more empty, and all of my possessions are in (many, heavy) boxes, but it&#8217;s still good to see everyone around here.</p>
<p>StackMap, the other startup I&#8217;m a part of, is going well. We hired a CEO and have been picking up clients and making improvements. You can see it live at <a href="http://wncln.wncln.org/record=b2605441~S2">appstate</a> and <a href="http://searchworks.stanford.edu/view/6975700">Stanford</a>, where it&#8217;s hopefully making students&#8217; lives much easier. It&#8217;s been around for 3 1/2 years now, but I think we&#8217;re just starting to make things happen with it. Given how many student startups fail, I&#8217;m proud to see us endure through all of that and still offer a valuable product on the far end.</p>
<p>Cooking continues as you&#8217;ve likely seen between my blogs. The biggest change happened this summer when I tried the mostly-vegetarian thing, which Julie, as my co-chef, also endured. She actually puts my attitude best in that I don&#8217;t cook meat for myself. I&#8217;ll happily eat meat when I go out to eat but have switched to meatless sandwiches and various alternatives for dinner. Future goals for cooking might show up in my new year hopes.</p>
<p>I played quite a bit of sand volleyball during my senior year, taking it 2 out of the 3 quarters. I haven&#8217;t played much since, but I have been playing racquetball regularly. Although we aren&#8217;t going to the national championship, I spend another season obsessed with Stanford football. Throw in a bit of Starcraft and ton of awesome potlucks, and that&#8217;s pretty much what my life is like.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinleung.com/archives/kevins-first-annual-newsletter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 Final Papers for My Classes</title>
		<link>http://kevinleung.com/archives/2-final-papers-for-my-classes/</link>
		<comments>http://kevinleung.com/archives/2-final-papers-for-my-classes/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 09:30:22 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[nonfiction]]></category>

		<guid isPermaLink="false">http://kevinleung.com/?p=671</guid>
		<description><![CDATA[I&#8217;m just finishing up with finals week now and will hopefully have more to write over the upcoming break. In the meantime, I thought I would reference you to some work I did this quarter. Specifically, I ended up doing 2 final projects and 1 term paper. 1 of those projects is still ongoing, so ...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m just finishing up with finals week now and will hopefully have more to write over the upcoming break. In the meantime, I thought I would reference you to some work I did this quarter. Specifically, I ended up doing 2 final projects and 1 term paper. 1 of those projects is still ongoing, so I haven&#8217;t posted anything for it, but the other 2 are pretty much complete and available for you to look at. Here are links and snippets for each of them (you can also find them on my <a href="http://kevinleung.com/writing/" target="_blank">writing page</a>, along with various other things I&#8217;ve worked on):</p>
<p><a href="http://kevinleung.com/docs/leung_identifyingactors.pdf"><strong>Identifying Actors in Political Activism over Twitter</strong></a></p>
<p>This paper was written for <a href="http://cs378.stanford.edu" target="_blank">CS378</a>, &#8220;Phenomenological Foundation of Cognition, Language &amp; Computation.&#8221; I was interested in the use of Twitter for political activism (such as the Egyptian protests) and thought that there were interesting questions about identity and commitment in that context. I take some ideas from network models to understand the roles that individuals have in terms of concrete actions, and I connect that to some empirical work on types of actors in activism on Twitter to understand where identity comes from.</p>
<p><strong><a href="http://kevinleung.com/docs/leung_bookmarking.pdf">Evolution of Internet Information Consumption Through Bookmarking</a></strong></p>
<p>This paper was written for <a href="http://cs224W.stanford.edu" target="_blank">CS224W</a>, &#8220;Social and Information Network Analysis.&#8221; The question I had going into this was whether we could quantify how information overload might be reflected in changes in internet usage. Particularly, Neal Gabler <a href="http://www.nytimes.com/2011/08/14/opinion/sunday/the-elusive-big-idea.html?pagewanted=all" target="_blank">here</a> complains that we can&#8217;t grapple with big ideas and are stuck in the constant flow of unimportant data. I tackled this hypothesis by looking at Delicious data and seeing whether the distribution over bookmarks has changed from year to year. If he&#8217;s right, we should see more bookmarks happen sooner and less of a long tail. The basic result is that over 3 years, things look pretty much exactly the same, and I also try to come up with a model to explain the data.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinleung.com/archives/2-final-papers-for-my-classes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dealing with Green Bean Casserole Leftovers</title>
		<link>http://kevinleung.com/archives/dealing-with-green-bean-casserole-leftovers/</link>
		<comments>http://kevinleung.com/archives/dealing-with-green-bean-casserole-leftovers/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 21:05:10 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[food]]></category>

		<guid isPermaLink="false">http://kevinleung.com/?p=659</guid>
		<description><![CDATA[While most of you are likely coming out of food comas the day after Thanksgiving and trying to figure out what you&#8217;ll do with the uneaten parts of your feast, I have a headstart eating my leftovers before Thanksgiving. Since most of my friends were heading home to do traditional Thanksgiving dinners, we decided to ...]]></description>
			<content:encoded><![CDATA[<p>While most of you are likely coming out of food comas the day after Thanksgiving and trying to figure out what you&#8217;ll do with the uneaten parts of your feast, I have a headstart eating my leftovers before Thanksgiving. Since most of my friends were heading home to do traditional Thanksgiving dinners, we decided to have a &#8220;mixed-up Thanksgiving&#8221; potluck last Friday where we took traditional dishes and reallocated them. The menu included a fruity cider, cranberry salsa, Turkish pumpkin soup, turkey wraps, bread pudding, chocolate chip cookies, cranberry pumpkin cookies, and Julie&#8217;s and my contribution, <a href="http://www.seriouseats.com/recipes/2011/11/green-bean-casserole-pie.html">green bean casserole pie</a>.</p>
<p>I recently discovered how much I enjoy green bean casserole. I don&#8217;t remember it ever being on the family menu, but tender beans, creamy mushroom sauce, and crispy fried onions are just perfectly delicious. Putting it in a pie may sound strange, but in retrospect, it&#8217;s similar to a very similar chicken pot pie, where you replace all of the chicken and vegetables with green beans. We ended up scrambling to get it baked in time, but Julie showed off her pie-making skills again and made a flaky crust for the casserole.</p>
<p>Well, most of it. Unfortunately, the recipe for casserole made far more than fit into the pie, and without another Thanksgiving dinner for me, I needed to figure out how to down the rest of it.</p>
<p style="text-align: center;"><a href="http://kevinleung.com/wp-content/uploads/2011/11/Photo0811.jpg"><img class="size-medium wp-image-660 aligncenter" title="Leftover Green Bean Casserole" src="http://kevinleung.com/wp-content/uploads/2011/11/Photo0811-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>The first night just mixed it with leftover rice, but the next, I found some inspiration online for creative uses for leftovers. The green bean casserole pasta sounded good, so I got some water boiling for spaghetti, then took a look in the fridge for the rest.</p>
<p>Fortunately, I had gone to the grocery store earlier that morning and picked up a few roma tomatoes. I had intended to get a beefsteak tomato for my sandwiches, but they were in awful condition: maybe it was a sign. I chopped one of those, a large garlic clove, and some onions as the extra kick for the casserole.</p>
<p style="text-align: center;"><a href="http://kevinleung.com/wp-content/uploads/2011/11/Photo0810.jpg"><img class="aligncenter size-medium wp-image-661" title="The Bonus Bits" src="http://kevinleung.com/wp-content/uploads/2011/11/Photo0810-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p style="text-align: left;">From there, it all kind of came together. Saute the onions and garlic in olive oil with some red pepper flakes, toss in the casserole and tomato to warm it up, and top it with some parmesan.</p>
<p style="text-align: left;"><a href="http://kevinleung.com/wp-content/uploads/2011/11/Photo0812.jpg"><img class="aligncenter size-medium wp-image-662" title="Recycled casserole" src="http://kevinleung.com/wp-content/uploads/2011/11/Photo0812-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p style="text-align: left;">In retrospect, this also should&#8217;ve been a pretty easy call. Lots of casseroles have egg noodles or pasta, and pasta is delicious with cream sauces.</p>
<p style="text-align: left;"><a href="http://kevinleung.com/wp-content/uploads/2011/11/Photo0813.jpg"><img class="aligncenter size-medium wp-image-663" title="Leftover casserole with spaghetti" src="http://kevinleung.com/wp-content/uploads/2011/11/Photo0813-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p style="text-align: left;">I mentioned earlier that my friends had left town while I didn&#8217;t, and you might be wondering how my Thanksgiving went. It went very well, thanks. I sat here on my couch, watching Texas-Texas A&amp;M and eating macaroni and cheese from a box with peas, carrots, and avocado, just like my Thanksgiving last year.</p>
<p style="text-align: left;"><a href="http://kevinleung.com/wp-content/uploads/2011/11/Photo0814.jpg"><img class="aligncenter size-medium wp-image-664" title="macaroni and cheese and avocado" src="http://kevinleung.com/wp-content/uploads/2011/11/Photo0814-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p style="text-align: left;">You make your own traditions.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinleung.com/archives/dealing-with-green-bean-casserole-leftovers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notes from Class with Fernando Flores</title>
		<link>http://kevinleung.com/archives/notes-from-class-with-fernando-flores/</link>
		<comments>http://kevinleung.com/archives/notes-from-class-with-fernando-flores/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 05:22:23 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[nonfiction]]></category>

		<guid isPermaLink="false">http://kevinleung.com/?p=655</guid>
		<description><![CDATA[Today in CS378, Fernando Flores came to speak with us. I would give an explanation of the class and his work, but I don&#8217;t think I can. The class has largely been taught without giving definitions or explaining concepts, but instead discussing ideas and trying to tie them together into a holistic sense of what&#8217;s going ...]]></description>
			<content:encoded><![CDATA[<p>Today in <a href="http://www.stanford.edu/class/cs378/">CS378</a>, <a href="http://en.wikipedia.org/wiki/Fernando_Flores">Fernando Flores</a> came to speak with us. I would give an explanation of the class and his work, but I don&#8217;t think I can. The class has largely been taught without giving definitions or explaining concepts, but instead discussing ideas and trying to tie them together into a holistic sense of what&#8217;s going on. In any case, I took some notes (mostly quotes and paraphrases) on interesting things that Fernando said in the same spirit that Terry Winograd explained after class that he took notes in: you definitely can&#8217;t recompose anything that Fernando said from them, but they might be interesting things to think about and digest. Also note that this isn&#8217;t of general interest. There may be some people who would enjoy these notes (such as my Uncle David, who introduced me to this field and Terry&#8217;s work), but flip on past if you like. I&#8217;m not really going anywhere with these notes beyond what you see.</p>
<ul>
<li>we are already thrown into our normative context</li>
<li>a lot of philosophy is based on truth</li>
<li>in reality, you &#8220;bring it forward&#8221; with you with logical performance</li>
<li>not processing information; more interpretation, performing as a minister</li>
<li>email is treated like &#8220;information&#8221; &#8211; there are no commitments with it</li>
<li>synchronization of people is dependent on the commitments they make</li>
<li>in Mexico, they don&#8217;t have a culture of commitment; by workshop, they figured it out</li>
<li>commitments are for humans: can&#8217;t really be automated</li>
<li>so far has failed in politics: it&#8217;s about hope, image, not commitments</li>
<li>how does such an efficient society end up with such messed up government?</li>
<li>short answer: politicians don&#8217;t distinguish between promises &amp; expectations</li>
<li>politicians do things in public life that are very different from private life</li>
<li>3 ways for a promise to fail</li>
<li>1) competence &#8211; within a domain, can you do it?</li>
<li>2) sincerity &#8211; you can lie all you want</li>
<li>3) care &#8211; caring about the person, which is context-specific</li>
<li>trust is an assessment</li>
<li>unfortunately, we are thrown in culture of trust &#8211; &#8220;thrown assessment&#8221;</li>
<li>&#8220;The Tea Party is a mood against Obama&#8221;</li>
<li>this is pre-history; it&#8217;s a sentiment</li>
<li>Occupy Wall Street is using the financial system</li>
<li>&#8220;Projects need to be related to the concerns they <span style="text-decoration: underline;">are&#8221;</span></li>
<li><span style="text-decoration: underline;">Objectivity</span></li>
<li>so we&#8217;re objective to the point of our experience</li>
<li>in World of Warcraft, he had a &#8220;poverty of world&#8221; &#8211; not something you can do strictly by description</li>
<li>can reprogram your history with games</li>
<li>problem with the US today: we&#8217;re based on ideas of social mobility and life always getting better</li>
<li>this may not be true anymore</li>
<li>can the internet bring the &#8220;disposition of being&#8221; universally? (question from Kevin, not me)</li>
<li>technology affects people in different places differently</li>
<li>Heidegger&#8217;s concern: we have a metaphysical blindness of the west in how we conceptualize language</li>
<li>most people think that language is about passing information</li>
<li>some take the commitment interpretation</li>
<li>astronomy: &#8220;how do people with such poor instruments have such big interpretations?&#8221;</li>
<li>&#8220;what ar the central concerns of people?&#8221;</li>
<li>we&#8217;re trying to build tools, but we&#8217;re in a history</li>
<li>3 concerns to care about</li>
<li>1) care &#8211; issue, not a problem</li>
<li>2) wonder &#8211; mood, questions</li>
<li>3) dwelling &#8211; being mortal, having an identity in a culture</li>
<li>&#8220;thinking is synonymous with calculation, not mood or listening&#8221; &#8211; this is a mistake often made at places like Stanford</li>
<li>&#8220;we need to bring sacredness back to tradition&#8221;</li>
<li>Churchill did this, to create unity</li>
<li>you can guarantee success, but you can all be on the same page</li>
<li>US has a problem of mood right now</li>
<li>we&#8217;re realizing we&#8217;re not <span style="text-decoration: underline;">the</span> world power and can&#8217;t solve everything</li>
<li>design is manipulating us for care &#8211; anticipating ready-to-hand</li>
<li>but we can&#8217;t always anticipate</li>
<li>wonder has to do with design because we deal with materials with properties we don&#8217;t control (Dean)</li>
<li>accidents need to coalesce in a space, and they develop a possibility</li>
<li>&#8220;a little bit of whim, a little bit of contingency, and a little bit of wonder&#8221;</li>
<li>a big question with the internet has to deal with identity</li>
<li>&#8220;the essence of language is poetry&#8221; &#8211; not logic, not precise in concept</li>
<li>Steve Jobs built a sentiment that no one else has</li>
<li>&#8220;Who said that geniuses and good people need to be saints?&#8221;</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kevinleung.com/archives/notes-from-class-with-fernando-flores/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

