<?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</title>
	<atom:link href="http://www.fogel.ca/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fogel.ca</link>
	<description>soapbox and search engine spam</description>
	<lastBuildDate>Sat, 07 Aug 2010 19:25:08 +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>Elegantly dropping priviledge in an /etc/cron.daily script</title>
		<link>http://www.fogel.ca/2010/08/07/elegantly-dropping-priviledge-in-an-etccron-daily-script/</link>
		<comments>http://www.fogel.ca/2010/08/07/elegantly-dropping-priviledge-in-an-etccron-daily-script/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 19:25:08 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.fogel.ca/?p=933</guid>
		<description><![CDATA[Debian-based distributions have a really useful series of directories to run cron scripts from.  Any executable you place in /etc/cron.hourly, /etc/cron.daily, /etc/cron.weekly or /etc/cron.monthly will get run with that frequency.  I like these for two reasons: 1) it&#8217;s file-based, which I find a lot easier to manage and keep track of than each [...]]]></description>
			<content:encoded><![CDATA[<p>Debian-based distributions have a really useful series of directories to run cron scripts from.  Any executable you place in <em>/etc/cron.hourly</em>, <em>/etc/cron.daily</em>, <em>/etc/cron.weekly</em> or <em>/etc/cron.monthly</em> will get run with that frequency.  I like these for two reasons: 1) it&#8217;s file-based, which I find a lot easier to manage and keep track of than each user&#8217;s crontabs and 2) this eliminates one possible source of bugs in my work &#8211; namely, the scheduling of my cron tasks.</p>
<p>However, there is a downside to <em>/etc/cron.daily</em> and friends.  All scripts in there run as root.  It&#8217;s generally bad practice to run anything as root that doesn’t have to run as root&#8230; and this is especially true if your script has scary lines like &#8220;rm -rf $SOME_VAR&#8221; in it.  You&#8217;re asking for trouble.</p>
<p>Unfortunately, AFAIK there is no way to drop privilege within a script.  However, this can be done by spanning a whole new child process.  So, let&#8217;s add a short preamble to all the scripts we place in <em>/etc/cron.daily</em> and friends:</p>
<pre>#!/bin/sh

USER='some-low-privilege-user'
if [ `whoami` != "$USER" ]; then
  sudo -u $USER "$0"
  exit
fi

... rest of the script ...</pre>
<p>Now we have some extra assurance our cron job isn&#8217;t going to go haywire and screw the whole machine!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2010/08/07/elegantly-dropping-priviledge-in-an-etccron-daily-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The New Site</title>
		<link>http://www.fogel.ca/2010/03/30/the-new-site/</link>
		<comments>http://www.fogel.ca/2010/03/30/the-new-site/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 03:42:55 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dreamhost]]></category>
		<category><![CDATA[linode]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.fogel.ca/?p=913</guid>
		<description><![CDATA[Only a short two years into its budding existence, blog.fogel.ca has been consumed by www.fogel.ca.
Don&#8217;t worry, not much is going to change.  All blog.fogel.ca permalinks should still work &#8211; seamlessly and correctly redirecting to www.fogel.ca.  You&#8217;ll still get the same ramblings about transit, travel and tech here that you used to get from [...]]]></description>
			<content:encoded><![CDATA[<p>Only a short two years into its budding existence, <em>blog.fogel.ca</em> has been consumed by <em>www.fogel.ca</em>.</p>
<p>Don&#8217;t worry, not much is going to change.  All <em>blog.fogel.ca</em> permalinks should still work &#8211; seamlessly and correctly redirecting to <em>www.fogel.ca</em>.  You&#8217;ll still get the same ramblings about <a href="http://www.fogel.ca/tag/transit/">transit</a>, <a href="http://www.fogel.ca/tag/travel/">travel</a> and <a href="http://www.fogel.ca/tag/tech/">tech</a> here that you used to get from <em>blog.fogel.ca</em>.</p>
<p>I also used the move as an opportunity to switch up my hosting from a shared <a href="http://www.dreamhost.com/r.cgi?314813">Dreamhost</a> machine to a full VPS with <a href="http://www.linode.com/?r=4f3153e4f47f13a7e788f246d9e1809ef07c0979">Linode</a>.  (BTW, Linode is the third VPS provider I&#8217;ve been with &#8211; and they&#8217;re the best I&#8217;ve found.  Definitely recommended.)  And I moved some of my image hosting to my <a href="http://www.flickr.com/photos/mfogel">Flickr</a> account&#8230; which was working great until I discovered their active-image limit of 204 images.  Doh!  Wish I had known that 204 images ago.</p>
<p>I&#8217;m still using Wordpress, and I&#8217;m using the <a href="http://wordpress.org/extend/themes/constructor">constructor</a> theme, with some custom mods.  Hope you like orange!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2010/03/30/the-new-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cuts to Muni are not the answer</title>
		<link>http://www.fogel.ca/2010/02/11/cuts-to-muni-are-not-the-answer/</link>
		<comments>http://www.fogel.ca/2010/02/11/cuts-to-muni-are-not-the-answer/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 01:38:27 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[muni]]></category>
		<category><![CDATA[transit]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/?p=704</guid>
		<description><![CDATA[The answer is instead, to write a bunch of emails.  Have you written yours?  The SFBC makes it easy.
This actually reflects nicely on one of the things I like most about the internet.  For a lot of stuff, it lowers the bar to participation &#8211; and civic/government stuff is a prime example. [...]]]></description>
			<content:encoded><![CDATA[<p>The answer is instead, to write a bunch of emails.  Have you written yours?  The SFBC <a href="http://www.sfbike.org/?transit">makes it easy</a>.</p>
<p>This actually reflects nicely on one of the things I like most about the internet.  For a lot of stuff, it lowers the bar to participation &#8211; and civic/government stuff is a prime example.  There are some <em>~350k</em> people who ride Muni every day.  But only a few dozen, (sometimes non-representative) riders actually go to the meetings and tell the people making the decisions (who too often <a href="http://wheresgavin.com/">don&#8217;t actually use the systems themselves</a>) what they think is best.  But in this brave new world, with the internet, some <a href="http://sf.streetsblog.org/2010/02/11/can-anything-be-done-to-fix-muni/#comment-143681">650 people have written emails to the mayor already</a>.  (Yes, I just referenced a <em>comment</em> on a blog post as a source, sue me.)  Now, 650 >> a few dozen.  That&#8217;s awesome.  Unfortunately, 350k >> 650, but let&#8217;s take another look at these numbers 10 years down the road.</p>
<p>If you use Muni, please consider taking a few minutes and <a href="http://www.sfbike.org/?transit">dumping your thoughts about Muni&#8217;s situation on the mayor and the SFMTA board</a>.  Here&#8217;s the fruits of my evening Caltrain ride.</p>
<blockquote><p>
<strong>To:</strong> gavin.newsom@sfgov.org, sfmtabudget@sfmta.com<br />
<strong>From:</strong> Mike Fogel<br />
<strong>Subject:</strong> cuts to muni are not the answer</p>
<p>Dear Mayor Newsom: </p>
<p>Over New Years Eve, while walking home a young man assaulted me in attempt to get at my wallet.  He didn&#8217;t get my wallet, but he did separate my right shoulder and send me to the ER with blood draining down my face.</p>
<p>The result was I found myself suddenly dependent on Muni for  basic transportation.  Previously, I rarely used Muni &#8211; only when biking or walking was not an option for some reason.</p>
<p>Muni ridership is often broken into two groups: &#8216;choice riders&#8217; and &#8216;transit-dependent riders&#8217;.  But the reality is this is a false dichotomy.  At one point or another, we all find ourselves to be &#8216;transit-dependent&#8217; riders.</p>
<p>It is said that a good estimate the health of a community is to look at how it treats those most in need.  To remain healthy, our city needs Muni stronger and faster than ever &#8211; not weaker and more crowded.  A strong Muni is an essential part of our city, without which we cannot grow.</p>
<p>I urge you to look to cutting other, non-essential luxury services our city provides for funding the current Muni shortfall.</p>
<p>Thank you for your time. </p>
<p>Michael Fogel
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2010/02/11/cuts-to-muni-are-not-the-answer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Market Street trial improvements</title>
		<link>http://www.fogel.ca/2009/11/10/market-street-trial-improvements/</link>
		<comments>http://www.fogel.ca/2009/11/10/market-street-trial-improvements/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 18:01:58 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[livability]]></category>
		<category><![CDATA[MarketStreet]]></category>
		<category><![CDATA[SanFrancisco]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/?p=615</guid>
		<description><![CDATA[Over the past six weeks SF has been doing some trial improvements to Market Street.  These are simple livability improvements &#8211; mainly restricting private vehicle traffic and adding some paint here and there.  They&#8217;re collecting data and feedback about these improvements with an eye to revamping the whole street come 2013.
Feedback?  You [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past six weeks SF has been doing some <a href="http://marketstreet.sfplanning.org/">trial improvements to Market Street</a>.  These are simple livability improvements &#8211; mainly restricting private vehicle traffic and adding some paint here and there.  They&#8217;re collecting data and feedback about these improvements with an eye to revamping the whole street come 2013.</p>
<p>Feedback?  You want feedback!  OK!</p>
<blockquote><p>
<strong>To:</strong> <a href="mailto:marketstreet@sfgov.org">marketstreet@sfgov.org</a><br />
<strong>From:</strong> Michael J. Fogel &lt;mike … at … fogel.ca&gt;</br /><br />
<strong>Subject:</strong> Market Street improvements feedback</p>
<p>Good morning MarketStreet@sfgov.org</p>
<p>A few thoughts about the Market Street trial improvements from the perspective of an SF user (walk, Muni, bike, taxi, and occasionally &#8211; private vehicle driver):</p>
<ol>
<li>I think the changes to restrict private vehicles on Market Street have been a step in the right direction.  The blocks with reduced traffic are now more pleasant to be on &#8211; which will in turn attract more people to these blocks, which will in turn make the street more pleasant &#8211; a virtuous cycle.</li>
<li>The trial improvements have been limited in their impact because the choosen blocks are not high-profile, high pedestrian traffic blocks.  Restricting private vehicle traffic between, say 6th and 3rd, would do a significantly better job in making the advantages of these improvements clear to more people.</li>
<li>Restricting private vehicles, while not hindering taxis, delivery vehicles, and Muni was an excellent choice.  While these professional drivers are often more aggressive, they drive more predictably and are generally much safer than private drivers.  They also are now able to provide essential services to Market Street with greater efficiency &#8211; a benefit to all users of the street.</li>
</ol>
<p>Because of Market Street&#8217;s high profile, a successful Market Street improvement program has potential to motivate further livability-oriented changes around our region.  I encourage you to build and expand upon the trial improvements completed thus far, pushing them to the busiest areas of the street where they will be seen and felt by the most people.</p>
<p>Thanks for your time,</p>
<p>Michael Fogel
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2009/11/10/market-street-trial-improvements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SFgo backwards</title>
		<link>http://www.fogel.ca/2009/10/01/sfgo-backwards/</link>
		<comments>http://www.fogel.ca/2009/10/01/sfgo-backwards/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 18:43:40 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[san francisco]]></category>
		<category><![CDATA[traffic]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/?p=587</guid>
		<description><![CDATA[These are the first SFgo signs going up in a residential neighborhood in SF.  SFgo is intended to bring &#8216;smart&#8217; driving to SF by providing real-time information to drivers on key traffic corridors, enabling them to make better route-planning decisions.


(Image credit: BIKE NOPA)
The first image is on Fell street, the second is on Oak. [...]]]></description>
			<content:encoded><![CDATA[<p>These are the first <a href="http://www.sfmta.com/cms/ogo/indxsfgo.htm">SFgo</a> signs going up in a residential neighborhood in SF.  SFgo is intended to bring &#8216;smart&#8217; driving to SF by providing real-time information to drivers on key traffic corridors, enabling them to make better route-planning decisions.</p>
<p><a class="img" href="http://ibikenopa.blogspot.com/search/label/SFgo"><img src="http://img.fogel.ca/sfgo_fell.jpg" alt="SFGo fell" /></a></p>
<p><a class="img" href="http://ibikenopa.blogspot.com/search/label/SFgo"><img src="http://img.fogel.ca/sfgo_oak.jpg" alt="SFGo oak" /></a></p>
<p>(Image credit: <a href="http://ibikenopa.blogspot.com/">BIKE NOPA</a>)</p>
<p>The first image is on Fell street, the second is on Oak.  Both are right near their intersection with Divisadero.</p>
<p>So some big signs on some big streets.  What&#8217;s the big deal?</p>
<blockquote><p>
<strong>To:</strong> <a href="mailto:Ross.Mirkarimi@sfgov.org">Ross Mirkarimi &lt;Ross.Mirkarimi@sfgov.org&gt;</a><br />
<strong>From:</strong> Michael J. Fogel &lt;mike … at … fogel.ca&gt;</br /><br />
<strong>Subject:</strong> SFgo signs are a step backward</p>
<p>Hi Mr. Mirkarimi,</p>
<p>I currently live at Hayes and Filmore, in your district.  Over the past five years, I&#8217;ve lived at three different locations in SF, all in your district (Lower Haight, NoPa, and now Alamo Square).  We&#8217;re lucky to live in the neighborhood we do.</p>
<p>I want you to know that I feel strongly the new SFgo signs are a step in the wrong direction.  Rather than make our neighborhoods more people-scaled and people-friendly, these signs will push drivers (you and I included) further toward a freeway driving mentality while speeding along Oak and Fell.  These streets are bad enough already.  We should be taking steps to calm them, not speed them up.</p>
<p>Specifically:</p>
<p>- the SFgo sign on Oak should be removed completely.  It serves no valid purpose.<br />
- the SFgo sign on Fell should be moved to the freeway off-ramp down to Octavia.  The sign should be placed well in advance of the Market street crossing.</p>
<p>In addition:</p>
<p>- the lights on Fell and Oak should be timed at 25mph, not 30.  It requires aggressive driving to even keep up with the timing of the lights over the Alamo Square Hill.<br />
- on Oak, from Baker to Scott one lane of traffic or parking should be removed immediately to provide a bike lane on the right hand side.<br />
- A full study of these streets should be undertaken to identify effective longer-term steps we can take toward making these streets an asset to our neighborhood, rather than the barrier they currently are.</p>
<p>I&#8217;m not a member of any of the neighborhood groups.  I don&#8217;t have time to go and speak out at the community meetings.  I&#8217;m not the type that&#8217;s complaining about every little last thing that&#8217;s wrong with the neighborhood.  But I feel strongly the new SFgo signs area a blatant, highly visible step in the wrong direction.  I urge you to do what you can to remove the new SFgo signs from the neighborhood.</p>
<p>Thanks for your time,</p>
<p>Michael Fogel
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2009/10/01/sfgo-backwards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The H</title>
		<link>http://www.fogel.ca/2009/09/30/the-h/</link>
		<comments>http://www.fogel.ca/2009/09/30/the-h/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 18:45:34 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[muni]]></category>
		<category><![CDATA[streetcar]]></category>
		<category><![CDATA[transit]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/?p=580</guid>
		<description><![CDATA[There&#8217;s some good fantasy transit maps out there.  Maps of what an effective transit system might look like in our region.  Maps of what it would it might take to make build a system that works better than me in my private car.
But, what about the tourists?  Will someone please think of [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s some good <a href="http://transbayblog.com/fantasy-transit-maps/">fantasy transit maps</a> out there.  Maps of what an effective transit system might look like in our region.  Maps of what it would it might take to make build a system that works better than me in my private car.</p>
<p>But, what about the tourists?  Will someone<a href="http://en.wikipedia.org/wiki/For_the_children_(politics)"> please think of the tourists</a>?  How are they going to get from Powell, to Civic Center, to Alamo Square, then out to the Museums?</p>
<p>Have no fear, the H is here!</p>
<div class="embed500"><iframe width="500" height="375" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=109903100342557074332.000474cd87ea4d2906048&amp;ll=37.781615,-122.43228&amp;spn=0.02567,0.07502&amp;output=embed"></iframe><br /><small>View <a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=109903100342557074332.000474cd87ea4d2906048&amp;ll=37.781615,-122.43228&amp;spn=0.02567,0.07502&amp;source=embed" style="color:#0000FF;text-align:left">The H</a> in a larger map</small></div>
<p>Muni&#8217;s next historic streetcar line, right after <a href="http://en.wikipedia.org/wiki/E_Embarcadero">the E</a> and the <a href="http://historicstreetcarextension.org/info.htm">extension of the F over across Fort Mason</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2009/09/30/the-h/feed/</wfw:commentRss>
		<slash:comments>0</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>San Jose &amp; Guerrero Plaza Construction</title>
		<link>http://www.fogel.ca/2009/08/25/san-jose-and-guerrero-plaza-construction/</link>
		<comments>http://www.fogel.ca/2009/08/25/san-jose-and-guerrero-plaza-construction/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 23:05:34 +0000</pubDate>
		<dc:creator>Mike Fogel</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[plaza construction]]></category>

		<guid isPermaLink="false">http://blog.fogel.ca/?p=568</guid>
		<description><![CDATA[Something&#8217;s officially happening.  Learn more about what&#8217;s coming from the Project for Public Spaces, who was hired by the San Jose/Guerrero neighborhood group to flush out the design.  Kudos to those neighbors for pushing this through the last few years&#8230; your work is much appreciated.

]]></description>
			<content:encoded><![CDATA[<p>Something&#8217;s officially happening.  Learn more about what&#8217;s coming from the <a href="http://www.pps.org/info/projects/transportation_projects/san_jose_guerrero">Project for Public Spaces</a>, who was hired by the <a href="http://www.sanjoseguerrero.com/">San Jose/Guerrero neighborhood group</a> to flush out the design.  Kudos to those neighbors for pushing this through the last few years&#8230; your work is much appreciated.</p>
<p><img src="http://farm4.static.flickr.com/3528/3856787141_e6a545b88a.jpg" alt="Guerrero and San Jose Plaza construction" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fogel.ca/2009/08/25/san-jose-and-guerrero-plaza-construction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
