<?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>Mike / Michael Fogel &#187; stanford</title>
	<atom:link href="http://www.fogel.ca/tag/stanford/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fogel.ca</link>
	<description>soapbox and search engine spam</description>
	<lastBuildDate>Wed, 31 Mar 2010 03:43:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Stanford Online Lectures + MEncoder + Greasemonkey</title>
		<link>http://www.fogel.ca/2010/01/25/stanford-online-lectures-mencoder-greasemonkey/</link>
		<comments>http://www.fogel.ca/2010/01/25/stanford-online-lectures-mencoder-greasemonkey/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 07:35:48 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[mencoder]]></category>
		<category><![CDATA[stanford]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/?p=673</guid>
		<description><![CDATA[Stanford has a lot of their lectures online.  To access them, you&#8217;ve got to have&#8230; access!  That means you need to already have an SUNet ID with proper permissions.  The standard way to get those permissions is to apply to Stanford, get accepted, and start paying Stanford lots of $$$.
Stanford doesn&#8217;t want [...]]]></description>
			<content:encoded><![CDATA[<p>Stanford has a lot of their <a href="https://myvideosu.stanford.edu/oce/currentquarter.aspx">lectures</a> online.  To access them, you&#8217;ve got to have&#8230; access!  That means you need to already have an <a href="http://sunetid.stanford.edu/">SUNet ID</a> with proper permissions.  The standard way to get those permissions is to apply to Stanford, get accepted, and start paying Stanford lots of $$$.</p>
<p>Stanford doesn&#8217;t want these lectures to get out on the open internet.  So they do a few things to try to ensure that doesn&#8217;t happen.  First, part of Stanford&#8217;s terms of use is that you will not redistribute their lectures.  Note that the concepts and code I&#8217;m showing you here in this post could be used to help you illegally redistribute their lectures.  <strong>I do not condone any such illegal use.  By using the the concepts and code in this post in any way whatsoever (including just reading this post), you agree to follow Stanford&#8217;s terms of use.</strong>.  If you don&#8217;t agree to these terms, please leave now.</p>
<p>In addition to their terms of use, Stanford places a more practical barrier in the way of illegal redistribution of their lectures &#8211; they only distribute their lectures as streaming WMV and Sliverlight.  Now this sucks for me, the legal end-user, for a number of reasons.  Most importantly, this means I need a high-bandwidth connection to watch my lectures.  I can&#8217;t watch them offline.</p>
<p>Enter <a href="https://help.ubuntu.com/community/MEncoder">MEncoder</a> and <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Greasemonkey</a>.</p>
<p>MEncoder is a tool to save streaming video to disk.  Greasemonkey is a Firefox browser extension that allows you to run custom javascript for any particular page displayed in the browser.</p>
<p>To save a lecture to disk for offline viewing, the basic command you want to run is:</p>
<pre>mencoder mms://the-streaming-video.wmv -ovc copy -oac copy -O filename_out.avi</pre>
<p>Now the &#8216;path-to-streaming-video.wmv&#8217; you need to use will be unique for your authenticated SUNet session with Stanford&#8217;s servers.  You can manually find this unique path by navigating with your browser to the lecture you&#8217;re interested in, viewing the source of the page, and manually scanning for the path.  Or you can install the following small and simple Greasemonkey script.</p>
<pre>
// ==UserScript==
// @name          Stanford Video MMS Path Retriever
// @copyright     2010, Mike Fogel, http://fogel.ca
// @license       This SW may not be used to violate Stanford's terms of use.
// @namespace     http://fogel.ca/greasemonkey
// @description   Adds a header containing mms path to Stanford player page.
// @include       https://myvideosu.stanford.edu/player/slplayer.aspx*
// ==/UserScript==

function get_mms_path() {
  var o = document.getElementById('WMPlayer');
  return 'mms' +  o.data.substring('http'.length);
}

function add_header(message) {
var elem = document.createElement('div');
  elem.id = 'GM_mms_path';
  elem.style.color = 'green';
  elem.innerHTML = '&lt;h2&gt;'+message+'&lt;/h2&gt;';
  document.body.insertBefore(elem, document.body.firstChild);
  return elem;
}

function set_selection(hdr) {
  var range = document.createRange();
  range.selectNodeContents(hdr.firstChild);
  selection = window.getSelection();
  selection.removeAllRanges();
  selection.addRange(range);
}

function main() {
  var mms = get_mms_path();
  var hdr = add_header(mms);
  set_selection(hdr);
}

main();
</pre>
<p>The Greasemonkey script scrapes the page, finds the &#8216;path-to-streaming-video.wmv&#8217;, adds it in large, bright green text to the top of the page, and selects it so you can just hit &#8216;cntrl-c&#8217; to copy it to your clipboard.  Then over in a terminal, you can paste that path into your MEncoder command.  Running the command will take a long time &#8211; in fact, as long as the lecture is.  This is because MEncoder simulates a regular streaming video player to the Stanford servers.  MEncoder will convert and save the streaming video according the the suffix of the output filename you specify (eg. &#8216;.avi&#8217; in my above example).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2010/01/25/stanford-online-lectures-mencoder-greasemonkey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commute Mode DeathMatch: Sacramento -&gt; Stanford</title>
		<link>http://www.fogel.ca/2010/01/14/commute-mode-deathmatch-sacramento-stanford/</link>
		<comments>http://www.fogel.ca/2010/01/14/commute-mode-deathmatch-sacramento-stanford/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 03:42:09 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[commute]]></category>
		<category><![CDATA[deathmatch]]></category>
		<category><![CDATA[stanford]]></category>
		<category><![CDATA[transit]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/?p=622</guid>
		<description><![CDATA[I don&#8217;t have to do this every morning (thank god) but I have been doing it about once a week lately.  The transit route described here is kinda the &#8217;standard&#8217; route &#8211; you can get creative with all the different transit agencies in between Sacramento and Palo Alto, but as far as I am [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t have to do this every morning (thank god) but I have been doing it about once a week lately.  The transit route described here is kinda the &#8217;standard&#8217; route &#8211; you can get creative with all the different transit agencies in between Sacramento and Palo Alto, but as far as I am able to find, no &#8216;creative&#8217; route is able to beat out the &#8217;standard&#8217; route.  Note that I&#8217;m purposefully excluding a &#8216;bike + transit&#8217; option for the purposes of this DeathMatch.</p>
<p>All times AM, all money in USD (duh).</p>
<h2>The Route, via Transit</h2>
<ul>
<li>Walk, house -> bus stop: 3 min</li>
<li>SacRT, bus: 6:35 -> 6:50, $2.50</li>
<li>Amtrak, capitol corridor, Sacramento -> Richmond: 7:00 -> 8:25, $13.60 (10-ride pass)</li>
<li>Bart, Richmond -> Mlibrae: 8:42 -> 9:51, $5.31</li>
<li>Caltrain, Milbrae -> Palo Alto: 9:55 -> 10:25, $4.25</li>
<li>Stanford Shuttle: 10:30 -> 10:40, free</li>
<li>Walk, shuttle stop -> class: 3min</li>
</ul>
<h4>Direct Monetary Cost</h4>
<p>2.50 + 13.60 + 5.31 + 4.25 = <strong>$25.66</strong></p>
<h4>Time Analysis</h4>
<h5>Percent Efficiency Assumptions</h5>
<ul>
<li>Transfers/walking: %0, including 2 min window on each side cause it takes a while to get situated on bus/train</li>
<li>Bus/shuttle: %30</li>
<li>Bart: %50</li>
<li>Caltrain: %70</li>
<li>Amtrak: %90</li>
</ul>
<h5>Effective 100% Efficiency Time</h5>
<p>(sacrt) + (amtrak) + (bart) + (caltrain) + (stanford shuttle) =<br />
(15 &#8211; 2*2) * 0.3 + (85 &#8211; 2*2) * 0.9 + (69 &#8211; 2*2) * 0.5 + (30 &#8211; 2*2) * 0.7 + (10 &#8211; 2*2) * 0.3 =<br />
11 * 0.3 + 81 * 0.9 + 65 * 0.5 + 26 * 0.7 + 6 * 0.3 =<br />
128.7 min ~= <strong>2 hrs 9 min</strong></p>
<h5>Wasted Time</h5>
<p>Total Travel Time &#8211; 100% effective efficiency time =<br />
(4 hrs 13 min) &#8211; (2 hrs 9 min) = <strong>2 hrs 4 min</strong></p>
<h2>The Route, Driving</h2>
<ul>
<li>Walk to car, 3 min</li>
<li>Drive @ rush hour, Sacramento -> Stanford: 2 hrs 50 mins, 124 miles (src: google maps)</li>
<li>Park car and walk to class: 15 min, <a href="http://blog.fogel.ca/2009/01/12/stanfords-parking-pricing-structure/">$11</a></li>
</ul>
<h4>Direct Monetary Cost</h4>
<h5>Assumptions</h5>
<ul>
<li>30 mph</li>
<li>$3.00 per gallon for gas</li>
<li>bridge toll: $4.00</li>
<li>ignoring all other car costs &#8211; they&#8217;re not &#8216;direct&#8217; (ie. you don&#8217;t pay them right then)</li>
</ul>
<h5>Calculation</h5>
<p>124 / 30 * 3.00 + 11.00 + 4.00 = <strong>$27.40</strong></p>
<h4>Wasted Time</h4>
<p>3 min + (2 hrs 50 min) + 15 min = <strong>3 hrs 8 min</strong></p>
<h2>Conclusions</h2>
<p>Taking the trip via transit rather than driving saves <strong>$1.74</strong> (oh boy!) and <strong>1 hour, 4 minutes</strong> of time.  If we were to add in the full costs of owning an automobile (AAA estimate: <a href="http://www.aaanewsroom.net/main/Default.asp?CategoryID=4&#038;ArticleID=529">~52.2 cents/mile</a>) then the monetary cost for driving rises to $79.73, thus implying a monetary savings of <strong>$54.07</strong> for taking the trip via transit, rather than driving.  Bam!  Headshot.</p>
<h4>Commute Mode DeathMatch Leaderboard</h4>
<ul>
<li>Transit: 1 (headshot)</li>
<li>Driving: 0</li>
</ul>
<p>Coming soon: &#8216;biking + transit&#8217; jumps into the rumble!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2010/01/14/commute-mode-deathmatch-sacramento-stanford/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Posted Warnings</title>
		<link>http://www.fogel.ca/2009/09/11/posted-warnings/</link>
		<comments>http://www.fogel.ca/2009/09/11/posted-warnings/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 00:52:10 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cars]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[stanford]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/?p=572</guid>
		<description><![CDATA[Stanford has a few warnings posted in some of their garages:

Nice of them to advertise that the parking garage isn&#8217;t a healthy place to hang out, at least not according to your lungs and your junk.  But really, a few things.

If a parking garage deserves an air quality warning, how about a congested freeway [...]]]></description>
			<content:encoded><![CDATA[<p>Stanford has a few warnings posted in some of their garages:</p>
<p><img src="http://farm3.static.flickr.com/2525/3881591143_854f73d915.jpg" alt="garage toxic warning" /></p>
<p>Nice of them to advertise that the parking garage isn&#8217;t a healthy place to hang out, at least not according to your lungs and your junk.  But really, a few things.</p>
<ul>
<li>If a parking garage deserves an air quality warning, how about a congested freeway on a hot, still day?</li>
<li>The garage is not the source of that bad health stuff.  Specifically, it&#8217;s the incomplete combustion of gasoline in the 100&#8217;s of internal combustion machines sitting around in the garage.  Maybe we should put the warnings directly on the source of the problem?</li>
<li>If we should be concerned about the health effects on our lungs from our cars, what about the bigger effects &#8211; like cars being the <a href="http://www.onlinelawyersource.com/personal_injury/car/statistics.html"> leading cause of death for Americans 35 years old and younger</a>?  Or being a vital component of our awesome <a href="http://xpress.sfsu.edu/archives/news/004551.html">73% overweight/obese rate</a>?  Or pushing our communities and ourselves farther and farther apart &#8211; to distance scales that work well for a two-ton block of steel, but not so great for a 150 lb chunk of human?</li>
</ul>
<p>It&#8217;s easy to see and point at air quality numbers.  They can be measured empirically, their effects can be studied in laboratories, and it&#8217;s easy to say &#8220;this is bad.  See proof by X.&#8221;  But more often than not cause-and-effect relationships don&#8217;t end with a nice, clean number at the end.  As such, it&#8217;s harder to talk about these relationships, it&#8217;s harder to reason about them.  The unfortunate wrench is that sometimes, these &#8216;unclean&#8217; relationships are actually the most important ones of all.  Which probably explains why you never hear of a mathematician being elected to public office.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2009/09/11/posted-warnings/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Stanford&#8217;s Parking Pricing Structure</title>
		<link>http://www.fogel.ca/2009/01/12/stanfords-parking-pricing-structure/</link>
		<comments>http://www.fogel.ca/2009/01/12/stanfords-parking-pricing-structure/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 04:11:00 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[caltrain]]></category>
		<category><![CDATA[parking]]></category>
		<category><![CDATA[stanford]]></category>
		<category><![CDATA[transit]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/?p=378</guid>
		<description><![CDATA[Stanford&#8217;s big on promoting &#8216;alternative&#8217; transportation (read: anything but you, driving alone in your private vehicle), especially for commuting.  And to Stanford&#8217;s credit, Stanford apparently has one of the lowest rates of solo-driver commuting of any major organization in the area. Which is great.
And what&#8217;s most impressive, is that this is in spite of [...]]]></description>
			<content:encoded><![CDATA[<p>Stanford&#8217;s big on <a href="http://www.flickr.com/photos/jcgr1/2342798621/">promoting</a> &#8216;alternative&#8217; transportation (read: anything but you, driving alone in your private vehicle), <a href="http://transportation.stanford.edu/alt_transportation/Commute_Club.shtml">especially for commuting</a>.  And to Stanford&#8217;s credit, Stanford apparently has one of the lowest rates of solo-driver commuting of any major organization in the area. Which is great.</p>
<p>And what&#8217;s most impressive, is that this is in <em>spite</em> of <a href="http://transportation.stanford.edu/parking_info/ParkingInformation.shtml#prices">Stanford&#8217;s parking pricing structure</a>.</p>
<p>Parking pricing?  Who cares?  Well, turns out this is one very key knob (<a href="http://shoup.bol.ucla.edu/">some</a> would argue that it&#8217;s the <em>best</em> knob) we have to help push us away from foreign oil, global warming, childhood asthma, chronic obesity and all those other happy products of our big bad-ass car culture.</p>
<p>To understand how Stanford&#8217;s parking pricing is such a powerful knob that is currently twisted the wrong way, it helps to look at a more-or-less typical case study.  Let&#8217;s consider a hypothetical commuter, call her&#8230; &#8220;Jane Student&#8221; and let&#8217;s say like many Stanford students, she chooses to live up in San Francisco and commute down, for reasons like quality of life, culture, etc.  Let&#8217;s say Jane has a car, but plans on taking the local commuter rail, Caltrain, about half the time.</p>
<p>At Stanford, there are two primary &#8216;zones&#8217; for commuter parking: &#8216;A&#8217; and &#8216;C&#8217;.  &#8216;A&#8217; is the good, close lots and costs about 2.5 times what &#8216;C&#8217; does.  You generally only find metered spots adjacent to the &#8216;A&#8217; lots.  Everything that holds true for &#8216;A&#8217; also holds true for &#8216;C&#8217;, so for simplicity, we&#8217;re going to assume Jane doesn&#8217;t want to park a bus ride away from class, so we&#8217;re only going to consider &#8216;A&#8217;.</p>
<p>Now, to pay for her parking, Jane has three options:</p>
<ul>
<li>Metered parking: $1.50 an hour</li>
<li>Daily permit: $11</li>
<li>Monthly permit: $60.50</li>
</ul>
<p>When Jane sits down to consider this situation, the first thing she does is figure out what&#8217;s cheapest for her.  Well, Jane is on campus usually about 7 hours a day.  If she were to drive everyday (20 days a month), then her options cost per month:</p>
<ul>
<li>Metered parking: 1.50*7*20 = $210</li>
<li>Daily permit: 11*20 = $220</li>
<li>Monthly permit: $60.50</li>
</ul>
<p>Whoa!  $60 versus $220?  That&#8217;s quite a difference.  But now Jane knows she&#8217;d rather take the train some days.  So how many days a month would she have to drive to make the monthly permit worth it?  Well, 60.50/11 = 5.5 and 60.50/1.50/7 = 5.76.  So if Jane drives 6 or more days a month, it&#8217;s worth it for her to get a monthly permit.  Since Jane plans on doing about 50-50 train/car, she goes ahead and buys a monthly permit.</p>
<p>Now, let&#8217;s consider Jane&#8217;s decision making process each morning when she&#8217;s choosing whether to take the local commuter rail, Caltrain, or drive alone.</p>
<p>Costs to take Caltrain:</p>
<ul>
<li>Bike to Station: 15 min, Train: 45 min, Bike to Class: 15 min => 30 min of exercise, and 45 min of semi-productive time</li>
<li>Two Caltrain 3-zone tickets: 2 * 6 = $12</li>
</ul>
<p>Costs to drive alone:</p>
<ul>
<li>Walk to car: 5 min, Drive: 45 min, Walk to class: 10 min => 15 min of light exercise, 45 min of wasted time</li>
<li>Gas each way is 40 miles at 30 mpg and gas is now $2.00 a gallon => 2 * 40 / 30 * 2 = $5.33</li>
</ul>
<p>(Note that medium and long-term costs like insurance, depreciation, health, environmental etc do <em>not</em> factor into Jane&#8217;s daily decision making process. Medium and long-term costs and benefits will factor into Jane&#8217;s medium and long-term decisions, but will be, generally, inconsequential for her short-term decision making.)</p>
<p>Wow, not only does it take longer for Jane to take the train, but it costs her more!  This means <em>Jane&#8217;s default behavior will be to drive</em>.  We can expect Jane&#8217;s commute to be dominated by solo driving with sprinkled Caltrain.</p>
<p><em>FAIL</em>.  That&#8217;s not what Jane wants, that&#8217;s not what Stanford wants, and that certainly isn&#8217;t what our community as a whole wants.</p>
<p>Let&#8217;s consider what would happen if Stanford implemented a different parking pricing structure.  The following could be implemented with <em>zero</em> costly infrastructure change.</p>
<p>Proposed:</p>
<ul>
<li>Metered Parking: $1.25 an hour</li>
<li>Daily permit: $8</li>
<li>Monthly permit: $125</li>
</ul>
<p>Now, the following holds true for our wonderful Jane:</p>
<ul>
<li>A daily permit is only worth it if you&#8217;re planning on parking 7 hours or longer that day.</li>
<li>A monthly permit is only worth it if you&#8217;re planning on parking 16 days or more that month.</li>
</ul>
<p>All of a sudden the bar to buying a monthly permit is much higher.  So Jane, who expects to go for a 50-50 mode share, now will no longer buy a monthly permit.  She&#8217;ll buy a series of daily permits to use whenever she chooses to drive.  Now, let&#8217;s consider Jane&#8217;s new decision making process each morning when deciding to take the train or drive alone.</p>
<p>Costs to take Caltrain (no change from above):</p>
<ul>
<li>Bike to Station: 15 min, Ride: 45 min, Bike to Class: 15 min => 30 min of exercise, and 45 min of semi-productive time</li>
<li>Two Caltrain 3-zone tickets: 2 * 6 = $12</li>
</ul>
<p>Costs to drive alone:</p>
<ul>
<li>Walk to car: 5 min, Drive: 45 min, Walk to class: 10 min => 15 min of light exercise, 45 min of wasted time</li>
<li>Gas each way is 40 miles at 30 mpg and gas is now $2.00 a gallon => 2 * 40 / 30 * 2 = $5.33</li>
<li><strong>Parking: $8</strong></li>
</ul>
<p><em>Bam</em>.  Jane&#8217;s total direct, tangible cost to drive alone each morning is now $13.33 &#8211; higher than the $12 it costs for Jane to take Caltrain. That, coupled with the benefit of reclaimed time Caltrain affords Jane changes Jane&#8217;s default behavior.  <em>Jane&#8217;s default behavior is now to take Caltrain.</em> We can expect Jane will generally take the train, and occasionally drive.</p>
<p>Given that Stanford&#8217;s all about <a href="http://greeninc.blogs.nytimes.com/2009/01/12/stanford-announces-100-million-energy-institute/">going green</a>, this is puzzling.  Thoughts?  Anybody from Stanford Parking and Transportation out there with any deeper insight into this situation?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2009/01/12/stanfords-parking-pricing-structure/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Commute Practice</title>
		<link>http://www.fogel.ca/2008/08/17/commute-practice/</link>
		<comments>http://www.fogel.ca/2008/08/17/commute-practice/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 05:05:30 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cycling]]></category>
		<category><![CDATA[stanford]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/?p=61</guid>
		<description><![CDATA[I’ve spent the last 6 months passively scouting (bike) commute routes up and down the Peninsula, in preparation for my upcoming move back to San Francisco and continued work/study at Stanford.  I know I’m not alone in this &#8211; there’s a fair number of people who live in the city these days and commute [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve spent the last 6 months passively scouting (bike) commute routes up and down the Peninsula, in preparation for my upcoming move back to San Francisco and continued work/study at Stanford.  I know I’m not alone in this &#8211; there’s a fair number of people who live in the city these days and commute down to the Silicon Valley, and a fair number of them are cyclists, and a fair number of those cyclists would bike to work occasionally if there was a decent route. So let’s find (build?) a route!</p>
<p>Unfortunately, I don’t believe there is a silver bullet of a route to find.  This is the best I’ve came up with thus far… it’s reasonable.  Most of the route I’d rate at a 3 (out of 5) or better in terms of cyclist safety.  Excluding the intersection of <a href="http://maps.google.com/?ll=37.74906,-122.404754&amp;z=17">Ceasar Chavez, Potrero, Bayshore and 101</a>.  That&#8217;s bunk.  That gets a 2.</p>
<div class="embed500">
<iframe width="500" height="500" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=d&amp;saddr=Dolores+St+%4037.759850,+-122.426000&amp;daddr=Valencia+St+%4037.759380,+-122.421340+to:Valencia+St+%4037.751375,+-122.420580+to:Bay+Shore+Blvd+%4037.745540,+-122.404200+to:Silver+Ave+%4037.732450,+-122.405620+to:San+Bruno+Ave+%4037.722046,+-122.401296+to:Bayshore+Blvd+%4037.700200,+-122.408420+to:37.662081,-122.406406+to:Huntington+Ave+%4037.643364,+-122.421002+to:Sneath+Ln+%4037.624948,+-122.445531+to:Skyline+Blvd+%4037.593352,+-122.415912+to:Skyline+Blvd+%4037.574320,+-122.397210+to:Skyline+Blvd+%4037.538349,+-122.367482+to:Canada+Rd+%4037.496162,+-122.327234+to:Canada+Rd+%4037.434260,+-122.258340+to:Sand+Hill+Rd+%4037.415093,+-122.238277+to:Campus+Dr+W+%4037.430380,+-122.174388&amp;hl=en&amp;geocode=10009653541336924647,37.759850,-122.426000%3B9884349302735023654,37.759380,-122.421340%3B14493239660961374272,37.751375,-122.420580%3B8726772551245394806,37.745540,-122.404200%3B10386368963714349533,37.732450,-122.405620%3B14849633299181945980,37.722046,-122.401296%3B827238181858246640,37.700200,-122.408420%3B4040162008438503531,37.643364,-122.421002%3B15310208152489414592,37.624948,-122.445531%3B13160380362041101783,37.593352,-122.415912%3B7564812091439464238,37.574320,-122.397210%3B13099354534601537308,37.538349,-122.367482%3B5308893170102810096,37.496162,-122.327234%3B2809307446427063658,37.434260,-122.258340%3B12563929294188923184,37.415093,-122.238277%3B1803731770361385364,37.430380,-122.174388&amp;mra=dpe&amp;mrcr=0&amp;mrsp=7&amp;sz=14&amp;via=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15&amp;sll=37.66344,-122.408123&amp;sspn=0.053472,0.047808&amp;ie=UTF8&amp;s=AARTsJq-v_7MR583-h3nODCGOZBbDEWa5w&amp;ll=37.602264,-122.316284&amp;spn=0.544005,0.549316&amp;z=10&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=d&amp;saddr=Dolores+St+%4037.759850,+-122.426000&amp;daddr=Valencia+St+%4037.759380,+-122.421340+to:Valencia+St+%4037.751375,+-122.420580+to:Bay+Shore+Blvd+%4037.745540,+-122.404200+to:Silver+Ave+%4037.732450,+-122.405620+to:San+Bruno+Ave+%4037.722046,+-122.401296+to:Bayshore+Blvd+%4037.700200,+-122.408420+to:37.662081,-122.406406+to:Huntington+Ave+%4037.643364,+-122.421002+to:Sneath+Ln+%4037.624948,+-122.445531+to:Skyline+Blvd+%4037.593352,+-122.415912+to:Skyline+Blvd+%4037.574320,+-122.397210+to:Skyline+Blvd+%4037.538349,+-122.367482+to:Canada+Rd+%4037.496162,+-122.327234+to:Canada+Rd+%4037.434260,+-122.258340+to:Sand+Hill+Rd+%4037.415093,+-122.238277+to:Campus+Dr+W+%4037.430380,+-122.174388&amp;hl=en&amp;geocode=10009653541336924647,37.759850,-122.426000%3B9884349302735023654,37.759380,-122.421340%3B14493239660961374272,37.751375,-122.420580%3B8726772551245394806,37.745540,-122.404200%3B10386368963714349533,37.732450,-122.405620%3B14849633299181945980,37.722046,-122.401296%3B827238181858246640,37.700200,-122.408420%3B4040162008438503531,37.643364,-122.421002%3B15310208152489414592,37.624948,-122.445531%3B13160380362041101783,37.593352,-122.415912%3B7564812091439464238,37.574320,-122.397210%3B13099354534601537308,37.538349,-122.367482%3B5308893170102810096,37.496162,-122.327234%3B2809307446427063658,37.434260,-122.258340%3B12563929294188923184,37.415093,-122.238277%3B1803731770361385364,37.430380,-122.174388&amp;mra=dpe&amp;mrcr=0&amp;mrsp=7&amp;sz=14&amp;via=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15&amp;sll=37.66344,-122.408123&amp;sspn=0.053472,0.047808&amp;ie=UTF8&amp;ll=37.602264,-122.316284&amp;spn=0.544005,0.549316&amp;z=10&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small>
</div>
<p>There&#8217;s one part of the route that google maps can&#8217;t really handle.  Along San Andreas Lake and the Lower Crystal Springs Reservoir, there&#8217;s an awesome <a href="http://www.co.sanmateo.ca.us/smc/department/home/0,2151,5556687_10575170,00.html#sawyer">mixed use path</a>.  The path does have a 15mph bike speed limit &#8211; but the alternative is to add a couple hundred feet of climbing along with a short (but legal) stretch on 280.  Ouch.</p>
<p>So, this route took me 2:17 today without commute bags, which would probably add another 20 lbs and 20 minutes.  Doing this commute by car is generally 40-50 minutes, depending on the traffic.  Add another 10 minutes on each side of that for parking.  I guess to be fair, we should add 15 minutes of bike prep time, and 30 minutes for shower time at the far end.  So ~1 hour by car, ~3 hours by bike.</p>
<p>Any ideas for improving that get-out-of-SF part?   Or any other part of the ride for that matter?  The MTC has a <a href="http://www.mtc.ca.gov/planning/bicyclespedestrians/regional.htm#bikeplan">set of ideas</a>, but those are more long-term big picture ideas.  I&#8217;m looking for a fast, safe route now&#8230; or as close to that ideal as possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2008/08/17/commute-practice/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Stanford Upgrades its Nature</title>
		<link>http://www.fogel.ca/2008/07/17/stanford-upgrades-its-nature/</link>
		<comments>http://www.fogel.ca/2008/07/17/stanford-upgrades-its-nature/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 23:44:20 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[stanford]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/?p=54</guid>
		<description><![CDATA[Good thing, because those eucalyptus were really causing a problem.



This is a symptom of deep, powerful problems within Stanford, and in the big picture, within our society as a whole.
The fact that Stanford is replacing nature with nature because one&#8217;s been deemed one more &#8216;natural&#8217; than the other isn&#8217;t the problem.  The fact that Stanford [...]]]></description>
			<content:encoded><![CDATA[<p>Good thing, because those eucalyptus were really <a href="http://library.csustan.edu/bsantos/section1.htm">causing a problem</a>.</p>
<p><img src="http://farm5.static.flickr.com/4018/4391146070_d0189a67c8.jpg" alt="nature in a box" /></p>
<p><img src="http://farm3.static.flickr.com/2750/4391146842_47845486ba.jpg" alt="tree in a box" /></p>
<p><img src="http://farm5.static.flickr.com/4004/4390376617_50e9edfb5e.jpg" alt="upgrade nature!" /></p>
<p>This is a symptom of deep, powerful problems within Stanford, and in the big picture, within our society as a whole.</p>
<p>The fact that Stanford is replacing nature with nature because one&#8217;s been deemed one more &#8216;natural&#8217; than the other isn&#8217;t the problem.  The fact that Stanford is paying <a href="http://arboretum.arizona.edu/evaluatingtreesdoc.html">$$$$$($?)</a> per tree for this upgrade isn&#8217;t the problem, as Stanford has <a href="http://www.stanfordmanage.org/smc_endowment.html">$$$$$$$$$$$</a> (yes, <strong>11</strong> digits there) lying around.  In fact, the problem is not even that the money spent on each tree could instead give one of the <a href="http://www.sfgate.com/homeless/">10,000</a> people living off the street just around the corner a place to call home.</p>
<p>The problem is that we, as a culture, as a people, are A-OK with this disparity of wealth, this wasteful opulence, this dehumanization of those in need&#8230; directly in front of our faces, our doorstops.  Not to mention the other <a href="http://www.globalissues.org/TradeRelated/Facts.asp">3 billion</a> who are kept out of place, out of mind.  The problem starts with those in power, those making the decisions, those who choose to push that <a href="http://www.stanfordmanage.org/">21.6 billion</a> dollars toward million dollar landscaping upgrades &#8211; but it extends down to you and me, who drive by the problem every day, and turn a blind eye.  This indifference, this willful indirection, ingrained in the most powerful people on the planet is neither acceptable, justifiable, nor in the long term &#8211; sustainable.</p>
<p>We can, and we must, <a href="http://en.wikipedia.org/wiki/Think_globally_and_act_locally">do better</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2008/07/17/stanford-upgrades-its-nature/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>R&amp;L @ Stanford</title>
		<link>http://www.fogel.ca/2008/05/05/rl-stanford/</link>
		<comments>http://www.fogel.ca/2008/05/05/rl-stanford/#comments</comments>
		<pubDate>Mon, 05 May 2008 16:12:33 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[arts]]></category>
		<category><![CDATA[stanford]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/?p=33</guid>
		<description><![CDATA[Written by Takeo Rivera and directed by Rachel Anderson, R&#38;L is a collective story of eight women and men struggling to find a sense of identity in 21st century Asian America.  Passionate, sincere, emotional and damn funny &#8211; a great performance by the crew and a powerful story to boot.  Well done!




Director Extraordinaire, [...]]]></description>
			<content:encoded><![CDATA[<p>Written by Takeo Rivera and directed by <a href="http://www.stanford.edu/dept/drama/people/gradlist.html#Rachel_Anderson">Rachel Anderson</a>, <a href="http://www.youtube.com/watch?v=dbameFARpbA">R&amp;L</a> is a collective story of eight women and men struggling to find a sense of identity in 21st century Asian America.  Passionate, sincere, emotional and damn funny &#8211; a great performance by the crew and a powerful story to boot.  Well done!</p>
<p><img src="http://farm3.static.flickr.com/2775/4454533749_d82b89c654.jpg" alt="R&amp;L" /></p>
<p><img src="http://farm5.static.flickr.com/4042/4455317128_c8d2cebae0.jpg" alt="R&amp;L scene ~1" /></p>
<p><img src="http://farm3.static.flickr.com/2782/4455321108_293909a362.jpg" alt="R&amp;L getting deep" /></p>
<p><img src="http://farm5.static.flickr.com/4063/4454545433_cb01647fd5.jpg" alt="R&amp;L you guys rock" /></p>
<p>Director Extraordinaire, the one and only, Rachel Anderson:</p>
<p><img src="http://farm3.static.flickr.com/2758/4454548663_ea8880d24c.jpg" alt="Rachel Anderson, Director extraordinaire" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2008/05/05/rl-stanford/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bill Gate$ comes to Stanford</title>
		<link>http://www.fogel.ca/2008/02/22/bill-gate-comes-to-stanford/</link>
		<comments>http://www.fogel.ca/2008/02/22/bill-gate-comes-to-stanford/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 20:35:56 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[philanthropy]]></category>
		<category><![CDATA[stanford]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/2008/02/22/bill-gate-comes-to-stanford/</guid>
		<description><![CDATA[Gates came to Stanford this week to &#8217;share his vision&#8217; of all things tech, and how that will change the world, and how it should change the world.  Given that I&#8217;m spending a significant amount of time in a building that bears his name and using urinals his money paid for, and that he&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Gates came to Stanford this week to &#8217;share his vision&#8217; of all things tech, and how that will change the world, and how it should change the world.  Given that I&#8217;m spending a significant amount of time in a building that bears his name and using urinals <a href="http://news-service.stanford.edu/pr/92/920826Arc2120.html">his money</a> paid for, and that he&#8217;s currently the <a href="http://www.forbes.com/worldsrichest/">world&#8217;s richest</a> person (excluding monarchs and dictators and all those good people) I thought I should hear him talk.  Apparently so did the rest of the campus.  It was a packed house.</p>
<p>Hey Bill!</p>
<p><img src="http://img.fogel.ca/bill_gates.jpg" alt="bill gate$" height="300" width="400" /></p>
<p>Bill had some good stuff to say&#8230; He has a great perspective on where the tech industry&#8217;s came from in the last 30 years &#8211; the schism between hardware and software, primarily.  And how revolutionary the idea of a &#8216;personal computer&#8217; was. His vision of where computing is going was much more corporate and business centric than <a href="http://www.google.com/corporate/execs.html#vint">others</a> I&#8217;ve heard recently.  Video conferencing, distance learning, increasing worker productivity.  Heh, and he still believes in the tablet pc&#8230;  the &#8220;replacement for paper&#8221; as he put it.  Cute Bill&#8230;. it&#8217;s a laptop &#8211; with a rotating touchscreen. Revolutionary! I can only dream of <a href="http://karagitz.blogspot.com/2005/09/chocolate-covered-bacon_28.html">what&#8217;s next</a>.</p>
<p>Bill, the reality is:</p>
<ol>
<li>The home PC has evolved into an internet terminal.  That&#8217;s it. Heavy word processing, gaming &#8211; no.  We do that at work, or we do it on a specialized console.</li>
<li>You don&#8217;t need a desktop or a laptop to use an internet terminal.  You need a phone.</li>
<li>The cell phone already has <a href="http://investing.reuters.co.uk/news/articleinvesting.aspx?type=media&amp;storyID=nL29172095">over 50% global market penetration</a>.  The PC, as we know it, will never come close to this.</li>
<li>In the next 5 years, we will see mainstream phones quickly take over the feature set that currently compels the average consumer to blow 2k on a new desktop or laptop.</li>
<li>In 10 years, you&#8217;ll get home, insert your phone into a dock next to your 48&#8243; LCD, sit down with your wireless keyboard, and check your email and geek out.  You wil <em>not</em> have a desktop machine, or laptop, or tablet PC, or anything with more computing resources than necessary to a) retrieve information from a remote server and b) display it.</li>
<li>In 10 years, your phone won&#8217;t be running windows.  And Microsoft will still be building huge In-The-Box software for an increasingly smaller and smaller market of the largest and slowest companies around.</li>
</ol>
<p>The interesting question to ask is &#8211; in 10 years, what will your phone be running?  How much will it look like a phone versus&#8230; a <a href="http://www.suunto.com/media/suunto/newsletters/inside_urban_0304_1fba7.html">watch</a>?  or an armband?  or <a href="http://oakley.com/pd/2794">sunglasses</a>?</p>
<p>Bill took some questions, but most of them were leading questions about philanthropy&#8230; thinly veiled questions of the form &#8220;Problem X has caused 20 million billion puppies to die.  What are you doing to fix it?  oh, by the way, I&#8217;m from the Fix Problem X Foundation.&#8221;  I&#8217;m of the opinion that while philanthropy does have vital <a href="http://www.doctorswithoutborders.org/">short-term</a> <a href="http://www.ippfwhr.org/">benefits</a>, any long term solution we find to our global-scale problems will be devised from and implemented in the currently dominate democratic/capitalistic model that has proven to suck less than any other idea thus far.</p>
<p><img src="http://img.fogel.ca/bill_gates_and_tool.jpg" alt="bill gate$ and stanford president" height="300" width="400" /></p>
<p>The dude on the left is the President of Stanford University, who I&#8217;m going to give the benefit of the doubt to, and not say that he came off as a total tool, even though he did.  How can you be a tool if you&#8217;re already The Man? Chicken and the egg v2: what came first &#8211; the tool or The Man?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2008/02/22/bill-gate-comes-to-stanford/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Amgen Tour de CA 2008 Prologue</title>
		<link>http://www.fogel.ca/2008/02/18/amgen-tour-de-ca-2008-prologue/</link>
		<comments>http://www.fogel.ca/2008/02/18/amgen-tour-de-ca-2008-prologue/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 08:37:33 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cycling]]></category>
		<category><![CDATA[stanford]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/2008/02/18/amgen-tour-de-ca-2008-prologue/</guid>
		<description><![CDATA[The Tour de CA ditched San Francisco this year and moved down the peninsula, much like uh, me.  I fixed up my bike and got out with my roomies for my first ride since my &#8216;encounter&#8217; with the reality of living and riding in suburbia 5 weeks ago.
The Prologue this year was in Palo [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.amgentourofcalifornia.com/">Tour de CA</a> ditched San Francisco this year and moved down the peninsula, much like uh, me.  I fixed up my bike and got out with my roomies for my first ride since my <a href="http://blog.fogel.ca/2008/01/23/body-vs-grand-jeep-cherokee/">&#8216;encounter&#8217;</a> with the reality of living and riding in suburbia 5 weeks ago.</p>
<p>The <a href="http://www.paloaltostanfordprologue.com/">Prologue</a> this year was in Palo Alto/Stanford: a 2 mile sprint from downtown, straight up Palm Drive and around the loop in the center of campus, then back a few hundred yards to a quick finish.  The <a href="http://www.amgentourofcalifornia.com/news/press/2008-prologue-results.html">winning times</a> (including the victorious <a href="http://www.team-csc.com/person_profiles.asp?p_id=102">World Time Trial Champion</a>)  hit just under 4 minutes &#8211; which, as you may realize if you too finished the 4th grade, is an average of a little over 30 mph.  On a slight uphill.  Damn.</p>
<p>I can&#8217;t say I prefer this setting for the Prologue compared to that of years past: watching <a href="http://www.amgentourofcalifornia.com/Archives/2006-archive/2006-stages/prologue.html">Levi</a> <a href="http://www.amgentourofcalifornia.com/Archives/2007-archive/stage-recaps/prologue.html">Leipheimer</a> power like an f-ing blitzkrieg up the wall of a hill from the Ferry Building to the very top of Telegraph Hill, surrounded by fans packed in 5 deep shoulder to shoulder cheering him hoarse.  I don&#8217;t think there&#8217;s that much adrenaline or testosterone in all of the Silicon Valley put together.  But, you can&#8217;t just keep the tour static year-to-year&#8230; so this wasn&#8217;t a bad choice all things considered.  But you know what I&#8217;d like to see?  A straight shot 2 mile sprint across the Golden Gate.   Now that, that would be hot.  Imagine those photos!  The Euro press would go paparazzi over that.</p>
<p>But, back to reality. Look out, here he comes&#8230;.</p>
<p><img src="http://img.fogel.ca//rider_coming.jpg" alt="He's coming..." height="300" width="400" /></p>
<p>Holy schnikes!</p>
<p><img src="http://img.fogel.ca//rider_passing.jpg" alt="he's going fast!" height="300" width="400" /></p>
<p>Gone already?  I feel like we hardly even got a chance to get to know each other.</p>
<p><img src="http://img.fogel.ca/rider_past.jpg" alt="Rider gone already" /></p>
<p>Maybe I can elbow my way up to the finish line&#8230; or maybe not.</p>
<p><img src="http://img.fogel.ca/finish_line.jpg" alt="finish line, from somwhere not at the finish line" height="300" width="400" /></p>
<p>I met some damn fancy bikes hanging out there&#8230; mass measured with 2 digits after the decimal point, value measured with 5 digits before.  But for some reason, there was one special one that really just stood out of the crowd for me.  Cause..</p>
<p>He&#8217;s racing and pacing and plotting the course,<br />
He&#8217;s fighting and biting and riding on his horse.<br />
He&#8217;s going the distance.<br />
He&#8217;s going for speed.<br />
He&#8217;s going the distance.</p>
<p><img src="http://img.fogel.ca/sexy_bike.jpg" alt="damn, gina." height="300" width="400" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2008/02/18/amgen-tour-de-ca-2008-prologue/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
