<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom"><title>Simon Willison's Weblog: squirrels</title><link href="http://simonwillison.net/" rel="alternate"/><link href="http://simonwillison.net/tags/squirrels.atom" rel="self"/><id>http://simonwillison.net/</id><updated>2019-10-21T18:42:41+00:00</updated><author><name>Simon Willison</name></author><entry><title>Weeknotes: The Squirrel Census, Genome SQL query</title><link href="https://simonwillison.net/2019/Oct/21/weeknotes-squirrels-genome/#atom-tag" rel="alternate"/><published>2019-10-21T18:42:41+00:00</published><updated>2019-10-21T18:42:41+00:00</updated><id>https://simonwillison.net/2019/Oct/21/weeknotes-squirrels-genome/#atom-tag</id><summary type="html">
    &lt;p&gt;This week was mostly about incremental improvements. And squirrels.&lt;/p&gt;
&lt;h3 id="the-squirrel-census"&gt;The Squirrel Census&lt;/h3&gt;
&lt;p&gt;Last October a team of 323 volunteer Squirrel Sighters got together to attempt the first ever comprehensive census of the squirrels in New York&amp;#39;s Central Park.&lt;/p&gt;
&lt;p&gt;The result was &lt;a href="https://www.thesquirrelcensus.com/"&gt;the Central Park Squirrel Census 2019 Report&lt;/a&gt;, an absolutely delightful package you can order from their site that includes two beautiful five foot long maps, a written supplemental report and (not kidding) a 45-RPM vinyl audio report.&lt;/p&gt;
&lt;p&gt;I bought a copy and everyone I have shown it to has fallen in love with it.&lt;/p&gt;
&lt;p&gt;Last week they &lt;a href="https://data.cityofnewyork.us/Environment/2018-Central-Park-Squirrel-Census-Squirrel-Data/vfnx-vebw"&gt;released the underlying data&lt;/a&gt; through the NYC open data portal! Naturally I loaded it into &lt;a href="https://central-park-squirrel-census.glitch.me/"&gt;a Datasette instance&lt;/a&gt; (running on &lt;a href="https://glitch.com/"&gt;Glitch&lt;/a&gt;, which is also made in New York). You can &lt;a href="https://central-park-squirrel-census.glitch.me/csv-data/2018_Central_Park_Squirrel_Census?_facet=Primary_Fur_Color&amp;amp;_facet=Highlight_Fur_Color&amp;amp;_facet=Age"&gt;facet by fur color&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id="analyzing-my-genome-with-sql"&gt;Analyzing my genome with SQL&lt;/h3&gt;
&lt;p&gt;Natalie and I attended the first half of the last &lt;a href="https://sf.sciencehackday.org/"&gt;San Francisco Science Hack Day&lt;/a&gt;. I made a 44 second pitch asking for help &lt;a href="https://github.com/dogsheep/genome-to-sqlite/issues/1"&gt;using SQL to analyze my genome&lt;/a&gt;, and Dr. Laura Cantino answered my call and helped me figure out how to run some fun queries.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s my favourite example so far:&lt;/p&gt;
&lt;pre&gt;&lt;code class="lang-sql"&gt;&lt;span class="hljs-keyword"&gt;select&lt;/span&gt; rsid, genotype, &lt;span class="hljs-keyword"&gt;case&lt;/span&gt; genotype
  &lt;span class="hljs-keyword"&gt;when&lt;/span&gt; &lt;span class="hljs-symbol"&gt;'AA&lt;/span&gt;' &lt;span class="hljs-keyword"&gt;then&lt;/span&gt; &lt;span class="hljs-symbol"&gt;'brown&lt;/span&gt; eye color, &lt;span class="hljs-number"&gt;80&lt;/span&gt;% &lt;span class="hljs-keyword"&gt;of&lt;/span&gt; the &lt;span class="hljs-built_in"&gt;time&lt;/span&gt;'
  &lt;span class="hljs-keyword"&gt;when&lt;/span&gt; &lt;span class="hljs-symbol"&gt;'AG&lt;/span&gt;' &lt;span class="hljs-keyword"&gt;then&lt;/span&gt; &lt;span class="hljs-symbol"&gt;'brown&lt;/span&gt; eye color'
  &lt;span class="hljs-keyword"&gt;when&lt;/span&gt; &lt;span class="hljs-symbol"&gt;'GG&lt;/span&gt;' &lt;span class="hljs-keyword"&gt;then&lt;/span&gt; &lt;span class="hljs-symbol"&gt;'blue&lt;/span&gt; eye color, &lt;span class="hljs-number"&gt;99&lt;/span&gt;% &lt;span class="hljs-keyword"&gt;of&lt;/span&gt; the &lt;span class="hljs-built_in"&gt;time&lt;/span&gt;'
&lt;span class="hljs-keyword"&gt;end&lt;/span&gt; as interpretation from genome where rsid = &lt;span class="hljs-symbol"&gt;'rs12913832&lt;/span&gt;'
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;It works! If I run it against my genome it gets GG (blue eyes), and if I run it against &lt;a href="https://twitter.com/natbat"&gt;Natalie&amp;#39;s&lt;/a&gt; it gets AG (brown).&lt;/p&gt;
&lt;p&gt;&lt;img src="https://static.simonwillison.net/static/2019/genome-eyes.png" alt="Running SQL against my genome and Natalie&amp;#39;s genome" style="max-width: 100%" /&gt;&lt;/p&gt;
&lt;h3 id="twitter-to-sqlite-crons-for-dogsheep"&gt;twitter-to-sqlite crons for Dogsheep&lt;/h3&gt;
&lt;p&gt;I upgraded my personal Dogsheep instance to start fetching fresh data via cron. This meant improving twitter-to-sqlite to be &lt;a href="https://github.com/dogsheep/twitter-to-sqlite/issues/20"&gt;better at incremental data fetching&lt;/a&gt;. Here&amp;#39;s the resulting relevant section of my cron tab:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# Fetch new tweets I have tweeted every &lt;span class="hljs-number"&gt;10&lt;/span&gt; minutes
&lt;span class="hljs-number"&gt;1&lt;/span&gt;,&lt;span class="hljs-number"&gt;11&lt;/span&gt;,&lt;span class="hljs-number"&gt;21&lt;/span&gt;,&lt;span class="hljs-number"&gt;31&lt;/span&gt;,&lt;span class="hljs-number"&gt;41&lt;/span&gt;,&lt;span class="hljs-number"&gt;51&lt;/span&gt; * * * * /home/ubuntu/datasette-venv/bin/twitter-to-sqlite user-timeline /home/ubuntu/twitter.db -a /home/ubuntu/auth.json --since

# Fetch most recent &lt;span class="hljs-number"&gt;50&lt;/span&gt; tweets I have favourited every &lt;span class="hljs-number"&gt;10&lt;/span&gt; minutes
&lt;span class="hljs-number"&gt;6&lt;/span&gt;,&lt;span class="hljs-number"&gt;16&lt;/span&gt;,&lt;span class="hljs-number"&gt;26&lt;/span&gt;,&lt;span class="hljs-number"&gt;36&lt;/span&gt;,&lt;span class="hljs-number"&gt;46&lt;/span&gt;,&lt;span class="hljs-number"&gt;56&lt;/span&gt; * * * * /home/ubuntu/datasette-venv/bin/twitter-to-sqlite favorites /home/ubuntu/twitter.db -a /home/ubuntu/auth.json --stop_after=&lt;span class="hljs-number"&gt;50&lt;/span&gt;

# Fetch new tweets from my home timeline every &lt;span class="hljs-number"&gt;5&lt;/span&gt; minutes
&lt;span class="hljs-number"&gt;2&lt;/span&gt;,&lt;span class="hljs-number"&gt;7&lt;/span&gt;,&lt;span class="hljs-number"&gt;12&lt;/span&gt;,&lt;span class="hljs-number"&gt;17&lt;/span&gt;,&lt;span class="hljs-number"&gt;22&lt;/span&gt;,&lt;span class="hljs-number"&gt;27&lt;/span&gt;,&lt;span class="hljs-number"&gt;32&lt;/span&gt;,&lt;span class="hljs-number"&gt;37&lt;/span&gt;,&lt;span class="hljs-number"&gt;42&lt;/span&gt;,&lt;span class="hljs-number"&gt;47&lt;/span&gt;,&lt;span class="hljs-number"&gt;52&lt;/span&gt;,&lt;span class="hljs-number"&gt;57&lt;/span&gt; * * * * /home/ubuntu/datasette-venv/bin/twitter-to-sqlite home-timeline /home/ubuntu/timeline.db -a /home/ubuntu/auth.json --since
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;That last line is quite fun: I&amp;#39;m now hitting the Twitter &lt;a href="https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-home_timeline"&gt;home-timeline API&lt;/a&gt; every five minutes and storing the resulting tweets in a separate &lt;code&gt;timeline.db&lt;/code&gt; database. This equates to creating a searchable permanent database of anything tweeted by any of the 3,600+ &lt;a href="https://twitter.com/simonw/following"&gt;accounts I follow&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The main thing I&amp;#39;ve learned from this exercise is that I&amp;#39;m really grateful for Twitter&amp;#39;s algorithmic timeline! Accounts I follow tweeted between 13,000 and 22,000 times a day over the past week (&lt;code&gt;/timeline/tweets?_where=id+in+(select+tweet+from+timeline_tweets)&amp;amp;_facet_date=created_at&lt;/code&gt;). Trusting the algorithm to show me the highlights frees me to be liberal in following new accounts.&lt;/p&gt;
&lt;h3 id="playing-with-lit-html"&gt;Playing with lit-html&lt;/h3&gt;
&lt;p&gt;I have a couple of projects brewing where I&amp;#39;ll be building out a JavaScript UI. I used React for both &lt;a href="https://github.com/simonw/datasette-vega"&gt;datasette-vega&lt;/a&gt; and &lt;a href="https://github.com/simonw/owlsnearme"&gt;owlsnearme&lt;/a&gt; and it works OK, but it&amp;#39;s pretty weighty (~40KB gzipped) and requires a complex build step.&lt;/p&gt;
&lt;p&gt;For my current pro;jects, I&amp;#39;m willing to sacrifice compatibility with older browsers in exchange for less code and no build step.&lt;/p&gt;
&lt;p&gt;I considered going completely library free, but having some kind of templating mechanism for constructing complex DOM elements is useful.&lt;/p&gt;
&lt;p&gt;I love JavaScript &lt;a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#Tagged_templates"&gt;tagged template literals&lt;/a&gt; - they&amp;#39;re like &lt;a href="https://docs.python.org/3/reference/lexical_analysis.html#f-strings"&gt;Python&amp;#39;s f-strings&lt;/a&gt; but even better, because you can provide your own function that executes against every interpolated value - ideal for implementing &lt;a href="https://code.djangoproject.com/wiki/AutoEscaping"&gt;Django-style autoescaping&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve used them for &lt;a href="https://gist.github.com/simonw/dec4bec9ec6041c053bc0466f1203da1"&gt;my own tiny autoescaping implementation&lt;/a&gt; in the past, but I&amp;#39;m getting excited about exploring &lt;a href="https://lit-html.polymer-project.org/"&gt;lit-html&lt;/a&gt;, which extends the same technique to cover a lot more functionality while still weighing in at less than 4KB gzipped.&lt;/p&gt;
&lt;p&gt;Thanks to &lt;a href="https://twitter.com/simonw/status/1183583625830227968"&gt;Laurence Rowe on Twitter&lt;/a&gt; I now have a tidy one-liner for running lit-html in the Firefox developer console, loaded from a module:&lt;/p&gt;
&lt;pre&gt;&lt;code class="lang-javascript"&gt;&lt;span class="hljs-keyword"&gt;let&lt;/span&gt; {html, render} = &lt;span class="hljs-keyword"&gt;await&lt;/span&gt; &lt;span class="hljs-keyword"&gt;import&lt;/span&gt;(&lt;span class="hljs-string"&gt;'https://unpkg.com/lit-html?module'&lt;/span&gt;);

&lt;span class="hljs-comment"&gt;// Try it out like so:&lt;/span&gt;
render(html&lt;span class="hljs-string"&gt;`&amp;lt;h1&amp;gt;Hello world&amp;lt;/h1&amp;gt;`&lt;/span&gt;, &lt;span class="hljs-built_in"&gt;document&lt;/span&gt;.body);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;And here&amp;#39;s a full proof-of-concept script showing data loaded from Datasette via &lt;code&gt;fetch()&lt;/code&gt; which is then rendered using lit-html:&lt;/p&gt;
&lt;pre&gt;&lt;code class="lang-html"&gt;&lt;span class="hljs-tag"&gt;&amp;lt;&lt;span class="hljs-name"&gt;div&lt;/span&gt;&amp;gt;&lt;/span&gt;&lt;span class="hljs-tag"&gt;&amp;lt;/&lt;span class="hljs-name"&gt;div&lt;/span&gt;&amp;gt;&lt;/span&gt;
&lt;span class="hljs-tag"&gt;&amp;lt;&lt;span class="hljs-name"&gt;script&lt;/span&gt; &lt;span class="hljs-attr"&gt;type&lt;/span&gt;=&lt;span class="hljs-string"&gt;"module"&lt;/span&gt;&amp;gt;&lt;/span&gt;&lt;span class="javascript"&gt;
&lt;span class="hljs-keyword"&gt;import&lt;/span&gt; {html, render} &lt;span class="hljs-keyword"&gt;from&lt;/span&gt; &lt;span class="hljs-string"&gt;'https://unpkg.com/lit-html?module'&lt;/span&gt;;
&lt;span class="hljs-keyword"&gt;const&lt;/span&gt; myTemplate = &lt;span class="hljs-function"&gt;(&lt;span class="hljs-params"&gt;data&lt;/span&gt;) =&amp;gt;&lt;/span&gt; html&lt;span class="hljs-string"&gt;`&amp;lt;p&amp;gt;Hello &lt;span class="hljs-subst"&gt;${&lt;span class="hljs-built_in"&gt;JSON&lt;/span&gt;.stringify(data)}&lt;/span&gt;&amp;lt;/p&amp;gt;`&lt;/span&gt;;
&lt;span class="hljs-keyword"&gt;async&lt;/span&gt; &lt;span class="hljs-function"&gt;&lt;span class="hljs-keyword"&gt;function&lt;/span&gt; &lt;span class="hljs-title"&gt;go&lt;/span&gt;(&lt;span class="hljs-params"&gt;&lt;/span&gt;) &lt;/span&gt;{
    &lt;span class="hljs-keyword"&gt;let&lt;/span&gt; div = &lt;span class="hljs-built_in"&gt;document&lt;/span&gt;.getElementsByTagName(&lt;span class="hljs-string"&gt;"div"&lt;/span&gt;)[&lt;span class="hljs-number"&gt;0&lt;/span&gt;];
    &lt;span class="hljs-keyword"&gt;var&lt;/span&gt; data = &lt;span class="hljs-keyword"&gt;await&lt;/span&gt; (&lt;span class="hljs-keyword"&gt;await&lt;/span&gt; fetch(&lt;span class="hljs-string"&gt;"https://latest.datasette.io/fixtures/complex_foreign_keys.json?_labels=on&amp;amp;_shape=array"&lt;/span&gt;)).json();
    render(myTemplate(data), div);
}
go();
&lt;/span&gt;&lt;span class="hljs-tag"&gt;&amp;lt;/&lt;span class="hljs-name"&gt;script&lt;/span&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id="everything-else"&gt;Everything else&lt;/h3&gt;
&lt;p&gt;I shipped a new release of Datasette (&lt;a href="https://datasette.readthedocs.io/en/stable/changelog.html#v0-30"&gt;version 0.30&lt;/a&gt;) incorporating some bug fixes and the external contributions I &lt;a href="https://simonwillison.net/2019/Oct/14/weeknotes/"&gt;talked about last week&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I started work on a new project which has been brewing for a while. Not ready to talk about it yet but I did buy a domain name (through Google Domains this time, but I got &lt;a href="https://twitter.com/simonw/status/1185769144945270784"&gt;some great advice from Twitter&lt;/a&gt; on domain registrars with non-terrible UIs in 2019).&lt;/p&gt;
    
        &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/genetics"&gt;genetics&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/projects"&gt;projects&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/squirrels"&gt;squirrels&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/weeknotes"&gt;weeknotes&lt;/a&gt;&lt;/p&gt;
    

</summary><category term="genetics"/><category term="projects"/><category term="squirrels"/><category term="weeknotes"/></entry><entry><title>2018 Central Park Squirrel Census in Datasette</title><link href="https://simonwillison.net/2019/Oct/16/squirrel-census/#atom-tag" rel="alternate"/><published>2019-10-16T18:01:31+00:00</published><updated>2019-10-16T18:01:31+00:00</updated><id>https://simonwillison.net/2019/Oct/16/squirrel-census/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="https://central-park-squirrel-census.glitch.me/"&gt;2018 Central Park Squirrel Census in Datasette&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
The Squirrel Census project released their data! 3,000 squirrel observations in Central Park, each with fur color and latitude and longitude and behavioral observations. I love this data so much. I’ve loaded it into a Datasette running on Glitch.

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="https://twitter.com/simonw/status/1184136816292589568"&gt;@simonw&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/squirrels"&gt;squirrels&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/datasette"&gt;datasette&lt;/a&gt;&lt;/p&gt;



</summary><category term="squirrels"/><category term="datasette"/></entry><entry><title>Russian squirrel pack "kills dog"</title><link href="https://simonwillison.net/2006/Dec/12/russian/#atom-tag" rel="alternate"/><published>2006-12-12T13:59:47+00:00</published><updated>2006-12-12T13:59:47+00:00</updated><id>https://simonwillison.net/2006/Dec/12/russian/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://news.bbc.co.uk/1/hi/world/europe/4489792.stm"&gt;Russian squirrel pack &amp;quot;kills dog&amp;quot;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
“The little beasts are agitated because they have nothing to eat”.

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="http://reddit.com/info/uhod/comments"&gt;reddit&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/squirrels"&gt;squirrels&lt;/a&gt;&lt;/p&gt;



</summary><category term="squirrels"/></entry><entry><title>xkcd: Nihilism</title><link href="https://simonwillison.net/2006/Oct/6/xkcd/#atom-tag" rel="alternate"/><published>2006-10-06T09:15:36+00:00</published><updated>2006-10-06T09:15:36+00:00</updated><id>https://simonwillison.net/2006/Oct/6/xkcd/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://xkcd.com/c167.html"&gt;xkcd: Nihilism&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Zomg squirrels!


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/funny"&gt;funny&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/nihilism"&gt;nihilism&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/squirrels"&gt;squirrels&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/xkcd"&gt;xkcd&lt;/a&gt;&lt;/p&gt;



</summary><category term="funny"/><category term="nihilism"/><category term="squirrels"/><category term="xkcd"/></entry><entry><title>Photographing Squirrels - a photoset on Flickr</title><link href="https://simonwillison.net/2006/May/30/photographing/#atom-tag" rel="alternate"/><published>2006-05-30T11:13:10+00:00</published><updated>2006-05-30T11:13:10+00:00</updated><id>https://simonwillison.net/2006/May/30/photographing/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.flickr.com/photos/photosquirrels/sets/72057594128554742/"&gt;Photographing Squirrels - a photoset on Flickr&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Real wild squirrels with real vintage cameras. Awesome.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/flickr"&gt;flickr&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/squirrels"&gt;squirrels&lt;/a&gt;&lt;/p&gt;



</summary><category term="flickr"/><category term="squirrels"/></entry><entry><title>My Washington D.C. photos</title><link href="https://simonwillison.net/2005/Apr/4/washington/#atom-tag" rel="alternate"/><published>2005-04-04T01:43:30+00:00</published><updated>2005-04-04T01:43:30+00:00</updated><id>https://simonwillison.net/2005/Apr/4/washington/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.flickr.com/photos/simon/sets/205806/"&gt;My Washington D.C. photos&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Touristy photos. Includes squirrels... and ENIAC!


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/eniac"&gt;eniac&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/flickr"&gt;flickr&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/photos"&gt;photos&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/squirrels"&gt;squirrels&lt;/a&gt;&lt;/p&gt;



</summary><category term="eniac"/><category term="flickr"/><category term="photos"/><category term="squirrels"/></entry><entry><title>My photos of squirrels</title><link href="https://simonwillison.net/2004/Aug/30/photos/#atom-tag" rel="alternate"/><published>2004-08-30T16:29:46+00:00</published><updated>2004-08-30T16:29:46+00:00</updated><id>https://simonwillison.net/2004/Aug/30/photos/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.flickr.com/photos/simon/tags/squirrels/"&gt;My photos of squirrels&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
I like squirrels, and I’ve started playing with Flickr.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/flickr"&gt;flickr&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/photos"&gt;photos&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/squirrels"&gt;squirrels&lt;/a&gt;&lt;/p&gt;



</summary><category term="flickr"/><category term="photos"/><category term="squirrels"/></entry><entry><title>Neighborhood Hazard (or: Why the Cops Won't Patrol Brice Street)</title><link href="https://simonwillison.net/2004/Aug/15/neighborhood/#atom-tag" rel="alternate"/><published>2004-08-15T17:24:25+00:00</published><updated>2004-08-15T17:24:25+00:00</updated><id>https://simonwillison.net/2004/Aug/15/neighborhood/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://cuagain.manilasites.com/stories/storyReader$287"&gt;Neighborhood Hazard (or: Why the Cops Won&amp;#x27;t Patrol Brice Street)&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Entertaining story about a guy, his motorcycle and a psychotic squirrel. I like squirrels.

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="http://keithdevens.com/weblog/archive/2004/Aug/15/squirrel-of-death"&gt;Keith Devens&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/funny"&gt;funny&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/squirrels"&gt;squirrels&lt;/a&gt;&lt;/p&gt;



</summary><category term="funny"/><category term="squirrels"/></entry></feed>