<?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>Declan's Blog &#187; Uncategorized</title>
	<atom:link href="http://www.declan.net/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.declan.net</link>
	<description></description>
	<lastBuildDate>Sat, 21 Jan 2012 17:52:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>RDF Nuts and Bolts or Get me a &#8220;LASER&#8221;</title>
		<link>http://www.declan.net/2012/01/21/rdf-nuts-and-bolts-or-get-me-a-laser/</link>
		<comments>http://www.declan.net/2012/01/21/rdf-nuts-and-bolts-or-get-me-a-laser/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 17:52:24 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=1009</guid>
		<description><![CDATA[I&#8217;m obsessing about a talk I&#8217;m giving at one of my favorite conferences, code4lib.  My talk proposal is about how we deal with whatever metadata comes our way.  For those of you not inside my head at this moment, &#8220;we&#8221; is where I work, part of which is in developing software for and maintaining a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m obsessing about a talk I&#8217;m giving at one of my favorite conferences, code4lib.  My talk proposal is about how we deal with whatever metadata comes our way.  For those of you not inside my head at this moment, &#8220;we&#8221; is where I work, part of which is in developing software for and maintaining a Digital Asset Management System (DAMS).  A digit asset is just a computer file, or set of files &#8211; often a picture, sound file, PDF, or video &#8211; that you have some desire to promote beyond just sitting on one person&#8217;s computer, unmanaged.  We all have computer files coming out of our ears, but we know there are some that are more &#8220;valuable&#8221; than others that we&#8217;d like to give special treatment.  So we call them digital assets and get then moved into some sort of management system beyond the random file systems on our desktops.  This system is a DAMS.</p>
<p>I see a DAMS as a secure, reliable file system set up with good organization rules, and a goal of making the assets easy to find.  Here are some of the rules I like to see followed:</p>
<p>Good Organization</p>
<ul>
<li>Describe the assets as thoroughly as possible and/or practicable.  This is your metadata.</li>
<li>Save this metadata and keep it associated with the assets.</li>
<li>Keep the metadata in a system that is flexible enough to be able to accomodate attributes that you didn&#8217;t know about when you started &#8211; people change their minds about what they want all the time.  <strong>We chose <a href="http://www.w3.org/TR/rdf-concepts/">RDF</a> for this and this is what my talk will be about.</strong></li>
<li>Create unique identifiers for the assets.  We chose the <a href="https://confluence.ucop.edu/display/Curation/ARK">ARK</a> spec for this.</li>
</ul>
<p>Reliability</p>
<ul>
<li>Store the assets as simply as possible &#8211; don&#8217;t create a new file system because no one is going to understand it 30 years from now.  We chose the <a href="https://confluence.ucop.edu/download/attachments/14254128/PairtreeSpec.pdf?version=2&amp;modificationDate=1295552323000">Pairtree</a> spec for this.</li>
<li>Back your assets up &#8211; think like an IT person and have a data lifecycle plan.</li>
<li>Preserve your assets and metadata &#8211; think like a Librarian/Archivist and store the assets in at least three, geographically separated places.  We use <a href="https://chronopolis.sdsc.edu/">Chronopolis</a> for this.</li>
<li>Export your metadata to the file system on a regular basis &#8211; this way the metadata becomes a digital asset/computer file too.</li>
</ul>
<p>Discoverability</p>
<ul>
<li>Put all that lovely metadata into a full text search index.  We use <a href="http://lucene.apache.org/solr/">solr</a> for this.</li>
<li>Tie all of the metadata to the unique identifier for the assets.</li>
</ul>
<p>&nbsp;</p>
<p>As I noted above, I&#8217;m only talking about RDF and metadata at code4lib.  What I&#8217;m obsessing about is that the talk is only 20 minutes.  I usually talk about our DAMS in about an hour, and I&#8217;m only getting warmed up in the first 20 minutes.  So I&#8217;ve got to empty my head of all this other DAMS stuff and laser down on just the RDF and metadata part.</p>
<p>We didn&#8217;t choose RDF because of the newish Linked Open Data (LOD) movement. Our (now retired) architect, Chris Frymann, was aware of the possibility but this was nearly ten year ago and LOD was barely a twinkle on the horizon.  Previous to this job, I had been working in industry for years, so this approach looked silly and academic.  Once Chris had me drink the RDF Kool-Aid, we envisioned a system that embraced flexibility from the start.</p>
<p>RDF is so simple and so terrifyingly different from the fixed database world that I was used to.  Instead of a well defined table, or tables, we had millions of triples.  We didn&#8217;t even have a triple store, just three columns in an SQL database.</p>
<p>What is wonderful about this approach was that each triple is somewhat self documenting.  A triple is made up of a Subject, a Predicate, and an Object:</p>
<p>&nbsp;</p>
<p><img class="alignnone" src="http://www.emeraldinsight.com/content_images/fig/2380240207001.png" alt="RDF Triple" width="488" height="113" /></p>
<p>&nbsp;</p>
<p>We use our asset&#8217;s unique identifier, the ARK, as our Subject.  Now we needed to describe the assets with their metadata &#8211; so we started creating Predicates that could hold types of metadata.  Three years later&#8230;. no really.  This was probably one of the hardest things to do, and I&#8217;m not sure we&#8217;ll ever stop doing it.  Some of our original assets had MARC records, and there were ways to convert MARC to RDF.  Lots of deep discussions among metadata librarians, asset owner librarians, and the tech folks came to the conclusion that we wanted to cast our metadata into specific namespaces, namely MODS, PREMIS, and MIX.  This was way beyond the Dublin Core defaults that other products were using, but we knew RDF was flexible enough to accomodate just about anything, so we just did it.</p>
<p>Guided by the head of our Metadata Analysis and Specification Unit (<a href="http://tpot.ucsd.edu/ucsdlibraries/masu/index.html">MASU</a> - lots of great detail at that link), Brad Westbrook, we started specing out what the metadata needs were for each asset.  Ok, that&#8217;s a lie&#8230; We did it per &#8220;collection&#8221; which was how we actually received assets from the librarians.  Our DAMS works at the asset level, but our librarians normally think at the collection level.  This was just another layer of translation that the MASU group stepped up to play a liaison role in getting the assets ingested.  Over time, this became a workflow where:</p>
<ol>
<li>Collections are identified/approved for ingestion into the DAMS.  (The project management and institutional buy in on this process is another talk!)</li>
<li>MASU creates an Assembly Plan that maps the assets into collections and specifies what namespaces the metadata pieces are placed in and hand it off to IT Development</li>
<li>IT Development creates mapping scripts from what the Assembly Plan calls for into RDF.  This is done in XSL.</li>
<li>IT Development ingests the assets into the storage system and parses the metadata into RDF in the triple store.</li>
<li>Profit.</li>
</ol>
<p>Ok, someone tell me how to get all that into 20 minutes&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   The Assemble Plan alone is an intense spreadsheet and text document that explains what is needed.  Then the translation scripts are another challenge to present without everyone going cross eyed.  Not to mention this thing of beauty!</p>
<p><img class="alignnone" src="http://dl.dropbox.com/u/6923768/Work/DAMS%20object%20rdf%20graph.png" alt="DAMS RDF Graph" width="500" height="1000" /></p>
<p>That&#8217;s all of the metadata and relationships of one asset.  Maybe I&#8217;ll just put that on the screen and take questions for 20 minutes&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2012/01/21/rdf-nuts-and-bolts-or-get-me-a-laser/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Missing/Stolen/Returned iPad Saga</title>
		<link>http://www.declan.net/2012/01/10/the-missingstolenreturned-ipad-saga/</link>
		<comments>http://www.declan.net/2012/01/10/the-missingstolenreturned-ipad-saga/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 05:02:17 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Declan]]></category>
		<category><![CDATA[San Diego]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Craigslist]]></category>
		<category><![CDATA[find my ipad]]></category>
		<category><![CDATA[find my iphone]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[recovery]]></category>
		<category><![CDATA[theft]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=991</guid>
		<description><![CDATA[Saturday 12/31/11 So, I have an iPad &#8211; 64G, 3G, ATT.  It&#8217;s a work device that I use all the time, especially for travel and in the gym so I have something to distract me from 40 minutes of hell on the elliptical.  Over the holiday break, I committed to getting into the gym every [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Saturday 12/31/11</strong></p>
<p>So, I have an iPad &#8211; 64G, 3G, ATT.  It&#8217;s a work device that I use all the time, especially for travel and in the gym so I have something to distract me from 40 minutes of hell on the elliptical.  Over the holiday break, I committed to getting into the gym every other day.  Our YMCA was open until 4p on New Year&#8217;s Eve, and I was sweating my fat butt off right up until the place closed.  I took a quick stop in the men&#8217;s room, and hustled out the door as they were closing up.</p>
<p><strong>Sunday 1/1/12</strong></p>
<p>It was later on the next day that I realized that I couldn&#8217;t find my iPad.  I looked in all the usual places, scoured the house and car, and tried out the &#8220;Find My iPad&#8221; app on icloud.  Once it didn&#8217;t show up, I realized that I must have left it in the men&#8217;s room at the Y!    Well, the Y was closed all day, so I left voicemail there and told myself to get to bed early so I could hit their door at the 5:30am opening on 1/2.  I also changed all my passwords, and deactivated the device from all the important services.</p>
<p><strong>Monday 1/2/12</strong></p>
<p>I actually went to bed at 1am (damn Skyrim), but was up and out the door at 5:20a and at the Y at 5:30a.  My buddy Damon was also just pulling up for a very early swim class, because he is insane.</p>
<p>We walked in and I asked at the front desk if the iPad had been turned in, but nope.  I wasn&#8217;t surprised, as they&#8217;d been closed up solid since I left it, so I walked over to check the men&#8217;s room.  Uh oh, no iPad&#8230;  I went back to the front desk and I filled out a slip saying what I&#8217;d lost and the nice young lady said they&#8217;d talk to more staff as they came in later.  In fact it might take until tomorrow as there were people still out on the the holiday break.  I was upset, but mostly at myself for leaving it behind. I kept trying the &#8220;Find My iPad&#8221; app, but nothing.  I saw there was a way to send a message to the iPad, so I put my phone number in there.  I also noticed a switch that would send me an email when it was found &#8211; so I hit that too.  I printed some LOST IPAD signs, and went back and stuck them up around the Y.  Worried, but feeling like I&#8217;d done all I could, I went about my day, keeping my eye on my email and occasionally trying the app again.</p>
<p>Then at 9:29p:</p>
<p><a href="http://www.declan.net/wp-content/uploads/2012/01/Screen-shot-2012-01-08-at-11.40.28-AM.png"><img class="alignnone  wp-image-996" title="Screen shot 2012-01-08 at 11.40.28 AM" src="http://www.declan.net/wp-content/uploads/2012/01/Screen-shot-2012-01-08-at-11.40.28-AM.png" alt="" width="675" height="368" /></a></p>
<p>Woohoo!  Someone at the Y found it and turned it on, right?!?  I ran to the computer and hit the location link, expecting to see a map of my neighborhood and the Y.  Instead, the device is showing up about 24.4 miles to the south, in a town called El Cajon!</p>
<p>I have a screen grab of the map with the green dot locating the iPad right on a specific address, but I&#8217;m not sure of I should post that.  I&#8217;ll get into that more later.  Basically, I KNEW where my iPad was, and it was nowhere NEAR the place I&#8217;d lost it.  Suddenly I had a theft situation rather than a dummy-lost-his-iPad situation.  So I did what a normal person would do and called the police.</p>
<p>I called the San Diego Police non-emergency line and explained the story so far to what sounded like a very overworked lady.  She asked if there was a police report, and I said no because I just now discovered that it was stolen.  She directed me to a web site to fill out a form to get the police report started.  I got a little panicked and said &#8220;but I can see it now!  Why can&#8217;t we go get it?!&#8221; to which I got more of a push toward the web site to fill out a report.  I&#8217;m sure those of you who know I run an IT shop and highly promote a central ticketing system are just laughing your heads off at this delay&#8230; but, to my mind, time was of the essence!  I pressed harder and she said she could give me the El Cajon Police Dispatch number, but wasn&#8217;t sure what they might do for me.</p>
<p>So I called them and they listened to the story, then asked for a police report.  Le Sigh &#8211; I don&#8217;t have one because&#8230; blah blah &#8211; go fill one out and call us back.  Ok, back to the web site, filled it out, grumbled about UI design, got the confirmation email and number, and called back El Cajon.  They said come on down and we&#8217;ll have a squad car meet you by the address and do a &#8220;Peace Call.&#8221;  It&#8217;s 10:30p by now, and I&#8217;m all amped up from the situation, so Elaine says she&#8217;s going with me.  We hop in the car and head south for the 20-30 minute drive.</p>
<p>On the drive, Elaine has the &#8220;Find My iPad&#8221; app going on my iPhone, but it goes red, meaning that the device is no longer on.  We&#8217;re committed tho, so we keep going &#8211; at or below the speed limit, of course.  We get to the arranged meeting spot at 11p, on the same block as the address that showed up on my map, and wait.  In a little bit of a sketchy looking place.  Surrounded by suspected iPad stealers!  At about 11:40p I call back to dispatch and they say no one is available, but they know we&#8217;re waiting.  About five minutes later, 2 squad cars pull up and I get to tell the story again.</p>
<p>The cops were great, and offered to go knocking on doors, but that address is a 50 unit apartment complex.  Given that GPS can be +/- 25m, the dot on my map could encompass 6-8 apartment units in the 2 story building.  Added to that, the building is &#8220;known cop-unfriendly&#8221; and not a nice place.  As soon as they started asking questions, everyone would know about it, and I&#8217;d probably never see my device again.  And since the device was no longer responding to the app, I couldn&#8217;t make it sound off to make it easier to find.</p>
<p>At this point, I was frustrated to know that I was within a block of my iPad, but could do nothing about it.  The cops offered a few suggestions, such as sending a message to the unit offering a reward, and to watch Craigslist, &#8211; something I should have thought of myself!  They were both adamant that I NOT meet with anyone from Craigslist without the police.  They told me of someone who&#8217;d been killed in San Diego not long ago after confronting a Craigslist person.  They also suggested sharing the address with the people at the Y to see if an employee or member matched.  We drove back home, defeated and deflated.  I sent a lock command to the device, setting a password and with the reward message,  then we headed to bed.</p>
<p><strong>Tuesday 1/3/12</strong></p>
<p>On the way to work on Tuesday, we stopped into the Y and talked with a manager, telling her the whole story.  She happened to also be the HR person and said they had no one working in El Cajon, but that they contracted out their cleaning and they&#8217;d follow up with them.  I then headed into work and one of my guys suggested that I send a wipe command from our email server.  Even though I&#8217;d changed my email password, I thought it wouldn&#8217;t be a bad idea to also wipe my work email from it, so I did.  More on that later&#8230;</p>
<p><strong>Wednesday 1/4/12</strong></p>
<p>In the meantime, I&#8217;d been watching Craigslist, and got a match!  64G iPad, 3G, ATT!  So I set up a fake gmail account and mailed the Craigslist email address.  I also mailed one of the cops for advice about how to deal with the mails I would send, and he got back to me with some thoughts.  I got a response back soon after I went to bed from the Craigslist person, asking how close I was to his asking price, and if I could come get it now.</p>
<p>The facilities manager at the Y called me on Wednesday, very upset about the whole situation, and said he was following up with the cleaning people.  I later ran into him when I was working out and he was very nice and concerned that the cleaning company hadn&#8217;t gotten back to him.  I could really tell he cared personally and as a representative of the Y.</p>
<p><strong>Thursday 1/5/12</strong></p>
<p>The Craigslist response back was from a hotmail account with a person&#8217;s name, so I passed that name on to the cops in email and with a call to the Y facilities manager.  It was probably a made up account, but it was worth trying.</p>
<p>I had to run out of town for a day for work, so I didn&#8217;t reply back to the Craigslist person until tonight, asking for more details about the iPad he was selling &#8211; as advised by the cop.   I got back a very short reply saying &#8220;Too bad, I sold it for $200&#8243; and that was it.  I mailed back thanking him for the info, thinking that I might be able to squeeze more info later by being nice.</p>
<p><strong>Friday 1/6/12</strong></p>
<p>So, now we&#8217;re up to Friday, and nothing seems to be happening.</p>
<p><strong>Saturday 1/7/12</strong></p>
<p>On Saturday morning the phone rings at 9am.  It was a lady from the Y asking if I&#8217;d lost an iPad, because they had it at the front desk!  I said &#8220;very interesting!&#8221; and that I&#8217;d be in to pick it up.  I went right over and it was my iPad, grey cover and all!  I asked the ladies at the desk if they knew more about where it came from.  One of them said that she&#8217;d closed the night before and that it wasn&#8217;t there, but when she&#8217;d opened this morning, there it was on the front desk!</p>
<p>The device was all out of power, so I got home and plugged it in, trying hard not to touch it too much because I had some thoughts of trying to lift the fingerprints I&#8217;d see on it (this is a lot harder than you&#8217;d think&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ).  I&#8217;d fully expected the device to be wiped to factory default &#8211; especially if it was being sold off &#8211; but it popped up with my background screen (which includes my name) and all my apps installed.  It also started syncing with my Mac over wifi, so I left it alone to charge up and get caught up.  I was a little worried that maybe it had some phone home software installed or something, then I remembered that I&#8217;m not that interesting.</p>
<p>I did not have a password on the device when I lost it, mainly because it&#8217;s a pain in the neck to use it all the time, and because my wife and kid use the device sometimes and I didn&#8217;t want to keep reminding them of the password.  I thought I&#8217;d dealt with this by sending the lock and password command when it was gone, but I was surprised that the device asked for no password when I turned it on.  In fact, I was able to play around with it for about 20 minutes with no problem.  I also noticed that my reward message wasn&#8217;t on it.  It wasn&#8217;t until I ran the &#8220;Find My iPad&#8221; app again from icloud that the lock came on and the message appeared.  I don&#8217;t know why the lock didn&#8217;t happen as soon as the device got power.</p>
<p>Another lovely feature was that work email wipe command I&#8217;d sent.  I assumed that it would wipe my email &#8211; but nope, it wiped the whole device!  The iPad had been prompting me for my email password, since I&#8217;d changed it days ago.  I went ahead and put it in, looked away, and when I looked back, the device was wiped and asking for a setup language!  So, no worries about spy software, but that was a surprise.  I ran a restore from my computer and it all came back in about 30 mins.</p>
<p><strong>Sunday 1/8/12</strong></p>
<p>Imagine my surprise this morning when it was wiped again!  I guess I needed to totally delete the device from my work email server&#8217;s awareness for it to stop trying to wipe it.  I&#8217;m afraid to put my work email password into it now tho!  ;)</p>
<p>By now the device is in full working order and I&#8217;m back on track!</p>
<p><strong>Monday 1/9/12</strong></p>
<p>But I&#8217;m left with a LOT of questions!  I called and left a voicemail with the Y facilites manager.  He called back, unaware that I&#8217;d gotten it back!  He was thrilled and I asked, &#8220;What did you do?!?&#8221;  He said he still hadn&#8217;t heard back from the cleaning company, but he was even more interested in talking to them now.  I am dying to hear what he learns!</p>
<p><strong>Tuesday 1/10/12</strong></p>
<p>I&#8217;m gonna go ahead an publish, even though there are a lot of questions unanswered.  I&#8217;ll add more later as I know it.  I&#8217;ll also tack some other lessons learned on here, and more as I think of them:</p>
<ul>
<li>I should have put a password on the device.  Even if it&#8217;s a pain in the neck.  I could have reduced the stress of the situation by knowing that the data were safe.</li>
<li>I thought that having a map with a green dot on an address would ensure I got my iPad back pronto.  Thank goodness, cops follow the Constitution and won&#8217;t kick doors in based on a map I printed up.  I REALLY wanted them to, but it would have been dumb.  Now, had the device been active and I could have made it make a sound, the cops would have done a lot more.</li>
<li>Fill out a police report as soon as you can.  No one will do anything until you have that magic report number.  I learned during filling it out that I could have filed under &#8220;Lost Property&#8221; when I knew the device was missing.  I didn&#8217;t have to wait until I thought it was a theft.</li>
<li>Don&#8217;t hold your breath waiting for the cops to do anything.  I have never heard from the San Diego police.  I just filled out a web form and it went into a black hole.</li>
<li>The San Diego area has a lot of police forces.  El Cajon is a totally different jurisdiction.  I remarked to the cops I met how it seemed that they cared a ton more than the police closer to my house.  They said that while El Cajon is certainly underfunded for police (hence my 45 minute wait in the parking lot), SD City is decimated.</li>
<li>Wipe means wipe!  Well at least from the Outlook web client.  And don&#8217;t forget to take the device out of the known list and re-add it later, or you&#8217;ll get wiped each time the devices talk.</li>
<li>Customize your device if you can.  I had a known dent on mine, but think about the Craigslist picture and how you could help convince the cops that it&#8217;s your device that&#8217;s listed.  No, don&#8217;t dent the device, work people&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  But silly stickers don&#8217;t hurt.</li>
<li>The folks at my Y are great and take member concerns very seriously.  Well, except for widening the entrance turnstile for my fat butt!  ;)</li>
<li>Tweeting vague references to a big story you are going to write up really aggravates people.  Do it often!  ;)</li>
</ul>
<p>&nbsp;</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=5dfe7e44-038f-4eb9-8f96-02635bda5f49" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2012/01/10/the-missingstolenreturned-ipad-saga/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LA River Ride Century</title>
		<link>http://www.declan.net/2010/06/07/la-river-ride-century/</link>
		<comments>http://www.declan.net/2010/06/07/la-river-ride-century/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 01:33:57 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Biking]]></category>
		<category><![CDATA[Declan]]></category>
		<category><![CDATA[Friends]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=852</guid>
		<description><![CDATA[EDIT: Awesome! Kitchen just posted the Garmin log: http://connect.garmin.com/activity/36057011 Time: 07:22:09 Moving Time: 06:02:09 Elapsed Time: 07:22:11 Avg Speed: 12.9 mph Avg Moving Speed: 15.8 mph Max Speed: 32.8 mph I survived my second century ride, the LA River Ride! That&#8217;s 100 miles on a bike&#8230; and I&#8217;m feeling all of them today I really [...]]]></description>
			<content:encoded><![CDATA[<p>EDIT:  Awesome!  Kitchen just posted the Garmin log:</p>
<p><a href="http://connect.garmin.com/activity/36057011">http://connect.garmin.com/activity/36057011</a></p>
<p>Time:                     07:22:09<br />
Moving Time:           06:02:09<br />
Elapsed Time:          07:22:11<br />
Avg Speed:             12.9 mph<br />
Avg Moving Speed:   15.8 mph<br />
Max Speed: 	     32.8 mph</p>
<p>I survived my second century ride, the LA River Ride!  </p>
<p><img src="http://la-bike.org/events/images-rr-10/river-ride-logo-500-4.gif" alt="" /></p>
<p>That&#8217;s 100 miles on a bike&#8230; and I&#8217;m feeling all of them today <img src='http://www.declan.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I really should have taken the day off of work, but I didn&#8217;t know I was riding before my Monday had already filled up with meetings.  I was going to pass on this ride until I remembered that my buddy Tom lives right next to Griffith Park in LA where the ride begins.  Tom and Jen just had a new arrival 7 months ago, Charlie:</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4679075031/" title="Mobile Photo Jun 7, 2010 9 55 32 AM" class="flickr-image alignnone"><img src="http://farm5.static.flickr.com/4017/4679075031_1a9d7b75ec.jpg" alt="Mobile Photo Jun 7, 2010 9 55 32 AM" class=""  /></a></p>
<p>Charlie&#8217;s the pudgy one with short hair&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   He&#8217;s a delightful kid who was a lot of fun to play with.  So&#8217;s Tom!  Sorry, Jen, I didn&#8217;t get a good picture of you&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyway, they let me crash on their couch on Saturday night after another buddy, Terri, cooked us a wonderful pasta dinner.</p>
<p>Sunday came too soon and I was up at 5am with cool SMSs from work friends wishing me well.  I got outside and started putting the bike together:<br />
<a href="http://www.flickr.com/photos/bigdpix/4678366003/" title="IMG_0028" class="flickr-image alignnone"><img src="http://farm2.static.flickr.com/1286/4678366003_2e078a89c3.jpg" alt="IMG_0028" class=""  /></a></p>
<p>then waited for Kitchen to show up.  Of course, he set his alarm wrong and was way late, so I biked the 2 miles over to the park alone to get my registration materials.</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4678998698/" title="IMG_0032" class="flickr-image alignnone"><img src="http://farm5.static.flickr.com/4060/4678998698_3a5ed96ec7.jpg" alt="IMG_0032" class=""  /></a></p>
<p>The ride was well organized and I had my bracelet and cue sheet within minutes.  On the ride over, I&#8217;d noticed that my bike computer was dead, so I borrowed a way-too-big screw driver and got it open in about 20 minutes.  It all worked when I shifted the battery around, then promptly died again when I snapped it back into its holder.  Damn computers&#8230; Kitchen has a fancy pants Garmin bike computer, so I&#8217;m counting on him to give me the route and all the stats.  Well, I should say he SHOULD have one, but he left it in his car, so when he showed up at 7:30, we picked it up as we started the ride:</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4678999484/" title="IMG_0034" class="flickr-image alignnone"><img src="http://farm5.static.flickr.com/4053/4678999484_dd04d8a91b.jpg" alt="IMG_0034" class=""  /></a></p>
<p>Then we were off on this almost totally flat 100 mile ride!  Except they forgot to tell us that the first 4 miles was a climb up the big hill in Griffith Park.  That got the heart pumping, especially Kitchen&#8217;s as he was riding his brand new fixed gear bike!  He had to zig zag up the hill, but he make it!  Throughout the ride, people were very impressed with his bike and the effort.  They didn&#8217;t know he had a motor hidden in the tubes&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   not.</p>
<p>Once we were through the park, we got on the river path:</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4678999770/" title="IMG_0036" class="flickr-image alignnone"><img src="http://farm5.static.flickr.com/4069/4678999770_a149172769.jpg" alt="IMG_0036" class=""  /></a></p>
<p>The LA River is a concrete bank with water running at the bottom.  It runs for miles and makes for a great bike path, but man, it&#8217;s kinda ugly.  In some places, enough silt has backed up to support trees and bushes.  I was surprised how much bird life I saw.  Sand pipers, some kind of white hawk, kestrels, and ducks.  It might be an interesting place to go up and photograph.  I&#8217;ll have to go learn about why it was built the way it was.  At the very least, many parts of it are a lesson in why to think about aesthetics when you design a city.</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4679705584/" title="Mobile Photo Jun 7, 2010 9 53 56 AM by BigD, on Flickr"><img src="http://farm5.static.flickr.com/4072/4679705584_334ceefa7a.jpg" width="375" height="500" alt="Mobile Photo Jun 7, 2010 9 53 56 AM" /></a></p>
<p>There are a lot of scary creatures in there too:</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4679705534/" title="Mobile Photo Jun 7, 2010 9 53 43 AM by BigD, on Flickr"><img src="http://farm5.static.flickr.com/4070/4679705534_3b9966ea33.jpg" width="375" height="500" alt="Mobile Photo Jun 7, 2010 9 53 43 AM" /></a></p>
<p>I liked these bridges:</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4679010068/" title="IMG_0068 by BigD, on Flickr"><img src="http://farm5.static.flickr.com/4027/4679010068_21f101efd7.jpg" width="500" height="375" alt="IMG_0068" /></a></p>
<p>As a spoiled San Diegan, I mostly find LA pretty ugly:</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4678371895/" title="IMG_0044 by BigD, on Flickr"><img src="http://farm5.static.flickr.com/4047/4678371895_22cb6b2817.jpg" width="500" height="375" alt="IMG_0044" /></a></p>
<p><a href="http://www.flickr.com/photos/bigdpix/4679003408/" title="IMG_0043 by BigD, on Flickr"><img src="http://farm5.static.flickr.com/4025/4679003408_11ccd37aa1.jpg" width="500" height="375" alt="IMG_0043" /></a></p>
<p><a href="http://www.flickr.com/photos/bigdpix/4679074607/" title="Mobile Photo Jun 7, 2010 9 53 15 AM by BigD, on Flickr"><img src="http://farm5.static.flickr.com/4057/4679074607_5d7b39db70.jpg" width="500" height="375" alt="Mobile Photo Jun 7, 2010 9 53 15 AM" /></a></p>
<p>but Seal Beach was pretty nice:</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4679008692/" title="IMG_0059 by BigD, on Flickr"><img src="http://farm2.static.flickr.com/1293/4679008692_3954106457.jpg" width="500" height="375" alt="IMG_0059" /></a></p>
<p>Long Beach was the halfway point:</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4679006130/" title="IMG_0054 by BigD, on Flickr"><img src="http://farm5.static.flickr.com/4032/4679006130_04dfc52997.jpg" width="500" height="375" alt="IMG_0054" /></a></p>
<p>A mess of bikes:</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4678373515/" title="IMG_0052 by BigD, on Flickr"><img src="http://farm5.static.flickr.com/4069/4678373515_01cabf556c.jpg" width="500" height="375" alt="IMG_0052" /></a></p>
<p>Friggin&#8217; hipster:</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4679010486/" title="IMG_0077 by BigD, on Flickr"><img src="http://farm5.static.flickr.com/4007/4679010486_a080f7618c.jpg" width="375" height="500" alt="IMG_0077" /></a></p>
<p>More riding:</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4679705584/" title="Mobile Photo Jun 7, 2010 9 53 56 AM by BigD, on Flickr"><img src="http://farm5.static.flickr.com/4072/4679705584_334ceefa7a.jpg" width="375" height="500" alt="Mobile Photo Jun 7, 2010 9 53 56 AM" /></a></p>
<p>More posing:</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4678377557/" title="IMG_0064 by BigD, on Flickr"><img src="http://farm5.static.flickr.com/4024/4678377557_8f5d8b9a71.jpg" width="375" height="500" alt="IMG_0064" /></a></p>
<p>Then finally, after seven hours, it&#8217;s over!!!</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4679705266/" title="Mobile Photo Jun 7, 2010 9 52 49 AM by BigD, on Flickr"><img src="http://farm5.static.flickr.com/4007/4679705266_aca4293b75.jpg" width="500" height="375" alt="Mobile Photo Jun 7, 2010 9 52 49 AM" /></a></p>
<p>Time to grab the tshirt and go find a shower!</p>
<p><a href="http://www.flickr.com/photos/bigdpix/4679705146/" title="Mobile Photo Jun 7, 2010 9 52 35 AM by BigD, on Flickr"><img src="http://farm5.static.flickr.com/4037/4679705146_869dc26a39.jpg" width="375" height="500" alt="Mobile Photo Jun 7, 2010 9 52 35 AM" /></a></p>
<p>I got some great support on Twitter and Facebook!  Thanks for that!</p>
<p><simpleflickr set="72157624223565858" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2010/06/07/la-river-ride-century/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Yelp Review for West Coast Tavern</title>
		<link>http://www.declan.net/2010/05/31/yelp-review-for-west-coast-tavern/</link>
		<comments>http://www.declan.net/2010/05/31/yelp-review-for-west-coast-tavern/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 03:40:22 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Declan]]></category>
		<category><![CDATA[Elaine]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[San Diego]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Yelp]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=829</guid>
		<description><![CDATA[Elaine and I had dinner out at West Coast Tavern and liked it so much that I wrote a Yelp review. Click here to read it.]]></description>
			<content:encoded><![CDATA[<p>Elaine and I had dinner out at West Coast Tavern and liked it so much that I wrote a <a class="zem_slink" href="http://yelp.com" title="Yelp" rel="homepage">Yelp</a> review.</p>
<p><a href="http://www.yelp.com/biz/west-coast-tavern-san-diego#hrid:Qm2Y5knMdc0HZgWp3VV75A">Click here to read it.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2010/05/31/yelp-review-for-west-coast-tavern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-10-11</title>
		<link>http://www.declan.net/2009/10/11/twitter-weekly-updates-for-2009-10-11/</link>
		<comments>http://www.declan.net/2009/10/11/twitter-weekly-updates-for-2009-10-11/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 15:57:00 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/2009/10/11/twitter-weekly-updates-for-2009-10-11/</guid>
		<description><![CDATA[Woo hoo! Back in data coverage that isn&#39;t $15/M! Hello Chicago. For about 45 mins # I&#39;m home. http://twitpic.com/kbigf # Ok, back on Twitter after a week. What&#39;d I miss? # Full moon right in the eyes for a wake up call. Good thing I&#39;m still on Atlantic time. http://twitpic.com/kd3ld # i&#39;m ready for lunch. [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Woo hoo! Back in data coverage that isn&#39;t $15/M! Hello Chicago. For about 45 mins <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/4608903650" class="aktt_tweet_time">#</a></li>
<li>I&#39;m home.  <a href="http://twitpic.com/kbigf" rel="nofollow">http://twitpic.com/kbigf</a> <a href="http://twitter.com/declan/statuses/4617101174" class="aktt_tweet_time">#</a></li>
<li>Ok, back on Twitter after a week. What&#39;d I miss? <a href="http://twitter.com/declan/statuses/4621942291" class="aktt_tweet_time">#</a></li>
<li>Full moon right in the eyes for a wake up call. Good thing I&#39;m still on Atlantic time.  <a href="http://twitpic.com/kd3ld" rel="nofollow">http://twitpic.com/kd3ld</a> <a href="http://twitter.com/declan/statuses/4627816374" class="aktt_tweet_time">#</a></li>
<li>i&#39;m ready for lunch.  my stomach is still on Atlantic time <a href="http://twitter.com/declan/statuses/4631977512" class="aktt_tweet_time">#</a></li>
<li>back in the USA and hankering for froyo.  3p at UCSD YogurtWorld? <a href="http://twitter.com/declan/statuses/4638149023" class="aktt_tweet_time">#</a></li>
<li>one pic from Prince Edward Island, Argyle Shore then I pass out.  Atlantic time kicking my butt <a href="http://bit.ly/4mtbFv" rel="nofollow">http://bit.ly/4mtbFv</a> <a href="http://twitter.com/declan/statuses/4647782473" class="aktt_tweet_time">#</a></li>
<li>first batch of Charlottetown, Prince Edward Island, Canada pix are up. some pretty fall colors. <a href="http://bit.ly/3xu8aw" rel="nofollow">http://bit.ly/3xu8aw</a> #<a href="http://search.twitter.com/search?q=%23access2009pei" class="aktt_hashtag">access2009pei</a> <a href="http://twitter.com/declan/statuses/4658078242" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/sdbeerweek" class="aktt_username">sdbeerweek</a> Men&#39;s Journal picks San Diego as best beer city! <a href="http://bit.ly/Byurh" rel="nofollow">http://bit.ly/Byurh</a> / we really have 33 breweries?!? someone charter a bus! <a href="http://twitter.com/declan/statuses/4666764810" class="aktt_tweet_time">#</a></li>
<li>Argyle Beach, Price Edward Island, Canada pix are up <a href="http://www.flickr.com/photos/bigdpix/sets/72157622408809685/" rel="nofollow">http://www.flickr.com/photos/bigdpix/sets/72157622408809685/</a> #<a href="http://search.twitter.com/search?q=%23access2009pei" class="aktt_hashtag">access2009pei</a> <a href="http://twitter.com/declan/statuses/4673956110" class="aktt_tweet_time">#</a></li>
<li>RT @doctorow: RT @<a href="http://twitter.com/timoreilly" class="aktt_username">timoreilly</a> When the White House retweets Cory Doctorow, you know something unusual has happened <a href="http://bit.ly/JJV2A" rel="nofollow">http://bit.ly/JJV2A</a> #<a href="http://search.twitter.com/search?q=%23gov20" class="aktt_hashtag">gov20</a> <a href="http://twitter.com/declan/statuses/4683315657" class="aktt_tweet_time">#</a></li>
<li>Argyle Beach, Price Edward Island, Canada pix are up <a href="http://bit.ly/uB3L0" rel="nofollow">http://bit.ly/uB3L0</a> #<a href="http://search.twitter.com/search?q=%23access2009pei" class="aktt_hashtag">access2009pei</a> <a href="http://twitter.com/declan/statuses/4685704644" class="aktt_tweet_time">#</a></li>
<li>RT @bjschone: There&#39;s a secret code hidden in this image: <a href="http://is.gd/42Xqr" rel="nofollow">http://is.gd/42Xqr</a>. Any ideas??? Thanks in advance. #<a href="http://search.twitter.com/search?q=%23fb" class="aktt_hashtag">fb</a> <a href="http://twitter.com/declan/statuses/4689157863" class="aktt_tweet_time">#</a></li>
<li>RT @access2009pei: Some of the recorded sessions are available for #<a href="http://search.twitter.com/search?q=%23access2009pei" class="aktt_hashtag">access2009pei</a>, <a href="http://vre2.upei.ca/access2009/taxonomy/term/41" rel="nofollow">http://vre2.upei.ca/access2009/taxonomy/term/41</a>. <a href="http://twitter.com/declan/statuses/4692574957" class="aktt_tweet_time">#</a></li>
<li>tweetdeck is missing a lot of tweets today&#8230; <a href="http://twitter.com/declan/statuses/4694487377" class="aktt_tweet_time">#</a></li>
<li>Argyle Beach, Price Edward Island, Canada pix are up <a href="http://bit.ly/uB3L0" rel="nofollow">http://bit.ly/uB3L0</a> <a href="http://twitter.com/declan/statuses/4699240041" class="aktt_tweet_time">#</a></li>
<li>Who took the ARPA NET license plate picture? <a href="http://twitter.com/declan/statuses/4721692295" class="aktt_tweet_time">#</a></li>
<li>good news and bad news all at once: @<a href="http://twitter.com/yougurtworldmm" class="aktt_username">yougurtworldmm</a> (mira mesa) has $.29/oz froyo.  good for wallet, bad for big booty. <a href="http://twitter.com/declan/statuses/4744219713" class="aktt_tweet_time">#</a></li>
<li>RT @mbklein: Delayed! Anyone I know who happens to be at San Francisco Int&#39;l airport, send me a tweet/email. I&#39;m here till 7:40pm. <a href="http://twitter.com/declan/statuses/4747053432" class="aktt_tweet_time">#</a></li>
<li>omg, black butte XXI is wondeful <a href="http://twitter.com/declan/statuses/4753181110" class="aktt_tweet_time">#</a></li>
<li>what&#39;s up at Alesmith today?  seeing lotsa foursquare checkins&#8230; <a href="http://twitter.com/declan/statuses/4772194352" class="aktt_tweet_time">#</a></li>
<li>Anticipaton @<a href="http://twitter.com/lostabbey" class="aktt_username">lostabbey</a> as we wait for saints &amp; sinners party! <a href="http://twitter.com/declan/statuses/4774901546" class="aktt_tweet_time">#</a></li>
<li>Here&#39;s a picture of what we&#39;re looking  forward to @<a href="http://twitter.com/lostabbey" class="aktt_username">lostabbey</a>  <a href="http://twitpic.com/l29cc" rel="nofollow">http://twitpic.com/l29cc</a> <a href="http://twitter.com/declan/statuses/4774940262" class="aktt_tweet_time">#</a></li>
<li>Omg pork belly!  Someone do the points. @<a href="http://twitter.com/lostabbey" class="aktt_username">lostabbey</a> <a href="http://twitpic.com/l2r8h" rel="nofollow">http://twitpic.com/l2r8h</a> <a href="http://twitter.com/declan/statuses/4777067445" class="aktt_tweet_time">#</a></li>
<li>I got the last of the red poppy. Shut UP! @bmljenny. Actually don&#39;t. <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitpic.com/l2suz" rel="nofollow">http://twitpic.com/l2suz</a> <a href="http://twitter.com/declan/statuses/4777249174" class="aktt_tweet_time">#</a></li>
<li>Gearing up for a long bike ride. <a href="http://twitter.com/declan/statuses/4784988695" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2009/10/11/twitter-weekly-updates-for-2009-10-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-10-04</title>
		<link>http://www.declan.net/2009/10/04/twitter-weekly-updates-for-2009-10-04/</link>
		<comments>http://www.declan.net/2009/10/04/twitter-weekly-updates-for-2009-10-04/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 15:57:00 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/2009/10/04/twitter-weekly-updates-for-2009-10-04/</guid>
		<description><![CDATA[It&#39;s gonna be a long day of travel. # I feel so dirty, skulking around ohare, looking for an AC fix. # four flights, packed airplanes, coughing passengers, but at least now i&#39;m in the land of the nice. # i&#39;m about to go all Ugly American on a Canadian Best Western that thinks it&#39;s [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>It&#39;s gonna be a long day of travel. <a href="http://twitter.com/declan/statuses/4440062865" class="aktt_tweet_time">#</a></li>
<li>I feel so dirty, skulking around ohare, looking for an AC fix. <a href="http://twitter.com/declan/statuses/4449318810" class="aktt_tweet_time">#</a></li>
<li>four flights, packed airplanes, coughing passengers, but at least now i&#39;m in the land of the nice. <a href="http://twitter.com/declan/statuses/4462156645" class="aktt_tweet_time">#</a></li>
<li>i&#39;m about to go all Ugly American on a Canadian Best Western that thinks it&#39;s ok to start hammering under my room at 7:30am (4:30am PST) ;( <a href="http://twitter.com/declan/statuses/4468455827" class="aktt_tweet_time">#</a></li>
<li>hanging in Charlottetown with @<a href="http://twitter.com/jsargis" class="aktt_username">jsargis</a> <a href="http://twitter.com/declan/statuses/4475008749" class="aktt_tweet_time">#</a></li>
<li>RT @nicmcc: Seems like more people are posting quotes for updates more than ever. <a href="http://twitter.com/declan/statuses/4476602154" class="aktt_tweet_time">#</a></li>
<li>at the Churchill Arms with @<a href="http://twitter.com/eosadler" class="aktt_username">eosadler</a> and calvin getting ready for trivia!  where&#39;s @alxp? <a href="http://twitter.com/declan/statuses/4483379810" class="aktt_tweet_time">#</a></li>
<li>Team #<a href="http://search.twitter.com/search?q=%23access2009pei" class="aktt_hashtag">access2009pei</a> took second place, and a free pitcher of beer, in the trivia contest!  @<a href="http://twitter.com/eosadler" class="aktt_username">eosadler</a>  and calvin kicked butt! <a href="http://twitter.com/declan/statuses/4486764510" class="aktt_tweet_time">#</a></li>
<li>got an sms to stay off the SD beaches.  Is Prince Edward Island far enough? <a href="http://twitter.com/declan/statuses/4487047778" class="aktt_tweet_time">#</a></li>
<li>bleh, can&#39;t sleep&#8230;. this 4 hr time difference is for the birds.  gonna feel it in the morning tho <a href="http://twitter.com/declan/statuses/4487655318" class="aktt_tweet_time">#</a></li>
<li>RT @tonyg: @<a href="http://twitter.com/declan" class="aktt_username">declan</a> well there&#39;s some sort of rat stew and rat hunt. It&#39;s practically Disneyland. <a href="http://twitter.com/declan/statuses/4488084528" class="aktt_tweet_time">#</a></li>
<li>i need to pretend to sleep.  want to be all pretty in the morning for @doctorow. <a href="http://twitter.com/declan/statuses/4488125286" class="aktt_tweet_time">#</a></li>
<li>man, i love cdn tv!  <a href="http://bit.ly/ZQVxU" rel="nofollow">http://bit.ly/ZQVxU</a> <a href="http://twitter.com/declan/statuses/4488159721" class="aktt_tweet_time">#</a></li>
<li>Synopsis: Eight recently broken-hearted women are brought to Camp Re-Vamp, where they learn to become the bravest, sexiest burlesque troupe. <a href="http://twitter.com/declan/statuses/4488203947" class="aktt_tweet_time">#</a></li>
<li>Hanging with @Doctorow. He&#39;s got a few feelings about copyright. <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   <a href="http://twitpic.com/jphfi" rel="nofollow">http://twitpic.com/jphfi</a> <a href="http://twitter.com/declan/statuses/4495651252" class="aktt_tweet_time">#</a></li>
<li>RT @pfanderson: RT @<a href="http://twitter.com/oodja" class="aktt_username">oodja</a> @<a href="http://twitter.com/Amazon" class="aktt_username">Amazon</a> forces LibraryThing to drop non-Amazon links from primary web pages. <a href="http://bit.ly/1BYXy" rel="nofollow">http://bit.ly/1BYXy</a> <a href="http://twitter.com/declan/statuses/4496300386" class="aktt_tweet_time">#</a></li>
<li>RT @ksclarke: RT @gluejar: we still need to invent the oyster. RT @ldodds:URIs: the grains of sand around which pearls form / oaister? <a href="http://twitter.com/declan/statuses/4498763951" class="aktt_tweet_time">#</a></li>
<li>some pix from #<a href="http://search.twitter.com/search?q=%23Access2009pei" class="aktt_hashtag">Access2009pei</a> in Price Edward Islands <a href="http://www.flickr.com/photos/bigdpix/sets/72157622364122855/" rel="nofollow">http://www.flickr.com/photos/bigdpix/sets/72157622364122855/</a> <a href="http://twitter.com/declan/statuses/4503928877" class="aktt_tweet_time">#</a></li>
<li>damn @<a href="http://twitter.com/TweetDeck" class="aktt_username">TweetDeck</a> is having url shortening issues <a href="http://twitter.com/declan/statuses/4503939668" class="aktt_tweet_time">#</a></li>
<li>some pix from #<a href="http://search.twitter.com/search?q=%23Access2009pei" class="aktt_hashtag">Access2009pei</a> in Price Edward Islands <a href="http://www.flickr.com/photos/bigdpix/sets/72157622364122855/" rel="nofollow">http://www.flickr.com/photos/bigdpix/sets/72157622364122855/</a> <a href="http://twitter.com/declan/statuses/4505963216" class="aktt_tweet_time">#</a></li>
<li>i&#39;m pretty impressed with Picasa&#8230; won&#39;t change from Aperture, but it&#39;s a great mobile photo manager. RAW support is great <a href="http://twitter.com/declan/statuses/4506747456" class="aktt_tweet_time">#</a></li>
<li>RT @jambina: lego challenge at #<a href="http://search.twitter.com/search?q=%23access2009pei" class="aktt_hashtag">access2009pei</a> &#8211; even has its own Ustream channel! <a href="http://vre2.upei.ca/access2009/lego" rel="nofollow">http://vre2.upei.ca/access2009/lego</a> <a href="http://twitter.com/declan/statuses/4522503139" class="aktt_tweet_time">#</a></li>
<li>RT @jambina: Fun swag at #<a href="http://search.twitter.com/search?q=%23access2009pei" class="aktt_hashtag">access2009pei</a> <a href="http://yfrog.com/0gespyj" rel="nofollow">http://yfrog.com/0gespyj</a> <a href="http://twitter.com/declan/statuses/4522640027" class="aktt_tweet_time">#</a></li>
<li>A bowl full of Lego shaped sugar. Not a good thing to put in front of me. access2009pei <a href="http://twitpic.com/jtmlr" rel="nofollow">http://twitpic.com/jtmlr</a> <a href="http://twitter.com/declan/statuses/4522789290" class="aktt_tweet_time">#</a></li>
<li>RT @access2009pei: What&#39;s the irc channel for #<a href="http://search.twitter.com/search?q=%23access2009pei" class="aktt_hashtag">access2009pei</a> / #<a href="http://search.twitter.com/search?q=%23code4lib" class="aktt_hashtag">code4lib</a> <a href="http://twitter.com/declan/statuses/4523717876" class="aktt_tweet_time">#</a></li>
<li>I don&#39;t this toy is as fun as the comic alludes  <a href="http://twitpic.com/jv277" rel="nofollow">http://twitpic.com/jv277</a> <a href="http://twitter.com/declan/statuses/4532365421" class="aktt_tweet_time">#</a></li>
<li>Talking head of Harnad at #<a href="http://search.twitter.com/search?q=%23access2009pei" class="aktt_hashtag">access2009pei</a>  <a href="http://twitpic.com/jv5p4" rel="nofollow">http://twitpic.com/jv5p4</a> <a href="http://twitter.com/declan/statuses/4532911420" class="aktt_tweet_time">#</a></li>
<li>more #<a href="http://search.twitter.com/search?q=%23access2009pei" class="aktt_hashtag">access2009pei</a> pix are up <a href="http://www.flickr.com/photos/bigdpix/sets/72157622375762627/" rel="nofollow">http://www.flickr.com/photos/bigdpix/sets/72157622375762627/</a> <a href="http://twitter.com/declan/statuses/4552069648" class="aktt_tweet_time">#</a></li>
<li>Well, it isn&#39;t a bucket of bacon, but it&#39;s close. #<a href="http://search.twitter.com/search?q=%23access2009pei" class="aktt_hashtag">access2009pei</a> <a href="http://twitpic.com/jya9p" rel="nofollow">http://twitpic.com/jya9p</a> <a href="http://twitter.com/declan/statuses/4552911471" class="aktt_tweet_time">#</a></li>
<li>Joy&#39;s Lego giraffe farm and my 2nd place trivia trophy #<a href="http://search.twitter.com/search?q=%23access2009pei" class="aktt_hashtag">access2009pei</a>  <a href="http://twitpic.com/jypdz" rel="nofollow">http://twitpic.com/jypdz</a> <a href="http://twitter.com/declan/statuses/4555971370" class="aktt_tweet_time">#</a></li>
<li>an #<a href="http://search.twitter.com/search?q=%23access2009pei" class="aktt_hashtag">access2009pei</a> photo slideshow <a href="http://www.flickr.com/photos/bigdpix/tags/access2009pei/show/" rel="nofollow">http://www.flickr.com/photos/bigdpix/tags/access2009pei/show/</a> (tiny images and quickly uploaded) <a href="http://twitter.com/declan/statuses/4579565038" class="aktt_tweet_time">#</a></li>
<li>holy crap!  macbook bingo! <a href="http://twitter.com/declan/statuses/4581509239" class="aktt_tweet_time">#</a></li>
<li>Getting some food and beers at Churchill Arms. Hope @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> doesn&#39;t get jealous. <a href="http://twitter.com/declan/statuses/4590147576" class="aktt_tweet_time">#</a></li>
<li>Full moon rise over the cliffs of argyle beach on prince Edward island  <a href="http://twitpic.com/k5t32" rel="nofollow">http://twitpic.com/k5t32</a> <a href="http://twitter.com/declan/statuses/4590186841" class="aktt_tweet_time">#</a></li>
<li>Where are @jambina, @g5f, @nunanishi? <a href="http://twitter.com/declan/statuses/4590206022" class="aktt_tweet_time">#</a></li>
<li>I have taken control of Declan are you receiving me <a href="http://twitter.com/declan/statuses/4591274946" class="aktt_tweet_time">#</a></li>
<li>As if I can be controled. <a href="http://twitter.com/declan/statuses/4591302770" class="aktt_tweet_time">#</a></li>
<li>that was an awesome #<a href="http://search.twitter.com/search?q=%23Access2009pei" class="aktt_hashtag">Access2009pei</a>!  thanks to @<a href="http://twitter.com/mleggott" class="aktt_username">mleggott</a> and the PEI crew!  Wonderful seeing all my Access buddies!  Even @g5f! <a href="http://twitter.com/declan/statuses/4593900812" class="aktt_tweet_time">#</a></li>
<li>w00t!  free wifi at the Halifax airport! <a href="http://twitter.com/declan/statuses/4602145232" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2009/10/04/twitter-weekly-updates-for-2009-10-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-09-27</title>
		<link>http://www.declan.net/2009/09/27/twitter-weekly-updates-for-2009-09-27-2/</link>
		<comments>http://www.declan.net/2009/09/27/twitter-weekly-updates-for-2009-09-27-2/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 15:57:00 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/2009/09/27/twitter-weekly-updates-for-2009-09-27-2/</guid>
		<description><![CDATA[@marycanady i&#39;m just hungover&#8230; in reply to marycanady # @marycanady had an amazing time! Pix are uploading to flickr now: http://www.flickr.com/photos/bigdpix/ in reply to marycanady # thanks to all the great folks who came out for my and @zenchaos&#39;s birthdays! Pix are up! http://bit.ly/98QAa # RT @churchills: Lost abbey serpents stout aged in jack barrels [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>@<a href="http://twitter.com/marycanady" class="aktt_username">marycanady</a> i&#39;m just hungover&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/marycanady/statuses/4127992012" class="aktt_tweet_reply">in reply to marycanady</a> <a href="http://twitter.com/declan/statuses/4128686049" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/marycanady" class="aktt_username">marycanady</a> had an amazing time!  Pix are uploading to flickr now: <a href="http://www.flickr.com/photos/bigdpix/" rel="nofollow">http://www.flickr.com/photos/bigdpix/</a> <a href="http://twitter.com/marycanady/statuses/4128727157" class="aktt_tweet_reply">in reply to marycanady</a> <a href="http://twitter.com/declan/statuses/4128866428" class="aktt_tweet_time">#</a></li>
<li>thanks to all the great folks who came out for my and @zenchaos&#39;s birthdays! Pix are up! <a href="http://bit.ly/98QAa" rel="nofollow">http://bit.ly/98QAa</a> <a href="http://twitter.com/declan/statuses/4129688088" class="aktt_tweet_time">#</a></li>
<li>RT @churchills:  Lost abbey serpents stout aged in jack barrels and older viscosity aged in jd barrels on tap!! amazing stuff! <a href="http://twitter.com/declan/statuses/4130230312" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/freegovinfo" class="aktt_username">freegovinfo</a> ha, as if Champaign can get twitter&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/freegovinfo/statuses/4150263308" class="aktt_tweet_reply">in reply to freegovinfo</a> <a href="http://twitter.com/declan/statuses/4150379168" class="aktt_tweet_time">#</a></li>
<li>RT @zenchaos: @danwho&#8230;as of 9.19&#8230;I have entered the 40s. / which he&#39;d know if he&#39;d been @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/4154511870" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> come drive me to stone! <a href="http://twitter.com/dantecl/statuses/4158372328" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4158806892" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> do you think i can drive?  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/dantecl/statuses/4158819699" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4159024365" class="aktt_tweet_time">#</a></li>
<li>RT @taphunter: Stone World Bistro just put the Ken Schmidt/Maui/Stone Kona coffee, macadamia, coconut porter on tap. Spread the good word. <a href="http://twitter.com/declan/statuses/4159105536" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> oh great, now i&#39;ll have to ride my bike <a href="http://twitter.com/dantecl/statuses/4159137587" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4159197225" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/kirinqueen" class="aktt_username">kirinqueen</a> what if I wanna be Joan? <a href="http://twitter.com/kirinqueen/statuses/4159298544" class="aktt_tweet_reply">in reply to kirinqueen</a> <a href="http://twitter.com/declan/statuses/4159348918" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cschone44" class="aktt_username">cschone44</a> oh please, yer one of the strongest personalities I know.  kick some ass. <a href="http://twitter.com/cschone44/statuses/4160774395" class="aktt_tweet_reply">in reply to cschone44</a> <a href="http://twitter.com/declan/statuses/4161249050" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/nrek" class="aktt_username">nrek</a> that&#39;s a bastard move! my fave is to changes the kids&#39; to pix of them on the potty as babies&#8230; <a href="http://twitter.com/nrek/statuses/4160368734" class="aktt_tweet_reply">in reply to nrek</a> <a href="http://twitter.com/declan/statuses/4161277906" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/joonspoon" class="aktt_username">joonspoon</a> bastardina!  and that was the younger guy&#39;s cake! Ok, I&#39;m Grampa Gene. <a href="http://twitter.com/joonspoon/statuses/4160032367" class="aktt_tweet_reply">in reply to joonspoon</a> <a href="http://twitter.com/declan/statuses/4161435881" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cschone44" class="aktt_username">cschone44</a> estes park, vail, 16th st mall in Denver, oskar blues brewery in Lyons, Avery brewery somewhere <a href="http://twitter.com/cschone44/statuses/4164937212" class="aktt_tweet_reply">in reply to cschone44</a> <a href="http://twitter.com/declan/statuses/4165644983" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cschone44" class="aktt_username">cschone44</a> ah, easy! Stay drunk. <a href="http://twitter.com/cschone44/statuses/4163828117" class="aktt_tweet_reply">in reply to cschone44</a> <a href="http://twitter.com/declan/statuses/4165678901" class="aktt_tweet_time">#</a></li>
<li>RT @SouthBayDrugs: Forgot to mention that I received some Ballast Point Old Grove Gin last week! <a href="http://twitter.com/declan/statuses/4172533164" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bikesd" class="aktt_username">bikesd</a> flatten Torrey Pines <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  not really. It&#39;s more about showers and bother in the morning for me. <a href="http://twitter.com/bikesd/statuses/4166312250" class="aktt_tweet_reply">in reply to bikesd</a> <a href="http://twitter.com/declan/statuses/4172574386" class="aktt_tweet_time">#</a></li>
<li>RT @hober: San Diego friends: @<a href="http://twitter.com/BILPIL" class="aktt_username">BILPIL</a> is happening right here, at SDSU&#39;s BioScience Center, the weekend of 30 October. #<a href="http://search.twitter.com/search?q=%23barcamp" class="aktt_hashtag">barcamp</a> #<a href="http://search.twitter.com/search?q=%23barcampsd" class="aktt_hashtag">barcampsd</a> <a href="http://twitter.com/declan/statuses/4172625055" class="aktt_tweet_time">#</a></li>
<li>RT @zenchaos: Protect Insurance Companies PSA: Will Ferrell, Jon Hamm Speak Out Against The Public Option (VIDEO) <a href="http://post.ly/5uEN" rel="nofollow">http://post.ly/5uEN</a> <a href="http://twitter.com/declan/statuses/4173772506" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/kgs" class="aktt_username">kgs</a> just add gravy <a href="http://twitter.com/kgs/statuses/4173716867" class="aktt_tweet_reply">in reply to kgs</a> <a href="http://twitter.com/declan/statuses/4173789963" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/guy_713" class="aktt_username">guy_713</a> we avoid 56 and 5 in the morning now &#8211; take the back way.  and we get to see the purty ocean! <a href="http://twitter.com/guy_713/statuses/4176264033" class="aktt_tweet_reply">in reply to guy_713</a> <a href="http://twitter.com/declan/statuses/4176380158" class="aktt_tweet_time">#</a></li>
<li>RT @pemulis: At LC storage meeting. Already seen @<a href="http://twitter.com/jjtuttle" class="aktt_username">jjtuttle</a> and @iamtimmo. Et al. / give them big kisses from me! <a href="http://twitter.com/declan/statuses/4176396525" class="aktt_tweet_time">#</a></li>
<li>is it strange that i feel cheated if my hot chocolate isn&#39;t hot enough to scald my tongue? <a href="http://twitter.com/declan/statuses/4176414073" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sayagainsocal" class="aktt_username">sayagainsocal</a> come take me to pho! <a href="http://twitter.com/sayagainsocal/statuses/4176423543" class="aktt_tweet_reply">in reply to sayagainsocal</a> <a href="http://twitter.com/declan/statuses/4177475121" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mokolabs" class="aktt_username">mokolabs</a> wow, south park will be even smellier than normal&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/mokolabs/statuses/4176570452" class="aktt_tweet_reply">in reply to mokolabs</a> <a href="http://twitter.com/declan/statuses/4177517177" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sayagainsocal" class="aktt_username">sayagainsocal</a> i could get to one, but there&#39;s a pho place over by the campus if yer interested <a href="http://twitter.com/sayagainsocal/statuses/4177573283" class="aktt_tweet_reply">in reply to sayagainsocal</a> <a href="http://twitter.com/declan/statuses/4177638540" class="aktt_tweet_time">#</a></li>
<li>i can&#39;t make myself waste the paper to print a 64 page color pdf, but i don&#39;t have the attn span to read it on the computer.  dilemma&#8230; <a href="http://twitter.com/declan/statuses/4177853998" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SanDiegoTim" class="aktt_username">SanDiegoTim</a> i just waited and it all came back.  took about 3 days. <a href="http://twitter.com/SanDiegoTim/statuses/4299314687" class="aktt_tweet_reply">in reply to SanDiegoTim</a> <a href="http://twitter.com/declan/statuses/4300491202" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MitchWagner" class="aktt_username">MitchWagner</a> yer on twitter fire tonight!  not complaining, already read 2 of the articles! <a href="http://twitter.com/MitchWagner/statuses/4302773552" class="aktt_tweet_reply">in reply to MitchWagner</a> <a href="http://twitter.com/declan/statuses/4304080666" class="aktt_tweet_time">#</a></li>
<li>RT @MitchWagner: Google&#39;s Picasa 3.5 Gains Face Recognition Features <a href="http://ff.im/-8ybdX" rel="nofollow">http://ff.im/-8ybdX</a> / remind me why i pay for Flickr&#8230; <a href="http://twitter.com/declan/statuses/4304208022" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> @<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> you guys are going to hurt Exchange&#39;s feeling. <a href="http://twitter.com/declan/statuses/4304265576" class="aktt_tweet_time">#</a></li>
<li>RT @pemulis: Ultimate first world problem: I just spilled armagnac on my iPhone. <a href="http://twitter.com/declan/statuses/4304280370" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> i want froyo!  oh dammit, too late&#8230; we need froyo work email &#8211; that won&#39;t suck! <a href="http://twitter.com/Altair77/statuses/4299926902" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4304308819" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> maybe we need a recurring meeting! <a href="http://twitter.com/Altair77/statuses/4304373526" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4304417149" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/iamtimmo" class="aktt_username">iamtimmo</a> thought you&#39;d appreciate the soft hands.  sorry about the haircut <a href="http://twitter.com/iamtimmo/statuses/4304499020" class="aktt_tweet_reply">in reply to iamtimmo</a> <a href="http://twitter.com/declan/statuses/4304624144" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/zenchaos" class="aktt_username">zenchaos</a> you gave me a special present&#8230; too drunk to remember?  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/zenchaos/statuses/4305228579" class="aktt_tweet_reply">in reply to zenchaos</a> <a href="http://twitter.com/declan/statuses/4305342504" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mfrei" class="aktt_username">mfrei</a> Google My Maps? <a href="http://twitter.com/mfrei/statuses/4314869929" class="aktt_tweet_reply">in reply to mfrei</a> <a href="http://twitter.com/declan/statuses/4316230499" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Imagium" class="aktt_username">Imagium</a> nggallery is very nice <a href="http://twitter.com/Imagium/statuses/4323260982" class="aktt_tweet_reply">in reply to Imagium</a> <a href="http://twitter.com/declan/statuses/4323609166" class="aktt_tweet_time">#</a></li>
<li>Awesome birthday gift from @zenchaos!  <a href="http://twitpic.com/iv4ow" rel="nofollow">http://twitpic.com/iv4ow</a> <a href="http://twitter.com/declan/statuses/4325356341" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sayagainsocal" class="aktt_username">sayagainsocal</a> that deserves a bonus!!! <a href="http://twitter.com/sayagainsocal/statuses/4328694215" class="aktt_tweet_reply">in reply to sayagainsocal</a> <a href="http://twitter.com/declan/statuses/4329434182" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDTechGirl" class="aktt_username">SDTechGirl</a> as if i&#39;d put one of those in my body!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   i&#39;ll test it in one of my kids. <a href="http://twitter.com/SDTechGirl/statuses/4328894768" class="aktt_tweet_reply">in reply to SDTechGirl</a> <a href="http://twitter.com/declan/statuses/4329445049" class="aktt_tweet_time">#</a></li>
<li>I really need a beer <a href="http://twitter.com/declan/statuses/4330659443" class="aktt_tweet_time">#</a></li>
<li>Look what I found!  <a href="http://twitpic.com/iwa84" rel="nofollow">http://twitpic.com/iwa84</a> <a href="http://twitter.com/declan/statuses/4331668595" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> about time you got me a birthday present. <a href="http://twitter.com/dantecl/statuses/4331926663" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4332195864" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> i think it&#39;s a birdhouse.  i try not to get involved <a href="http://twitter.com/SDMike/statuses/4333638635" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/4333790903" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> I&#39;d take one if yer feeling nice <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/RedTheTrucker/statuses/4341568680" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/4343094412" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Flyered" class="aktt_username">Flyered</a> when do you get to SAN? What are you craving? <a href="http://twitter.com/declan/statuses/4350424901" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/gemalynn" class="aktt_username">gemalynn</a> congrats! <a href="http://twitter.com/gemalynn/statuses/4349221909" class="aktt_tweet_reply">in reply to gemalynn</a> <a href="http://twitter.com/declan/statuses/4350456700" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Flyered" class="aktt_username">Flyered</a> cool!  working on moving a meeting around.  when do you leave SAN?  I&#39;ll buy you fish tacos for dinner!  Rubios at the airport. <a href="http://twitter.com/Flyered/statuses/4350933522" class="aktt_tweet_reply">in reply to Flyered</a> <a href="http://twitter.com/declan/statuses/4351046423" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/nrek" class="aktt_username">nrek</a> smoke pix? <a href="http://twitter.com/nrek/statuses/4350880291" class="aktt_tweet_reply">in reply to nrek</a> <a href="http://twitter.com/declan/statuses/4351107010" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Flyered" class="aktt_username">Flyered</a> excellent!  @<a href="http://twitter.com/gebl" class="aktt_username">gebl</a> and I are carpooling down &#8211; ETA around 4p.  Yer in Terminal 2? <a href="http://twitter.com/Flyered/statuses/4351169760" class="aktt_tweet_reply">in reply to Flyered</a> <a href="http://twitter.com/declan/statuses/4351222448" class="aktt_tweet_time">#</a></li>
<li>candy corn is neither <a href="http://twitter.com/declan/statuses/4352791717" class="aktt_tweet_time">#</a></li>
<li>RT @DowntownRob: Can YOU please RT for me? Spread the word: Gary Vaynerchuk is excited for Nov 4th tWineUp in San Diego! <a href="http://bit.ly/e8v0V" rel="nofollow">http://bit.ly/e8v0V</a> <a href="http://twitter.com/declan/statuses/4352813537" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MitchWagner" class="aktt_username">MitchWagner</a> think of how much more water loss you&#39;d have out in 106 degrees!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/MitchWagner/statuses/4351650913" class="aktt_tweet_reply">in reply to MitchWagner</a> <a href="http://twitter.com/declan/statuses/4353089877" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Flyered" class="aktt_username">Flyered</a> ok, @<a href="http://twitter.com/gebl" class="aktt_username">gebl</a> and I are on the way. Where are you hanging out? <a href="http://twitter.com/Flyered/statuses/4351169760" class="aktt_tweet_reply">in reply to Flyered</a> <a href="http://twitter.com/declan/statuses/4353769128" class="aktt_tweet_time">#</a></li>
<li>Rubios fail at SAN. On a fish taco run, then back to @<a href="http://twitter.com/flyered" class="aktt_username">flyered</a> <a href="http://twitter.com/declan/statuses/4354814388" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Viss" class="aktt_username">Viss</a> yep! Follow @flyered&#39;s story to see why. <a href="http://twitter.com/Viss/statuses/4354920495" class="aktt_tweet_reply">in reply to Viss</a> <a href="http://twitter.com/declan/statuses/4355087552" class="aktt_tweet_time">#</a></li>
<li>Scored 4 Stone Maui at whole foods la jolla town square. 6 left. $7 each  <a href="http://twitpic.com/j0gc8" rel="nofollow">http://twitpic.com/j0gc8</a> <a href="http://twitter.com/declan/statuses/4357074241" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> depends&#8230; before or after it&#39;s been eaten? <a href="http://twitter.com/SDMike/statuses/4356409814" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/4357487851" class="aktt_tweet_time">#</a></li>
<li>damn people!  Use yer INSIDE voice! <a href="http://twitter.com/declan/statuses/4357515080" class="aktt_tweet_time">#</a></li>
<li>If the girl behind me says &quot;like&quot; one more time, I will de-uvula her. <a href="http://twitter.com/declan/statuses/4358481201" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bethlindsay" class="aktt_username">bethlindsay</a> that&#39;s the problem, I&#39;m drinking in a coffee place and not a bar. <a href="http://twitter.com/bethlindsay/statuses/4358557677" class="aktt_tweet_reply">in reply to bethlindsay</a> <a href="http://twitter.com/declan/statuses/4358613571" class="aktt_tweet_time">#</a></li>
<li>We just met @<a href="http://twitter.com/Flyered" class="aktt_username">Flyered</a> at the airport! <a href="http://www.flickr.com/photos/bigdpix/sets/72157622325147729/" rel="nofollow">http://www.flickr.com/photos/bigdpix/sets/72157622325147729/</a> <a href="http://twitter.com/declan/statuses/4358993267" class="aktt_tweet_time">#</a></li>
<li>read about @Flyered&#39;s adventures here: <a href="http://bit.ly/4b3jBd" rel="nofollow">http://bit.ly/4b3jBd</a> <a href="http://twitter.com/declan/statuses/4359065379" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDRadio" class="aktt_username">SDRadio</a> not sure what&#39;s happening Friday.  big trip next week that needs some planning this weekend. <a href="http://twitter.com/SDRadio/statuses/4358708627" class="aktt_tweet_reply">in reply to SDRadio</a> <a href="http://twitter.com/declan/statuses/4359077281" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SdGeek" class="aktt_username">SdGeek</a> good night, and have a pleasant tomorrow. <a href="http://twitter.com/SdGeek/statuses/4358839141" class="aktt_tweet_reply">in reply to SdGeek</a> <a href="http://twitter.com/declan/statuses/4359092828" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/marycanady" class="aktt_username">marycanady</a> courage! <a href="http://twitter.com/marycanady/statuses/4359610919" class="aktt_tweet_reply">in reply to marycanady</a> <a href="http://twitter.com/declan/statuses/4359817284" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> need for niceness averted! Found 4 bottles last night. <a href="http://twitter.com/RedTheTrucker/statuses/4343638688" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/4369099236" class="aktt_tweet_time">#</a></li>
<li>Getting mentally prepared for the 4 flights to Access on Monday. Who else is going? <a href="http://twitter.com/declan/statuses/4369124331" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/edsu" class="aktt_username">edsu</a> amen. I wrote a puff paper for my MBA on ASPs being the future.  I even have a fake logo shirt. <a href="http://twitter.com/edsu/statuses/4367100875" class="aktt_tweet_reply">in reply to edsu</a> <a href="http://twitter.com/declan/statuses/4369304049" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/lbjay" class="aktt_username">lbjay</a> is that the Lost or Prisoner island? <a href="http://twitter.com/lbjay/statuses/4369245598" class="aktt_tweet_reply">in reply to lbjay</a> <a href="http://twitter.com/declan/statuses/4369329673" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/techlifeweb" class="aktt_username">techlifeweb</a> prince edward island. From the bottom left of the continent to the top right!  Well, far right. <a href="http://twitter.com/techlifeweb/statuses/4369264161" class="aktt_tweet_reply">in reply to techlifeweb</a> <a href="http://twitter.com/declan/statuses/4369352446" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> never thought of you that way!  ok, maybe half&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/RedTheTrucker/statuses/4369313279" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/4370222845" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mjgiarlo" class="aktt_username">mjgiarlo</a> that sux!  I may just cancel! I need my neckbeard fix!  planning on @code4lib? <a href="http://twitter.com/mjgiarlo/statuses/4369323904" class="aktt_tweet_reply">in reply to mjgiarlo</a> <a href="http://twitter.com/declan/statuses/4370245125" class="aktt_tweet_time">#</a></li>
<li>RT @elawson: Courtesy of @ehaase, hilarious! <a href="http://bit.ly/r4Chq" rel="nofollow">http://bit.ly/r4Chq</a> <a href="http://twitter.com/declan/statuses/4370316786" class="aktt_tweet_time">#</a></li>
<li>i haven&#39;t mastered perching the new reading glasses on my forehead yet. something to practice on the plane&#8230; <a href="http://twitter.com/declan/statuses/4371132173" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mbklein" class="aktt_username">mbklein</a> ew, i don&#39;t wanna hear about you and @<a href="http://twitter.com/mjgiarlo" class="aktt_username">mjgiarlo</a> and Domination. <a href="http://twitter.com/mbklein/statuses/4370584022" class="aktt_tweet_reply">in reply to mbklein</a> <a href="http://twitter.com/declan/statuses/4371148714" class="aktt_tweet_time">#</a></li>
<li>.@<a href="http://twitter.com/eosadler" class="aktt_username">eosadler</a> if restaurant = beer, then I&#39;m yer man.  actually, @<a href="http://twitter.com/fgjohnson" class="aktt_username">fgjohnson</a> is our man on the ground in PEI. <a href="http://twitter.com/declan/statuses/4371315327" class="aktt_tweet_time">#</a></li>
<li>RT @mjgiarlo:  CDL&#39;s curation micro-services, I whipped up a sample &quot;repo&quot; that stitches them together: <a href="http://bit.ly/nZ5FR" rel="nofollow">http://bit.ly/nZ5FR</a> (img) <a href="http://twitter.com/declan/statuses/4371914625" class="aktt_tweet_time">#</a></li>
<li>my  breaks on telecommute day revolve more around laundry than froyo.  and i ASKED for this&#8230; <a href="http://twitter.com/declan/statuses/4371929376" class="aktt_tweet_time">#</a></li>
<li>RT @tonyg: @<a href="http://twitter.com/declan" class="aktt_username">declan</a> it&#39;s funny now, but as they get older it will get creepier and creepier <a href="http://twitter.com/declan/statuses/4372041130" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/freegovinfo" class="aktt_username">freegovinfo</a> ooo!  i&#39;m getting out the bread maker after lunch! <a href="http://twitter.com/freegovinfo/statuses/4372019942" class="aktt_tweet_reply">in reply to freegovinfo</a> <a href="http://twitter.com/declan/statuses/4372071267" class="aktt_tweet_time">#</a></li>
<li>hanging at SAN yesterday with @<a href="http://twitter.com/Flyered" class="aktt_username">Flyered</a> <a href="http://www.flickr.com/photos/gebl/3951776135/" rel="nofollow">http://www.flickr.com/photos/gebl/3951776135/</a> <a href="http://twitter.com/declan/statuses/4372993002" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> good thing i&#39;m not going then&#8230; wonder of Kunze will have his grill in again&#8230; <a href="http://twitter.com/pemulis/statuses/4372916189" class="aktt_tweet_reply">in reply to pemulis</a> <a href="http://twitter.com/declan/statuses/4373081742" class="aktt_tweet_time">#</a></li>
<li>.@<a href="http://twitter.com/tonyg" class="aktt_username">tonyg</a> sorry, Mr. Scaredy Priss.  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/4373444667" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> was that one or two people? <a href="http://twitter.com/pemulis/statuses/4373522757" class="aktt_tweet_reply">in reply to pemulis</a> <a href="http://twitter.com/declan/statuses/4373607725" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> <a href="http://bit.ly/sAi0A" rel="nofollow">http://bit.ly/sAi0A</a> <a href="http://twitter.com/pemulis/statuses/4373667437" class="aktt_tweet_reply">in reply to pemulis</a> <a href="http://twitter.com/declan/statuses/4373702364" class="aktt_tweet_time">#</a></li>
<li>RT @danwho: @<a href="http://twitter.com/declan" class="aktt_username">declan</a> @<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> AFTER the flight? I thought that was your prom photo. / YOUR MOM!!! <a href="http://xkcd.com/639/" rel="nofollow">http://xkcd.com/639/</a> <a href="http://twitter.com/declan/statuses/4373910707" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> i&#39;ve got diamonds on the soles of my shoes <a href="http://twitter.com/danwho/statuses/4373701999" class="aktt_tweet_reply">in reply to danwho</a> <a href="http://twitter.com/declan/statuses/4373938571" class="aktt_tweet_time">#</a></li>
<li>RT @DwayneDomi: @<a href="http://twitter.com/declan" class="aktt_username">declan</a> @<a href="http://twitter.com/dcrane2" class="aktt_username">dcrane2</a> @<a href="http://twitter.com/sdmike" class="aktt_username">sdmike</a> any poker plans this weekend? / not that i&#39;ve heard &#8211; i&#39;m game tho! <a href="http://twitter.com/declan/statuses/4373948152" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/thepegisin" class="aktt_username">thepegisin</a> then he spent $3000 on beer. <a href="http://twitter.com/thepegisin/statuses/4373687394" class="aktt_tweet_reply">in reply to thepegisin</a> <a href="http://twitter.com/declan/statuses/4373956580" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dchud" class="aktt_username">dchud</a> glad you&#39;ll be there, sad about your hackfest missingness! <a href="http://twitter.com/dchud/statuses/4374804062" class="aktt_tweet_reply">in reply to dchud</a> <a href="http://twitter.com/declan/statuses/4374826293" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/thepegisin" class="aktt_username">thepegisin</a> ah, you gotta keep him drunk?  don&#39;t blame ya. <a href="http://twitter.com/thepegisin/statuses/4376516703" class="aktt_tweet_reply">in reply to thepegisin</a> <a href="http://twitter.com/declan/statuses/4378389629" class="aktt_tweet_time">#</a></li>
<li>RT @Smiff: Kinda neat: <a href="http://www.worldometers.info/" rel="nofollow">http://www.worldometers.info/</a> &#8211; world statistics updated in real time / when do i level up? <a href="http://twitter.com/declan/statuses/4380035978" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MitchWagner" class="aktt_username">MitchWagner</a> mms me, baby! <a href="http://twitter.com/MitchWagner/statuses/4378590319" class="aktt_tweet_reply">in reply to MitchWagner</a> <a href="http://twitter.com/declan/statuses/4380082011" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/radaly" class="aktt_username">radaly</a> dude!  i could lend you one of those too&#8230; <a href="http://twitter.com/radaly/statuses/4380099740" class="aktt_tweet_reply">in reply to radaly</a> <a href="http://twitter.com/declan/statuses/4380155363" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> define #<a href="http://search.twitter.com/search?q=%23beersummit" class="aktt_hashtag">beersummit</a> <a href="http://twitter.com/RedTheTrucker/statuses/4377830988" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/4380190664" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> ecards are the devil <a href="http://twitter.com/Altair77/statuses/4377628939" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4380242215" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> ecards are carriers of viri &#8211; seriously, I don&#39;t open them. <a href="http://twitter.com/Altair77/statuses/4380771910" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4380824123" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> got a hot date! <a href="http://twitter.com/SDMike/statuses/4382306918" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/4382324240" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> no kids and good beer&#8230; that&#39;s a hot date&#8230; or a #<a href="http://search.twitter.com/search?q=%23beersummit" class="aktt_hashtag">beersummit</a>, eh @<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> ? <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/SDMike/statuses/4382876118" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/4386006909" class="aktt_tweet_time">#</a></li>
<li>about to sample one of the maui stones! <a href="http://twitter.com/declan/statuses/4386025096" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/abull" class="aktt_username">abull</a> sushi too? <a href="http://twitter.com/abull/statuses/4385106494" class="aktt_tweet_reply">in reply to abull</a> <a href="http://twitter.com/declan/statuses/4386130845" class="aktt_tweet_time">#</a></li>
<li>RT @badbanana: They didn&#39;t have G20 riots when I was in college. I did get pretty pissed off about the New Coke thing, though. <a href="http://twitter.com/declan/statuses/4386189591" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> @<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> i think some folks are going to @<a href="http://twitter.com/smallbar" class="aktt_username">smallbar</a>  tomorrow at 4p. <a href="http://twitter.com/RedTheTrucker/statuses/4384595934" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/4386308151" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> Toronado is way too loud <a href="http://twitter.com/RedTheTrucker/statuses/4384560282" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/4386316416" class="aktt_tweet_time">#</a></li>
<li>&quot;Ralph had 80 stitches in his crotch.&quot; i feel that we picked the wrong entertainment for the night&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/4386385490" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> 4628 Park Blvd = small bar san diego <a href="http://lmgtfy.com/?q=small+bar+san+diego" rel="nofollow">http://lmgtfy.com/?q=small+bar+san+diego</a> <a href="http://twitter.com/dantecl/statuses/4386379070" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4386442156" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> i&#39;ve become a librarian.  bitter and helpful. <a href="http://twitter.com/dantecl/statuses/4386520226" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4386553803" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/faryl" class="aktt_username">faryl</a> you&#39;re not a guy?!? <a href="http://twitter.com/faryl/statuses/4381750376" class="aktt_tweet_reply">in reply to faryl</a> <a href="http://twitter.com/declan/statuses/4386628462" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> but not balding&#8230; <a href="http://twitter.com/dantecl/statuses/4386781203" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4386804266" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/lmgtfy" class="aktt_username">lmgtfy</a> you ROCK! <a href="http://twitter.com/declan/statuses/4387116802" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/badbanana" class="aktt_username">badbanana</a> i&#39;d buy THAT for a DOLLAR! <a href="http://twitter.com/badbanana/statuses/4387067668" class="aktt_tweet_reply">in reply to badbanana</a> <a href="http://twitter.com/declan/statuses/4387174002" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/kworkman" class="aktt_username">kworkman</a> drunken domain name registrations should be a registered mental condition <a href="http://twitter.com/kworkman/statuses/4388053752" class="aktt_tweet_reply">in reply to kworkman</a> <a href="http://twitter.com/declan/statuses/4388195603" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/iamtimmo" class="aktt_username">iamtimmo</a> nikon drools, canon rulz <a href="http://twitter.com/iamtimmo/statuses/4387983906" class="aktt_tweet_reply">in reply to iamtimmo</a> <a href="http://twitter.com/declan/statuses/4388205253" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/martinemde" class="aktt_username">martinemde</a> i kinda hate you @<a href="http://twitter.com/gabf" class="aktt_username">gabf</a> guys&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/martinemde/statuses/4387328729" class="aktt_tweet_reply">in reply to martinemde</a> <a href="http://twitter.com/declan/statuses/4388257133" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/martinemde" class="aktt_username">martinemde</a> well, I love the dark stuff! <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  if you see one called Dark Horizons, try it! Superb!  @<a href="http://twitter.com/hober" class="aktt_username">hober</a> got me one for my birthday. <a href="http://twitter.com/martinemde/statuses/4389900777" class="aktt_tweet_reply">in reply to martinemde</a> <a href="http://twitter.com/declan/statuses/4395291501" class="aktt_tweet_time">#</a></li>
<li>Hey Chicago peeps! Buddy @<a href="http://twitter.com/bjschone" class="aktt_username">bjschone</a> is touring around downtown today. What shouldn&#39;t he miss? <a href="http://twitter.com/bjschone/statuses/4393320397" class="aktt_tweet_reply">in reply to bjschone</a> <a href="http://twitter.com/declan/statuses/4395482743" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jcarrico" class="aktt_username">jcarrico</a> are you staying above water? <a href="http://twitter.com/jcarrico/statuses/4396042341" class="aktt_tweet_reply">in reply to jcarrico</a> <a href="http://twitter.com/declan/statuses/4396071478" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/faryl" class="aktt_username">faryl</a> the pink hair threw me off <a href="http://twitter.com/faryl/statuses/4401573747" class="aktt_tweet_reply">in reply to faryl</a> <a href="http://twitter.com/declan/statuses/4402369441" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/lostabbey" class="aktt_username">lostabbey</a> congrats! <a href="http://twitter.com/lostabbey/statuses/4401976324" class="aktt_tweet_reply">in reply to lostabbey</a> <a href="http://twitter.com/declan/statuses/4402381290" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/kirinqueen" class="aktt_username">kirinqueen</a> want to bike around the bay with us tomorrow?  Meeting at the Star of India at 9a.  about a 25 mile ride, very flat. <a href="http://twitter.com/kirinqueen/statuses/4400892131" class="aktt_tweet_reply">in reply to kirinqueen</a> <a href="http://twitter.com/declan/statuses/4402489639" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/brynn" class="aktt_username">brynn</a> sage travels! <a href="http://twitter.com/brynn/statuses/4400724703" class="aktt_tweet_reply">in reply to brynn</a> <a href="http://twitter.com/declan/statuses/4402496526" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/brynn" class="aktt_username">brynn</a> safe too. <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/brynn/statuses/4400724703" class="aktt_tweet_reply">in reply to brynn</a> <a href="http://twitter.com/declan/statuses/4402500511" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> @<a href="http://twitter.com/souplantation" class="aktt_username">souplantation</a> look for @<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> and @<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> <a href="http://twitter.com/dantecl/statuses/4405124722" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4405724322" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> did you find someone who didn&#39;t mind talking to you? <a href="http://twitter.com/dantecl/statuses/4406161087" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4406409231" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jcarrico" class="aktt_username">jcarrico</a> glad yer ok! <a href="http://twitter.com/jcarrico/statuses/4414649235" class="aktt_tweet_reply">in reply to jcarrico</a> <a href="http://twitter.com/declan/statuses/4417204170" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/martinemde" class="aktt_username">martinemde</a> that&#39;s an amazing list! There&#39;s a 2007 Decadence Barrel Aged?!? Me wants!!! <a href="http://twitter.com/martinemde/statuses/4413463294" class="aktt_tweet_reply">in reply to martinemde</a> <a href="http://twitter.com/declan/statuses/4417251374" class="aktt_tweet_time">#</a></li>
<li>.@<a href="http://twitter.com/AmericanHarmony" class="aktt_username">AmericanHarmony</a> congrats! <a href="http://twitter.com/declan/statuses/4417535653" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> it&#39;s common in business and finance. <a href="http://twitter.com/bmljenny/statuses/4417532716" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/4417546225" class="aktt_tweet_time">#</a></li>
<li>About to head downtown to bike around the bay. DZAkins tempts me, yet I resist! <a href="http://twitter.com/declan/statuses/4417572655" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2009/09/27/twitter-weekly-updates-for-2009-09-27-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-09-27</title>
		<link>http://www.declan.net/2009/09/27/twitter-weekly-updates-for-2009-09-27/</link>
		<comments>http://www.declan.net/2009/09/27/twitter-weekly-updates-for-2009-09-27/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 15:57:00 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/2009/09/27/twitter-weekly-updates-for-2009-09-27/</guid>
		<description><![CDATA[@marycanady i&#39;m just hungover&#8230; in reply to marycanady # @marycanady had an amazing time! Pix are uploading to flickr now: http://www.flickr.com/photos/bigdpix/ in reply to marycanady # thanks to all the great folks who came out for my and @zenchaos&#39;s birthdays! Pix are up! http://bit.ly/98QAa # RT @churchills: Lost abbey serpents stout aged in jack barrels [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>@<a href="http://twitter.com/marycanady" class="aktt_username">marycanady</a> i&#39;m just hungover&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/marycanady/statuses/4127992012" class="aktt_tweet_reply">in reply to marycanady</a> <a href="http://twitter.com/declan/statuses/4128686049" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/marycanady" class="aktt_username">marycanady</a> had an amazing time!  Pix are uploading to flickr now: <a href="http://www.flickr.com/photos/bigdpix/" rel="nofollow">http://www.flickr.com/photos/bigdpix/</a> <a href="http://twitter.com/marycanady/statuses/4128727157" class="aktt_tweet_reply">in reply to marycanady</a> <a href="http://twitter.com/declan/statuses/4128866428" class="aktt_tweet_time">#</a></li>
<li>thanks to all the great folks who came out for my and @zenchaos&#39;s birthdays! Pix are up! <a href="http://bit.ly/98QAa" rel="nofollow">http://bit.ly/98QAa</a> <a href="http://twitter.com/declan/statuses/4129688088" class="aktt_tweet_time">#</a></li>
<li>RT @churchills:  Lost abbey serpents stout aged in jack barrels and older viscosity aged in jd barrels on tap!! amazing stuff! <a href="http://twitter.com/declan/statuses/4130230312" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/freegovinfo" class="aktt_username">freegovinfo</a> ha, as if Champaign can get twitter&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/freegovinfo/statuses/4150263308" class="aktt_tweet_reply">in reply to freegovinfo</a> <a href="http://twitter.com/declan/statuses/4150379168" class="aktt_tweet_time">#</a></li>
<li>RT @zenchaos: @danwho&#8230;as of 9.19&#8230;I have entered the 40s. / which he&#39;d know if he&#39;d been @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/4154511870" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> come drive me to stone! <a href="http://twitter.com/dantecl/statuses/4158372328" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4158806892" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> do you think i can drive?  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/dantecl/statuses/4158819699" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4159024365" class="aktt_tweet_time">#</a></li>
<li>RT @taphunter: Stone World Bistro just put the Ken Schmidt/Maui/Stone Kona coffee, macadamia, coconut porter on tap. Spread the good word. <a href="http://twitter.com/declan/statuses/4159105536" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> oh great, now i&#39;ll have to ride my bike <a href="http://twitter.com/dantecl/statuses/4159137587" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4159197225" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/kirinqueen" class="aktt_username">kirinqueen</a> what if I wanna be Joan? <a href="http://twitter.com/kirinqueen/statuses/4159298544" class="aktt_tweet_reply">in reply to kirinqueen</a> <a href="http://twitter.com/declan/statuses/4159348918" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cschone44" class="aktt_username">cschone44</a> oh please, yer one of the strongest personalities I know.  kick some ass. <a href="http://twitter.com/cschone44/statuses/4160774395" class="aktt_tweet_reply">in reply to cschone44</a> <a href="http://twitter.com/declan/statuses/4161249050" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/nrek" class="aktt_username">nrek</a> that&#39;s a bastard move! my fave is to changes the kids&#39; to pix of them on the potty as babies&#8230; <a href="http://twitter.com/nrek/statuses/4160368734" class="aktt_tweet_reply">in reply to nrek</a> <a href="http://twitter.com/declan/statuses/4161277906" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/joonspoon" class="aktt_username">joonspoon</a> bastardina!  and that was the younger guy&#39;s cake! Ok, I&#39;m Grampa Gene. <a href="http://twitter.com/joonspoon/statuses/4160032367" class="aktt_tweet_reply">in reply to joonspoon</a> <a href="http://twitter.com/declan/statuses/4161435881" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cschone44" class="aktt_username">cschone44</a> estes park, vail, 16th st mall in Denver, oskar blues brewery in Lyons, Avery brewery somewhere <a href="http://twitter.com/cschone44/statuses/4164937212" class="aktt_tweet_reply">in reply to cschone44</a> <a href="http://twitter.com/declan/statuses/4165644983" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cschone44" class="aktt_username">cschone44</a> ah, easy! Stay drunk. <a href="http://twitter.com/cschone44/statuses/4163828117" class="aktt_tweet_reply">in reply to cschone44</a> <a href="http://twitter.com/declan/statuses/4165678901" class="aktt_tweet_time">#</a></li>
<li>RT @SouthBayDrugs: Forgot to mention that I received some Ballast Point Old Grove Gin last week! <a href="http://twitter.com/declan/statuses/4172533164" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bikesd" class="aktt_username">bikesd</a> flatten Torrey Pines <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  not really. It&#39;s more about showers and bother in the morning for me. <a href="http://twitter.com/bikesd/statuses/4166312250" class="aktt_tweet_reply">in reply to bikesd</a> <a href="http://twitter.com/declan/statuses/4172574386" class="aktt_tweet_time">#</a></li>
<li>RT @hober: San Diego friends: @<a href="http://twitter.com/BILPIL" class="aktt_username">BILPIL</a> is happening right here, at SDSU&#39;s BioScience Center, the weekend of 30 October. #<a href="http://search.twitter.com/search?q=%23barcamp" class="aktt_hashtag">barcamp</a> #<a href="http://search.twitter.com/search?q=%23barcampsd" class="aktt_hashtag">barcampsd</a> <a href="http://twitter.com/declan/statuses/4172625055" class="aktt_tweet_time">#</a></li>
<li>RT @zenchaos: Protect Insurance Companies PSA: Will Ferrell, Jon Hamm Speak Out Against The Public Option (VIDEO) <a href="http://post.ly/5uEN" rel="nofollow">http://post.ly/5uEN</a> <a href="http://twitter.com/declan/statuses/4173772506" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/kgs" class="aktt_username">kgs</a> just add gravy <a href="http://twitter.com/kgs/statuses/4173716867" class="aktt_tweet_reply">in reply to kgs</a> <a href="http://twitter.com/declan/statuses/4173789963" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/guy_713" class="aktt_username">guy_713</a> we avoid 56 and 5 in the morning now &#8211; take the back way.  and we get to see the purty ocean! <a href="http://twitter.com/guy_713/statuses/4176264033" class="aktt_tweet_reply">in reply to guy_713</a> <a href="http://twitter.com/declan/statuses/4176380158" class="aktt_tweet_time">#</a></li>
<li>RT @pemulis: At LC storage meeting. Already seen @<a href="http://twitter.com/jjtuttle" class="aktt_username">jjtuttle</a> and @iamtimmo. Et al. / give them big kisses from me! <a href="http://twitter.com/declan/statuses/4176396525" class="aktt_tweet_time">#</a></li>
<li>is it strange that i feel cheated if my hot chocolate isn&#39;t hot enough to scald my tongue? <a href="http://twitter.com/declan/statuses/4176414073" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sayagainsocal" class="aktt_username">sayagainsocal</a> come take me to pho! <a href="http://twitter.com/sayagainsocal/statuses/4176423543" class="aktt_tweet_reply">in reply to sayagainsocal</a> <a href="http://twitter.com/declan/statuses/4177475121" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mokolabs" class="aktt_username">mokolabs</a> wow, south park will be even smellier than normal&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/mokolabs/statuses/4176570452" class="aktt_tweet_reply">in reply to mokolabs</a> <a href="http://twitter.com/declan/statuses/4177517177" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sayagainsocal" class="aktt_username">sayagainsocal</a> i could get to one, but there&#39;s a pho place over by the campus if yer interested <a href="http://twitter.com/sayagainsocal/statuses/4177573283" class="aktt_tweet_reply">in reply to sayagainsocal</a> <a href="http://twitter.com/declan/statuses/4177638540" class="aktt_tweet_time">#</a></li>
<li>i can&#39;t make myself waste the paper to print a 64 page color pdf, but i don&#39;t have the attn span to read it on the computer.  dilemma&#8230; <a href="http://twitter.com/declan/statuses/4177853998" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SanDiegoTim" class="aktt_username">SanDiegoTim</a> i just waited and it all came back.  took about 3 days. <a href="http://twitter.com/SanDiegoTim/statuses/4299314687" class="aktt_tweet_reply">in reply to SanDiegoTim</a> <a href="http://twitter.com/declan/statuses/4300491202" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MitchWagner" class="aktt_username">MitchWagner</a> yer on twitter fire tonight!  not complaining, already read 2 of the articles! <a href="http://twitter.com/MitchWagner/statuses/4302773552" class="aktt_tweet_reply">in reply to MitchWagner</a> <a href="http://twitter.com/declan/statuses/4304080666" class="aktt_tweet_time">#</a></li>
<li>RT @MitchWagner: Google&#39;s Picasa 3.5 Gains Face Recognition Features <a href="http://ff.im/-8ybdX" rel="nofollow">http://ff.im/-8ybdX</a> / remind me why i pay for Flickr&#8230; <a href="http://twitter.com/declan/statuses/4304208022" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> @<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> you guys are going to hurt Exchange&#39;s feeling. <a href="http://twitter.com/declan/statuses/4304265576" class="aktt_tweet_time">#</a></li>
<li>RT @pemulis: Ultimate first world problem: I just spilled armagnac on my iPhone. <a href="http://twitter.com/declan/statuses/4304280370" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> i want froyo!  oh dammit, too late&#8230; we need froyo work email &#8211; that won&#39;t suck! <a href="http://twitter.com/Altair77/statuses/4299926902" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4304308819" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> maybe we need a recurring meeting! <a href="http://twitter.com/Altair77/statuses/4304373526" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4304417149" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/iamtimmo" class="aktt_username">iamtimmo</a> thought you&#39;d appreciate the soft hands.  sorry about the haircut <a href="http://twitter.com/iamtimmo/statuses/4304499020" class="aktt_tweet_reply">in reply to iamtimmo</a> <a href="http://twitter.com/declan/statuses/4304624144" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/zenchaos" class="aktt_username">zenchaos</a> you gave me a special present&#8230; too drunk to remember?  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/zenchaos/statuses/4305228579" class="aktt_tweet_reply">in reply to zenchaos</a> <a href="http://twitter.com/declan/statuses/4305342504" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mfrei" class="aktt_username">mfrei</a> Google My Maps? <a href="http://twitter.com/mfrei/statuses/4314869929" class="aktt_tweet_reply">in reply to mfrei</a> <a href="http://twitter.com/declan/statuses/4316230499" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Imagium" class="aktt_username">Imagium</a> nggallery is very nice <a href="http://twitter.com/Imagium/statuses/4323260982" class="aktt_tweet_reply">in reply to Imagium</a> <a href="http://twitter.com/declan/statuses/4323609166" class="aktt_tweet_time">#</a></li>
<li>Awesome birthday gift from @zenchaos!  <a href="http://twitpic.com/iv4ow" rel="nofollow">http://twitpic.com/iv4ow</a> <a href="http://twitter.com/declan/statuses/4325356341" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sayagainsocal" class="aktt_username">sayagainsocal</a> that deserves a bonus!!! <a href="http://twitter.com/sayagainsocal/statuses/4328694215" class="aktt_tweet_reply">in reply to sayagainsocal</a> <a href="http://twitter.com/declan/statuses/4329434182" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDTechGirl" class="aktt_username">SDTechGirl</a> as if i&#39;d put one of those in my body!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   i&#39;ll test it in one of my kids. <a href="http://twitter.com/SDTechGirl/statuses/4328894768" class="aktt_tweet_reply">in reply to SDTechGirl</a> <a href="http://twitter.com/declan/statuses/4329445049" class="aktt_tweet_time">#</a></li>
<li>I really need a beer <a href="http://twitter.com/declan/statuses/4330659443" class="aktt_tweet_time">#</a></li>
<li>Look what I found!  <a href="http://twitpic.com/iwa84" rel="nofollow">http://twitpic.com/iwa84</a> <a href="http://twitter.com/declan/statuses/4331668595" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> about time you got me a birthday present. <a href="http://twitter.com/dantecl/statuses/4331926663" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4332195864" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> i think it&#39;s a birdhouse.  i try not to get involved <a href="http://twitter.com/SDMike/statuses/4333638635" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/4333790903" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> I&#39;d take one if yer feeling nice <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/RedTheTrucker/statuses/4341568680" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/4343094412" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Flyered" class="aktt_username">Flyered</a> when do you get to SAN? What are you craving? <a href="http://twitter.com/declan/statuses/4350424901" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/gemalynn" class="aktt_username">gemalynn</a> congrats! <a href="http://twitter.com/gemalynn/statuses/4349221909" class="aktt_tweet_reply">in reply to gemalynn</a> <a href="http://twitter.com/declan/statuses/4350456700" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Flyered" class="aktt_username">Flyered</a> cool!  working on moving a meeting around.  when do you leave SAN?  I&#39;ll buy you fish tacos for dinner!  Rubios at the airport. <a href="http://twitter.com/Flyered/statuses/4350933522" class="aktt_tweet_reply">in reply to Flyered</a> <a href="http://twitter.com/declan/statuses/4351046423" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/nrek" class="aktt_username">nrek</a> smoke pix? <a href="http://twitter.com/nrek/statuses/4350880291" class="aktt_tweet_reply">in reply to nrek</a> <a href="http://twitter.com/declan/statuses/4351107010" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Flyered" class="aktt_username">Flyered</a> excellent!  @<a href="http://twitter.com/gebl" class="aktt_username">gebl</a> and I are carpooling down &#8211; ETA around 4p.  Yer in Terminal 2? <a href="http://twitter.com/Flyered/statuses/4351169760" class="aktt_tweet_reply">in reply to Flyered</a> <a href="http://twitter.com/declan/statuses/4351222448" class="aktt_tweet_time">#</a></li>
<li>candy corn is neither <a href="http://twitter.com/declan/statuses/4352791717" class="aktt_tweet_time">#</a></li>
<li>RT @DowntownRob: Can YOU please RT for me? Spread the word: Gary Vaynerchuk is excited for Nov 4th tWineUp in San Diego! <a href="http://bit.ly/e8v0V" rel="nofollow">http://bit.ly/e8v0V</a> <a href="http://twitter.com/declan/statuses/4352813537" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MitchWagner" class="aktt_username">MitchWagner</a> think of how much more water loss you&#39;d have out in 106 degrees!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/MitchWagner/statuses/4351650913" class="aktt_tweet_reply">in reply to MitchWagner</a> <a href="http://twitter.com/declan/statuses/4353089877" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Flyered" class="aktt_username">Flyered</a> ok, @<a href="http://twitter.com/gebl" class="aktt_username">gebl</a> and I are on the way. Where are you hanging out? <a href="http://twitter.com/Flyered/statuses/4351169760" class="aktt_tweet_reply">in reply to Flyered</a> <a href="http://twitter.com/declan/statuses/4353769128" class="aktt_tweet_time">#</a></li>
<li>Rubios fail at SAN. On a fish taco run, then back to @<a href="http://twitter.com/flyered" class="aktt_username">flyered</a> <a href="http://twitter.com/declan/statuses/4354814388" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Viss" class="aktt_username">Viss</a> yep! Follow @flyered&#39;s story to see why. <a href="http://twitter.com/Viss/statuses/4354920495" class="aktt_tweet_reply">in reply to Viss</a> <a href="http://twitter.com/declan/statuses/4355087552" class="aktt_tweet_time">#</a></li>
<li>Scored 4 Stone Maui at whole foods la jolla town square. 6 left. $7 each  <a href="http://twitpic.com/j0gc8" rel="nofollow">http://twitpic.com/j0gc8</a> <a href="http://twitter.com/declan/statuses/4357074241" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> depends&#8230; before or after it&#39;s been eaten? <a href="http://twitter.com/SDMike/statuses/4356409814" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/4357487851" class="aktt_tweet_time">#</a></li>
<li>damn people!  Use yer INSIDE voice! <a href="http://twitter.com/declan/statuses/4357515080" class="aktt_tweet_time">#</a></li>
<li>If the girl behind me says &quot;like&quot; one more time, I will de-uvula her. <a href="http://twitter.com/declan/statuses/4358481201" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bethlindsay" class="aktt_username">bethlindsay</a> that&#39;s the problem, I&#39;m drinking in a coffee place and not a bar. <a href="http://twitter.com/bethlindsay/statuses/4358557677" class="aktt_tweet_reply">in reply to bethlindsay</a> <a href="http://twitter.com/declan/statuses/4358613571" class="aktt_tweet_time">#</a></li>
<li>We just met @<a href="http://twitter.com/Flyered" class="aktt_username">Flyered</a> at the airport! <a href="http://www.flickr.com/photos/bigdpix/sets/72157622325147729/" rel="nofollow">http://www.flickr.com/photos/bigdpix/sets/72157622325147729/</a> <a href="http://twitter.com/declan/statuses/4358993267" class="aktt_tweet_time">#</a></li>
<li>read about @Flyered&#39;s adventures here: <a href="http://bit.ly/4b3jBd" rel="nofollow">http://bit.ly/4b3jBd</a> <a href="http://twitter.com/declan/statuses/4359065379" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDRadio" class="aktt_username">SDRadio</a> not sure what&#39;s happening Friday.  big trip next week that needs some planning this weekend. <a href="http://twitter.com/SDRadio/statuses/4358708627" class="aktt_tweet_reply">in reply to SDRadio</a> <a href="http://twitter.com/declan/statuses/4359077281" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SdGeek" class="aktt_username">SdGeek</a> good night, and have a pleasant tomorrow. <a href="http://twitter.com/SdGeek/statuses/4358839141" class="aktt_tweet_reply">in reply to SdGeek</a> <a href="http://twitter.com/declan/statuses/4359092828" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/marycanady" class="aktt_username">marycanady</a> courage! <a href="http://twitter.com/marycanady/statuses/4359610919" class="aktt_tweet_reply">in reply to marycanady</a> <a href="http://twitter.com/declan/statuses/4359817284" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> need for niceness averted! Found 4 bottles last night. <a href="http://twitter.com/RedTheTrucker/statuses/4343638688" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/4369099236" class="aktt_tweet_time">#</a></li>
<li>Getting mentally prepared for the 4 flights to Access on Monday. Who else is going? <a href="http://twitter.com/declan/statuses/4369124331" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/edsu" class="aktt_username">edsu</a> amen. I wrote a puff paper for my MBA on ASPs being the future.  I even have a fake logo shirt. <a href="http://twitter.com/edsu/statuses/4367100875" class="aktt_tweet_reply">in reply to edsu</a> <a href="http://twitter.com/declan/statuses/4369304049" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/lbjay" class="aktt_username">lbjay</a> is that the Lost or Prisoner island? <a href="http://twitter.com/lbjay/statuses/4369245598" class="aktt_tweet_reply">in reply to lbjay</a> <a href="http://twitter.com/declan/statuses/4369329673" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/techlifeweb" class="aktt_username">techlifeweb</a> prince edward island. From the bottom left of the continent to the top right!  Well, far right. <a href="http://twitter.com/techlifeweb/statuses/4369264161" class="aktt_tweet_reply">in reply to techlifeweb</a> <a href="http://twitter.com/declan/statuses/4369352446" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> never thought of you that way!  ok, maybe half&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/RedTheTrucker/statuses/4369313279" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/4370222845" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mjgiarlo" class="aktt_username">mjgiarlo</a> that sux!  I may just cancel! I need my neckbeard fix!  planning on @code4lib? <a href="http://twitter.com/mjgiarlo/statuses/4369323904" class="aktt_tweet_reply">in reply to mjgiarlo</a> <a href="http://twitter.com/declan/statuses/4370245125" class="aktt_tweet_time">#</a></li>
<li>RT @elawson: Courtesy of @ehaase, hilarious! <a href="http://bit.ly/r4Chq" rel="nofollow">http://bit.ly/r4Chq</a> <a href="http://twitter.com/declan/statuses/4370316786" class="aktt_tweet_time">#</a></li>
<li>i haven&#39;t mastered perching the new reading glasses on my forehead yet. something to practice on the plane&#8230; <a href="http://twitter.com/declan/statuses/4371132173" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mbklein" class="aktt_username">mbklein</a> ew, i don&#39;t wanna hear about you and @<a href="http://twitter.com/mjgiarlo" class="aktt_username">mjgiarlo</a> and Domination. <a href="http://twitter.com/mbklein/statuses/4370584022" class="aktt_tweet_reply">in reply to mbklein</a> <a href="http://twitter.com/declan/statuses/4371148714" class="aktt_tweet_time">#</a></li>
<li>.@<a href="http://twitter.com/eosadler" class="aktt_username">eosadler</a> if restaurant = beer, then I&#39;m yer man.  actually, @<a href="http://twitter.com/fgjohnson" class="aktt_username">fgjohnson</a> is our man on the ground in PEI. <a href="http://twitter.com/declan/statuses/4371315327" class="aktt_tweet_time">#</a></li>
<li>RT @mjgiarlo:  CDL&#39;s curation micro-services, I whipped up a sample &quot;repo&quot; that stitches them together: <a href="http://bit.ly/nZ5FR" rel="nofollow">http://bit.ly/nZ5FR</a> (img) <a href="http://twitter.com/declan/statuses/4371914625" class="aktt_tweet_time">#</a></li>
<li>my  breaks on telecommute day revolve more around laundry than froyo.  and i ASKED for this&#8230; <a href="http://twitter.com/declan/statuses/4371929376" class="aktt_tweet_time">#</a></li>
<li>RT @tonyg: @<a href="http://twitter.com/declan" class="aktt_username">declan</a> it&#39;s funny now, but as they get older it will get creepier and creepier <a href="http://twitter.com/declan/statuses/4372041130" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/freegovinfo" class="aktt_username">freegovinfo</a> ooo!  i&#39;m getting out the bread maker after lunch! <a href="http://twitter.com/freegovinfo/statuses/4372019942" class="aktt_tweet_reply">in reply to freegovinfo</a> <a href="http://twitter.com/declan/statuses/4372071267" class="aktt_tweet_time">#</a></li>
<li>hanging at SAN yesterday with @<a href="http://twitter.com/Flyered" class="aktt_username">Flyered</a> <a href="http://www.flickr.com/photos/gebl/3951776135/" rel="nofollow">http://www.flickr.com/photos/gebl/3951776135/</a> <a href="http://twitter.com/declan/statuses/4372993002" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> good thing i&#39;m not going then&#8230; wonder of Kunze will have his grill in again&#8230; <a href="http://twitter.com/pemulis/statuses/4372916189" class="aktt_tweet_reply">in reply to pemulis</a> <a href="http://twitter.com/declan/statuses/4373081742" class="aktt_tweet_time">#</a></li>
<li>.@<a href="http://twitter.com/tonyg" class="aktt_username">tonyg</a> sorry, Mr. Scaredy Priss.  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/4373444667" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> was that one or two people? <a href="http://twitter.com/pemulis/statuses/4373522757" class="aktt_tweet_reply">in reply to pemulis</a> <a href="http://twitter.com/declan/statuses/4373607725" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> <a href="http://bit.ly/sAi0A" rel="nofollow">http://bit.ly/sAi0A</a> <a href="http://twitter.com/pemulis/statuses/4373667437" class="aktt_tweet_reply">in reply to pemulis</a> <a href="http://twitter.com/declan/statuses/4373702364" class="aktt_tweet_time">#</a></li>
<li>RT @danwho: @<a href="http://twitter.com/declan" class="aktt_username">declan</a> @<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> AFTER the flight? I thought that was your prom photo. / YOUR MOM!!! <a href="http://xkcd.com/639/" rel="nofollow">http://xkcd.com/639/</a> <a href="http://twitter.com/declan/statuses/4373910707" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> i&#39;ve got diamonds on the soles of my shoes <a href="http://twitter.com/danwho/statuses/4373701999" class="aktt_tweet_reply">in reply to danwho</a> <a href="http://twitter.com/declan/statuses/4373938571" class="aktt_tweet_time">#</a></li>
<li>RT @DwayneDomi: @<a href="http://twitter.com/declan" class="aktt_username">declan</a> @<a href="http://twitter.com/dcrane2" class="aktt_username">dcrane2</a> @<a href="http://twitter.com/sdmike" class="aktt_username">sdmike</a> any poker plans this weekend? / not that i&#39;ve heard &#8211; i&#39;m game tho! <a href="http://twitter.com/declan/statuses/4373948152" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/thepegisin" class="aktt_username">thepegisin</a> then he spent $3000 on beer. <a href="http://twitter.com/thepegisin/statuses/4373687394" class="aktt_tweet_reply">in reply to thepegisin</a> <a href="http://twitter.com/declan/statuses/4373956580" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dchud" class="aktt_username">dchud</a> glad you&#39;ll be there, sad about your hackfest missingness! <a href="http://twitter.com/dchud/statuses/4374804062" class="aktt_tweet_reply">in reply to dchud</a> <a href="http://twitter.com/declan/statuses/4374826293" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/thepegisin" class="aktt_username">thepegisin</a> ah, you gotta keep him drunk?  don&#39;t blame ya. <a href="http://twitter.com/thepegisin/statuses/4376516703" class="aktt_tweet_reply">in reply to thepegisin</a> <a href="http://twitter.com/declan/statuses/4378389629" class="aktt_tweet_time">#</a></li>
<li>RT @Smiff: Kinda neat: <a href="http://www.worldometers.info/" rel="nofollow">http://www.worldometers.info/</a> &#8211; world statistics updated in real time / when do i level up? <a href="http://twitter.com/declan/statuses/4380035978" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MitchWagner" class="aktt_username">MitchWagner</a> mms me, baby! <a href="http://twitter.com/MitchWagner/statuses/4378590319" class="aktt_tweet_reply">in reply to MitchWagner</a> <a href="http://twitter.com/declan/statuses/4380082011" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/radaly" class="aktt_username">radaly</a> dude!  i could lend you one of those too&#8230; <a href="http://twitter.com/radaly/statuses/4380099740" class="aktt_tweet_reply">in reply to radaly</a> <a href="http://twitter.com/declan/statuses/4380155363" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> define #<a href="http://search.twitter.com/search?q=%23beersummit" class="aktt_hashtag">beersummit</a> <a href="http://twitter.com/RedTheTrucker/statuses/4377830988" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/4380190664" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> ecards are the devil <a href="http://twitter.com/Altair77/statuses/4377628939" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4380242215" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> ecards are carriers of viri &#8211; seriously, I don&#39;t open them. <a href="http://twitter.com/Altair77/statuses/4380771910" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4380824123" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> got a hot date! <a href="http://twitter.com/SDMike/statuses/4382306918" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/4382324240" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> no kids and good beer&#8230; that&#39;s a hot date&#8230; or a #<a href="http://search.twitter.com/search?q=%23beersummit" class="aktt_hashtag">beersummit</a>, eh @<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> ? <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/SDMike/statuses/4382876118" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/4386006909" class="aktt_tweet_time">#</a></li>
<li>about to sample one of the maui stones! <a href="http://twitter.com/declan/statuses/4386025096" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/abull" class="aktt_username">abull</a> sushi too? <a href="http://twitter.com/abull/statuses/4385106494" class="aktt_tweet_reply">in reply to abull</a> <a href="http://twitter.com/declan/statuses/4386130845" class="aktt_tweet_time">#</a></li>
<li>RT @badbanana: They didn&#39;t have G20 riots when I was in college. I did get pretty pissed off about the New Coke thing, though. <a href="http://twitter.com/declan/statuses/4386189591" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> @<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> i think some folks are going to @<a href="http://twitter.com/smallbar" class="aktt_username">smallbar</a>  tomorrow at 4p. <a href="http://twitter.com/RedTheTrucker/statuses/4384595934" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/4386308151" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> Toronado is way too loud <a href="http://twitter.com/RedTheTrucker/statuses/4384560282" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/4386316416" class="aktt_tweet_time">#</a></li>
<li>&quot;Ralph had 80 stitches in his crotch.&quot; i feel that we picked the wrong entertainment for the night&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/4386385490" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> 4628 Park Blvd = small bar san diego <a href="http://lmgtfy.com/?q=small+bar+san+diego" rel="nofollow">http://lmgtfy.com/?q=small+bar+san+diego</a> <a href="http://twitter.com/dantecl/statuses/4386379070" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4386442156" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> i&#39;ve become a librarian.  bitter and helpful. <a href="http://twitter.com/dantecl/statuses/4386520226" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4386553803" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/faryl" class="aktt_username">faryl</a> you&#39;re not a guy?!? <a href="http://twitter.com/faryl/statuses/4381750376" class="aktt_tweet_reply">in reply to faryl</a> <a href="http://twitter.com/declan/statuses/4386628462" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> but not balding&#8230; <a href="http://twitter.com/dantecl/statuses/4386781203" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4386804266" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/lmgtfy" class="aktt_username">lmgtfy</a> you ROCK! <a href="http://twitter.com/declan/statuses/4387116802" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/badbanana" class="aktt_username">badbanana</a> i&#39;d buy THAT for a DOLLAR! <a href="http://twitter.com/badbanana/statuses/4387067668" class="aktt_tweet_reply">in reply to badbanana</a> <a href="http://twitter.com/declan/statuses/4387174002" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/kworkman" class="aktt_username">kworkman</a> drunken domain name registrations should be a registered mental condition <a href="http://twitter.com/kworkman/statuses/4388053752" class="aktt_tweet_reply">in reply to kworkman</a> <a href="http://twitter.com/declan/statuses/4388195603" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/iamtimmo" class="aktt_username">iamtimmo</a> nikon drools, canon rulz <a href="http://twitter.com/iamtimmo/statuses/4387983906" class="aktt_tweet_reply">in reply to iamtimmo</a> <a href="http://twitter.com/declan/statuses/4388205253" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/martinemde" class="aktt_username">martinemde</a> i kinda hate you @<a href="http://twitter.com/gabf" class="aktt_username">gabf</a> guys&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/martinemde/statuses/4387328729" class="aktt_tweet_reply">in reply to martinemde</a> <a href="http://twitter.com/declan/statuses/4388257133" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/martinemde" class="aktt_username">martinemde</a> well, I love the dark stuff! <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  if you see one called Dark Horizons, try it! Superb!  @<a href="http://twitter.com/hober" class="aktt_username">hober</a> got me one for my birthday. <a href="http://twitter.com/martinemde/statuses/4389900777" class="aktt_tweet_reply">in reply to martinemde</a> <a href="http://twitter.com/declan/statuses/4395291501" class="aktt_tweet_time">#</a></li>
<li>Hey Chicago peeps! Buddy @<a href="http://twitter.com/bjschone" class="aktt_username">bjschone</a> is touring around downtown today. What shouldn&#39;t he miss? <a href="http://twitter.com/bjschone/statuses/4393320397" class="aktt_tweet_reply">in reply to bjschone</a> <a href="http://twitter.com/declan/statuses/4395482743" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jcarrico" class="aktt_username">jcarrico</a> are you staying above water? <a href="http://twitter.com/jcarrico/statuses/4396042341" class="aktt_tweet_reply">in reply to jcarrico</a> <a href="http://twitter.com/declan/statuses/4396071478" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/faryl" class="aktt_username">faryl</a> the pink hair threw me off <a href="http://twitter.com/faryl/statuses/4401573747" class="aktt_tweet_reply">in reply to faryl</a> <a href="http://twitter.com/declan/statuses/4402369441" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/lostabbey" class="aktt_username">lostabbey</a> congrats! <a href="http://twitter.com/lostabbey/statuses/4401976324" class="aktt_tweet_reply">in reply to lostabbey</a> <a href="http://twitter.com/declan/statuses/4402381290" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/kirinqueen" class="aktt_username">kirinqueen</a> want to bike around the bay with us tomorrow?  Meeting at the Star of India at 9a.  about a 25 mile ride, very flat. <a href="http://twitter.com/kirinqueen/statuses/4400892131" class="aktt_tweet_reply">in reply to kirinqueen</a> <a href="http://twitter.com/declan/statuses/4402489639" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/brynn" class="aktt_username">brynn</a> sage travels! <a href="http://twitter.com/brynn/statuses/4400724703" class="aktt_tweet_reply">in reply to brynn</a> <a href="http://twitter.com/declan/statuses/4402496526" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/brynn" class="aktt_username">brynn</a> safe too. <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/brynn/statuses/4400724703" class="aktt_tweet_reply">in reply to brynn</a> <a href="http://twitter.com/declan/statuses/4402500511" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> @<a href="http://twitter.com/souplantation" class="aktt_username">souplantation</a> look for @<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> and @<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> <a href="http://twitter.com/dantecl/statuses/4405124722" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4405724322" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> did you find someone who didn&#39;t mind talking to you? <a href="http://twitter.com/dantecl/statuses/4406161087" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4406409231" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jcarrico" class="aktt_username">jcarrico</a> glad yer ok! <a href="http://twitter.com/jcarrico/statuses/4414649235" class="aktt_tweet_reply">in reply to jcarrico</a> <a href="http://twitter.com/declan/statuses/4417204170" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/martinemde" class="aktt_username">martinemde</a> that&#39;s an amazing list! There&#39;s a 2007 Decadence Barrel Aged?!? Me wants!!! <a href="http://twitter.com/martinemde/statuses/4413463294" class="aktt_tweet_reply">in reply to martinemde</a> <a href="http://twitter.com/declan/statuses/4417251374" class="aktt_tweet_time">#</a></li>
<li>.@<a href="http://twitter.com/AmericanHarmony" class="aktt_username">AmericanHarmony</a> congrats! <a href="http://twitter.com/declan/statuses/4417535653" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> it&#39;s common in business and finance. <a href="http://twitter.com/bmljenny/statuses/4417532716" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/4417546225" class="aktt_tweet_time">#</a></li>
<li>About to head downtown to bike around the bay. DZAkins tempts me, yet I resist! <a href="http://twitter.com/declan/statuses/4417572655" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2009/09/27/twitter-weekly-updates-for-2009-09-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-09-20</title>
		<link>http://www.declan.net/2009/09/20/twitter-weekly-updates-for-2009-09-20/</link>
		<comments>http://www.declan.net/2009/09/20/twitter-weekly-updates-for-2009-09-20/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 15:57:00 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/2009/09/20/twitter-weekly-updates-for-2009-09-20/</guid>
		<description><![CDATA[@Altair77 congrats! in reply to Altair77 # yardwork sux # i&#39;m all scratched up and my hands are dirty&#8230; i thought i was a geek&#8230; # My weekend http://twitpic.com/hna5j # rss is kicking my booty&#8230; some times it&#39;s &#60; sometimes it&#39;s &#38;lt sometimes there&#39;s ![CDATA[ and sometimes it all just poofs. suck it, web. # [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> congrats! <a href="http://twitter.com/Altair77/statuses/3957220435" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/3957255460" class="aktt_tweet_time">#</a></li>
<li>yardwork sux <a href="http://twitter.com/declan/statuses/3961024828" class="aktt_tweet_time">#</a></li>
<li>i&#39;m all scratched up and my hands are dirty&#8230; i thought i was a geek&#8230; <a href="http://twitter.com/declan/statuses/3961334702" class="aktt_tweet_time">#</a></li>
<li>My weekend <a href="http://twitpic.com/hna5j" rel="nofollow">http://twitpic.com/hna5j</a> <a href="http://twitter.com/declan/statuses/3963663318" class="aktt_tweet_time">#</a></li>
<li>rss is kicking my booty&#8230; some times it&#39;s &lt; sometimes it&#39;s &amp;lt sometimes there&#39;s ![CDATA[ and sometimes it all just poofs.  suck it, web. <a href="http://twitter.com/declan/statuses/3968955124" class="aktt_tweet_time">#</a></li>
<li>can&#39;t write another word&#8230; and so far it&#39;s mostly been template work&#8230; <a href="http://twitter.com/declan/statuses/3974860716" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDBloggers" class="aktt_username">SDBloggers</a> I modified the pipe to include the &quot;via&quot; again. See results @declantest. <a href="http://twitter.com/SDBloggers/statuses/3975111246" class="aktt_tweet_reply">in reply to SDBloggers</a> <a href="http://twitter.com/declan/statuses/3980723101" class="aktt_tweet_time">#</a></li>
<li>i&#39;m getting old&#8230; forgot my reading glasses, and couldn&#39;t figure out why I wasn&#39;t hearing my music well &#8211; gotta plug in the headphones&#8230; <a href="http://twitter.com/declan/statuses/3982799741" class="aktt_tweet_time">#</a></li>
<li>and speaking of getting old&#8230; Come join me and @<a href="http://twitter.com/zenchaos" class="aktt_username">zenchaos</a> @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> next Saturday, 9/19, at 2p to celebrate our birthdays! <a href="http://twitter.com/declan/statuses/3982823552" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> speaking of segues&#8230; how was that Oskar Blues Gordan? Try the Old Chub or Ten Fidy &#8211; sometimes available at Bevmo <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/SDMike/statuses/3982997063" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/3983076180" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/czukowski" class="aktt_username">czukowski</a> try to not wear it inside out.  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/czukowski/statuses/3982142859" class="aktt_tweet_reply">in reply to czukowski</a> <a href="http://twitter.com/declan/statuses/3983313585" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/freegovinfo" class="aktt_username">freegovinfo</a> you might want to follow @<a href="http://twitter.com/mitchwagner" class="aktt_username">mitchwagner</a> this morning.  live tweeting a lot of gov data stuff from #<a href="http://search.twitter.com/search?q=%23iw500" class="aktt_hashtag">iw500</a> <a href="http://twitter.com/freegovinfo/statuses/3981969888" class="aktt_tweet_reply">in reply to freegovinfo</a> <a href="http://twitter.com/declan/statuses/3983336600" class="aktt_tweet_time">#</a></li>
<li>RT @kworkman: Looking for white papers on social media campagins impacting ROI with hard sales numbers to montly net, and historical comps. <a href="http://twitter.com/declan/statuses/3983516538" class="aktt_tweet_time">#</a></li>
<li>RT @lostabbey: Come to &quot;Third Annual Barrel Tasting Party&quot; Saturday, November 7 from 7:00 pm to 10:00 pm. <a href="http://bit.ly/aPCdp" rel="nofollow">http://bit.ly/aPCdp</a> / mmm! <a href="http://twitter.com/declan/statuses/3985221768" class="aktt_tweet_time">#</a></li>
<li>&quot;Project Managed&quot; is an ugly verbing <a href="http://twitter.com/declan/statuses/3985346880" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> hey, just $150 for a couple! and my birthday IS coming&#8230; just sayin&#39;&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/bmljenny/statuses/3985244635" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/3985357788" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> suuuure yer home sick&#8230; with yer tshirt packages and internets&#8230; <a href="http://twitter.com/bmljenny/statuses/3987447139" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/3987614754" class="aktt_tweet_time">#</a></li>
<li>we need more than 2 bathrooms on a floor with 50 people.  @<a href="http://twitter.com/jraimond" class="aktt_username">jraimond</a> &#8211; get ON that.  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/3987668754" class="aktt_tweet_time">#</a></li>
<li>the camera angles on this Chargers game are teh suck <a href="http://twitter.com/declan/statuses/3996516005" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/kworkman" class="aktt_username">kworkman</a> wow, no invite! #<a href="http://search.twitter.com/search?q=%23onosushi" class="aktt_hashtag">onosushi</a> <a href="http://twitter.com/declan/statuses/3996561993" class="aktt_tweet_time">#</a></li>
<li>RT @pfanderson: RT @<a href="http://twitter.com/rstevens" class="aktt_username">rstevens</a> Bacon bits are the glitter of the culinary world. /  body glitter <a href="http://twitter.com/declan/statuses/3997102759" class="aktt_tweet_time">#</a></li>
<li>@czukowski, @<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> meet @<a href="http://twitter.com/lizosaurusrex" class="aktt_username">lizosaurusrex</a> &#8211; liz, they&#39;re perving about HDOOS Girls <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/3997286857" class="aktt_tweet_time">#</a></li>
<li>RT @SDRadio: @<a href="http://twitter.com/prprosandiego" class="aktt_username">prprosandiego</a> @<a href="http://twitter.com/cantondog" class="aktt_username">cantondog</a> @<a href="http://twitter.com/viss" class="aktt_username">viss</a> @<a href="http://twitter.com/mrgunn" class="aktt_username">mrgunn</a> @<a href="http://twitter.com/binarywolf" class="aktt_username">binarywolf</a> @<a href="http://twitter.com/Declan" class="aktt_username">Declan</a> @<a href="http://twitter.com/sdbn" class="aktt_username">sdbn</a> @<a href="http://twitter.com/steveblessing" class="aktt_username">steveblessing</a> Calahans Mira Mesa Friday 4:30pm. <a href="http://twitter.com/declan/statuses/3997295799" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDRadio" class="aktt_username">SDRadio</a> mine is Saturday! join us @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> at 2p! <a href="http://twitter.com/SDRadio/statuses/3997396937" class="aktt_tweet_reply">in reply to SDRadio</a> <a href="http://twitter.com/declan/statuses/3997438753" class="aktt_tweet_time">#</a></li>
<li>oh yeah, hey Ivan, we&#39;re coming to @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> on Saturday at 2p for my birthday.  hide the good china.  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/3997659405" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDTechGirl" class="aktt_username">SDTechGirl</a> whatcha doing for @zenchaos&#39;s birthday on Friday?!? we won&#39;t tell him, promise! <a href="http://twitter.com/SDTechGirl/statuses/3997639227" class="aktt_tweet_reply">in reply to SDTechGirl</a> <a href="http://twitter.com/declan/statuses/3997683366" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Cannibal" class="aktt_username">Cannibal</a> oh man, those look awesome! <a href="http://twitter.com/Cannibal/statuses/3996710834" class="aktt_tweet_reply">in reply to Cannibal</a> <a href="http://twitter.com/declan/statuses/3997712635" class="aktt_tweet_time">#</a></li>
<li>RT @czukowski: @<a href="http://twitter.com/sdtj" class="aktt_username">sdtj</a> It&#39;s not private if it&#39;s on Twitter&#8230;.#justsaying <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  / werd. <a href="http://twitter.com/declan/statuses/3997736265" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/nicmcc" class="aktt_username">nicmcc</a> you better be there!  Just don&#39;t being @<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/nicmcc/statuses/3997741408" class="aktt_tweet_reply">in reply to nicmcc</a> <a href="http://twitter.com/declan/statuses/3997759278" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> is enuf Chargers get hurt, they can switch games <a href="http://twitter.com/danwho/statuses/3998267471" class="aktt_tweet_reply">in reply to danwho</a> <a href="http://twitter.com/declan/statuses/3998283690" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/nicmcc" class="aktt_username">nicmcc</a> ozone <a href="http://twitter.com/nicmcc/statuses/3998249810" class="aktt_tweet_reply">in reply to nicmcc</a> <a href="http://twitter.com/declan/statuses/3998291879" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/shannatrenholm" class="aktt_username">shannatrenholm</a> like i&#39;m going to click on that&#8230; <a href="http://twitter.com/shannatrenholm/statuses/3998202817" class="aktt_tweet_reply">in reply to shannatrenholm</a> <a href="http://twitter.com/declan/statuses/3998309004" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/shannatrenholm" class="aktt_username">shannatrenholm</a> the &quot;labial&quot; part scares me <a href="http://twitter.com/shannatrenholm/statuses/3998328593" class="aktt_tweet_reply">in reply to shannatrenholm</a> <a href="http://twitter.com/declan/statuses/3998340430" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/shannatrenholm" class="aktt_username">shannatrenholm</a> yes, i&#39;m 12. <a href="http://twitter.com/shannatrenholm/statuses/3998328593" class="aktt_tweet_reply">in reply to shannatrenholm</a> <a href="http://twitter.com/declan/statuses/3998343761" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/alexandrabeth" class="aktt_username">alexandrabeth</a> well, it IS getting foggy out.  somewhere. <a href="http://twitter.com/alexandrabeth/statuses/3998429856" class="aktt_tweet_reply">in reply to alexandrabeth</a> <a href="http://twitter.com/declan/statuses/3998458147" class="aktt_tweet_time">#</a></li>
<li>RT @DowntownRob: Checking out Fast Flip, it&#39;s pretty cool. <a href="http://is.gd/3hKKM" rel="nofollow">http://is.gd/3hKKM</a> / pretty neat! <a href="http://twitter.com/declan/statuses/3998625017" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sdbonez" class="aktt_username">sdbonez</a> you should come out! <a href="http://twitter.com/sdbonez/statuses/3998568846" class="aktt_tweet_reply">in reply to sdbonez</a> <a href="http://twitter.com/declan/statuses/3998656469" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sdbonez" class="aktt_username">sdbonez</a> @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> on Saturday 2p <a href="http://twitter.com/sdbonez/statuses/3998691428" class="aktt_tweet_reply">in reply to sdbonez</a> <a href="http://twitter.com/declan/statuses/3998820494" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/adamlevenson" class="aktt_username">adamlevenson</a> blow on it. <a href="http://twitter.com/adamlevenson/statuses/3999029894" class="aktt_tweet_reply">in reply to adamlevenson</a> <a href="http://twitter.com/declan/statuses/3999043545" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/lorcanD" class="aktt_username">lorcanD</a> we call them the IT Department&#8230; Har har <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  #<a href="http://search.twitter.com/search?q=%23sadgargoylesjok" class="aktt_hashtag">sadgargoylesjok</a>e <a href="http://twitter.com/lorcanD/statuses/4004690901" class="aktt_tweet_reply">in reply to lorcanD</a> <a href="http://twitter.com/declan/statuses/4005484465" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/maigrey" class="aktt_username">maigrey</a> sorry about that. What did you get me?!? <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/maigrey/statuses/4005524928" class="aktt_tweet_reply">in reply to maigrey</a> <a href="http://twitter.com/declan/statuses/4005539801" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jraimond" class="aktt_username">jraimond</a> that&#39;s funny, I call yer office &quot;The Danger Zone&quot; <a href="http://twitter.com/jraimond/statuses/4005216470" class="aktt_tweet_reply">in reply to jraimond</a> <a href="http://twitter.com/declan/statuses/4005565654" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/maigrey" class="aktt_username">maigrey</a> woohoo!!! Wait, that&#39;s not a 5D Mark II! <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/maigrey/statuses/4005559673" class="aktt_tweet_reply">in reply to maigrey</a> <a href="http://twitter.com/declan/statuses/4005583444" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/lorcanD" class="aktt_username">lorcanD</a> well i&#39;m the head of IT, so I know.  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  &quot;gargoyles served as protectors, keeping evil away from the buildings and their occupants&quot; <a href="http://twitter.com/lorcanD/statuses/4007384344" class="aktt_tweet_reply">in reply to lorcanD</a> <a href="http://twitter.com/declan/statuses/4007500522" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/lorcanD" class="aktt_username">lorcanD</a> or are just waterspouts, another common IT function  <a href="http://bit.ly/1U2C2q" rel="nofollow">http://bit.ly/1U2C2q</a> <a href="http://twitter.com/lorcanD/statuses/4007384344" class="aktt_tweet_reply">in reply to lorcanD</a> <a href="http://twitter.com/declan/statuses/4007520882" class="aktt_tweet_time">#</a></li>
<li>come celebrate aging! join me and @<a href="http://twitter.com/zenchaos" class="aktt_username">zenchaos</a> (if you don&#39;t know him, that&#39;s ok.  He&#39;s alright) @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> on Saturday 9/19 at 2p <a href="http://twitter.com/declan/statuses/4007554742" class="aktt_tweet_time">#</a></li>
<li>RT @zenchaos: Secret to Happiness <a href="http://post.ly/5Dpn" rel="nofollow">http://post.ly/5Dpn</a> <a href="http://twitter.com/declan/statuses/4007613442" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> i&#39;m guessing it had something to do with magnification <a href="http://twitter.com/pemulis/statuses/4007988929" class="aktt_tweet_reply">in reply to pemulis</a> <a href="http://twitter.com/declan/statuses/4008618819" class="aktt_tweet_time">#</a></li>
<li>from @<a href="http://twitter.com/gebl" class="aktt_username">gebl</a> <a href="http://twitter.com/letyoufinish" rel="nofollow">http://twitter.com/letyoufinish</a> <a href="http://twitter.com/declan/statuses/4008677528" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mattcritchlow" class="aktt_username">mattcritchlow</a> suuuure, like you were even out of bed before now&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/mattcritchlow/statuses/4008663643" class="aktt_tweet_reply">in reply to mattcritchlow</a> <a href="http://twitter.com/declan/statuses/4008683778" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/nicmcc" class="aktt_username">nicmcc</a> @<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> this is why i mainly have meetings at a bar <a href="http://twitter.com/nicmcc/statuses/4008885562" class="aktt_tweet_reply">in reply to nicmcc</a> <a href="http://twitter.com/declan/statuses/4008993392" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> absolutely! <a href="http://twitter.com/bmljenny/statuses/4009064901" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/4009091199" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> dammit, why did you breathe on me?!? and I was hiding out at Perks! <a href="http://twitter.com/bmljenny/statuses/4009079458" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/4009105127" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/alxp" class="aktt_username">alxp</a> i can&#39;t believe for a minute that you can&#39;t get a trivia night going for Access <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/alxp/statuses/4009146426" class="aktt_tweet_reply">in reply to alxp</a> <a href="http://twitter.com/declan/statuses/4009275434" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> excellent idea!  and put all dark beers on tap.  no hops. <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/churchills/statuses/4009935080" class="aktt_tweet_reply">in reply to churchills</a> <a href="http://twitter.com/declan/statuses/4010225836" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> hey, are we going to conflict with the Jack Daniels dinner?  showing up at 2p &#8211; when do you need us gone? <a href="http://twitter.com/churchills/statuses/4009935080" class="aktt_tweet_reply">in reply to churchills</a> <a href="http://twitter.com/declan/statuses/4010305210" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> timing sound great, and barrel sounds even better!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/churchills/statuses/4011146177" class="aktt_tweet_reply">in reply to churchills</a> <a href="http://twitter.com/declan/statuses/4012377419" class="aktt_tweet_time">#</a></li>
<li>OMG, just saw @pemulis&#39;s haircut!  He needs to sue. <a href="http://twitter.com/declan/statuses/4013500198" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/taphunter" class="aktt_username">taphunter</a> i&#39;m so jealous!  someday i&#39;ll make it to @gabf! <a href="http://twitter.com/taphunter/statuses/4014104841" class="aktt_tweet_reply">in reply to taphunter</a> <a href="http://twitter.com/declan/statuses/4014327377" class="aktt_tweet_time">#</a></li>
<li>RT @czukowski: The &quot;Cougar&quot; Snuggie @<a href="http://twitter.com/ToysRUs" class="aktt_username">ToysRUs</a>  <a href="http://mypict.me/Eofg" rel="nofollow">http://mypict.me/Eofg</a> <a href="http://twitter.com/declan/statuses/4015916205" class="aktt_tweet_time">#</a></li>
<li>RT @SDTechGirl: Beer &amp; Cake &#8211; Churchill&#39;s Pub in San Marcos, Saturday August 19th, 2pm. Be there&#8230;..@<a href="http://twitter.com/zenchaos" class="aktt_username">zenchaos</a> &#39; 40th &amp;  @<a href="http://twitter.com/Declan" class="aktt_username">Declan</a> &#39;s awesome! <a href="http://twitter.com/declan/statuses/4016302886" class="aktt_tweet_time">#</a></li>
<li>hmm, tweetdeck has lost my all friends and mentions columns&#8230; <a href="http://twitter.com/declan/statuses/4020679396" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Imagium" class="aktt_username">Imagium</a> that doesn&#39;t suck. <a href="http://twitter.com/Imagium/statuses/4020271741" class="aktt_tweet_reply">in reply to Imagium</a> <a href="http://twitter.com/declan/statuses/4020727590" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/auroraawakes" class="aktt_username">auroraawakes</a> i say &quot;People Soup&quot; ew <a href="http://twitter.com/auroraawakes/statuses/4020748051" class="aktt_tweet_reply">in reply to auroraawakes</a> <a href="http://twitter.com/declan/statuses/4020755166" class="aktt_tweet_time">#</a></li>
<li>come celebrate aging! join me and @<a href="http://twitter.com/zenchaos" class="aktt_username">zenchaos</a> (if you don&#39;t know him, that&#39;s ok. He&#39;s ok) @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> on Saturday 9/19 at 2p <a href="http://twitter.com/declan/statuses/4021042676" class="aktt_tweet_time">#</a></li>
<li>.@<a href="http://twitter.com/martinemde" class="aktt_username">martinemde</a> man, hair of the dog is one of my faves &#8211; introduced to it by @<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> (terrible haircuts but great taste in beer)! <a href="http://twitter.com/declan/statuses/4021145141" class="aktt_tweet_time">#</a></li>
<li>i am SO abusing DM <a href="http://twitter.com/declan/statuses/4021167270" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/czukowski" class="aktt_username">czukowski</a> had to kill the tweetdeck process, then it restarted cleanly.  thanks! <a href="http://twitter.com/czukowski/statuses/4020907921" class="aktt_tweet_reply">in reply to czukowski</a> <a href="http://twitter.com/declan/statuses/4021176792" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> dude, careful with yer &quot;special&quot; DMs <a href="http://twitter.com/SDMike/statuses/4021619878" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/4021656869" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/marycanady" class="aktt_username">marycanady</a> that&#39;s @bmljenny&#39;s fave beer! <a href="http://twitter.com/marycanady/statuses/4021242454" class="aktt_tweet_reply">in reply to marycanady</a> <a href="http://twitter.com/declan/statuses/4021674725" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mikedashg" class="aktt_username">mikedashg</a> yer killin&#39; me <a href="http://twitter.com/mikedashg/statuses/4021592754" class="aktt_tweet_reply">in reply to mikedashg</a> <a href="http://twitter.com/declan/statuses/4021691338" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Gile77" class="aktt_username">Gile77</a> /me weeps!  is there any Hair of the Dog left? <a href="http://twitter.com/Gile77/statuses/4021394257" class="aktt_tweet_reply">in reply to Gile77</a> <a href="http://twitter.com/declan/statuses/4021769561" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/marycanady" class="aktt_username">marycanady</a> she&#39;s all about the wood.  wait, that doesn&#39;t sound right&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  #<a href="http://search.twitter.com/search?q=%23gonnagetmybuttk" class="aktt_hashtag">gonnagetmybuttk</a>icked <a href="http://twitter.com/marycanady/statuses/4021782942" class="aktt_tweet_reply">in reply to marycanady</a> <a href="http://twitter.com/declan/statuses/4021811410" class="aktt_tweet_time">#</a></li>
<li>oh crap, I thought @<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> would be passed out by now&#8230; <a href="http://twitter.com/declan/statuses/4021830954" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mikedashg" class="aktt_username">mikedashg</a> when i see you, you lose the rest of yer hair.  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/mikedashg/statuses/4021823078" class="aktt_tweet_reply">in reply to mikedashg</a> <a href="http://twitter.com/declan/statuses/4021848493" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> Paddy Keenan looks kinda interesting&#8230; if i&#39;m not too hung over on Sunday&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/bmljenny/statuses/4021937220" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/4021987674" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/VirtueIMC" class="aktt_username">VirtueIMC</a> nuthin. <a href="http://twitter.com/VirtueIMC/statuses/4021895341" class="aktt_tweet_reply">in reply to VirtueIMC</a> <a href="http://twitter.com/declan/statuses/4021991621" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mikedashg" class="aktt_username">mikedashg</a> how about that bacon beer you mixed?  ew.  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/mikedashg/statuses/4022004009" class="aktt_tweet_reply">in reply to mikedashg</a> <a href="http://twitter.com/declan/statuses/4022026925" class="aktt_tweet_time">#</a></li>
<li>.@<a href="http://twitter.com/Gile77" class="aktt_username">Gile77</a> does Holiday normally stock Hair of the Dog?  I&#39;ve only found it @<a href="http://twitter.com/SouthBayDrugs" class="aktt_username">SouthBayDrugs</a>  (another @<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> tip) <a href="http://twitter.com/declan/statuses/4022052594" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SanctuaryMsg" class="aktt_username">SanctuaryMsg</a> oh, it&#39;s hot alright!  ok, that was a lie.  a little sweaty maybe&#8230; <a href="http://twitter.com/SanctuaryMsg/statuses/4022081283" class="aktt_tweet_reply">in reply to SanctuaryMsg</a> <a href="http://twitter.com/declan/statuses/4022109079" class="aktt_tweet_time">#</a></li>
<li>i love peeking in @cschone44&#39;s open windows!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/4022116596" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Gile77" class="aktt_username">Gile77</a> thanks! don&#39;t know if i&#39;ve tried Ruth. big Adam and Fred fan. <a href="http://twitter.com/Gile77/statuses/4022133340" class="aktt_tweet_reply">in reply to Gile77</a> <a href="http://twitter.com/declan/statuses/4022193884" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cschone44" class="aktt_username">cschone44</a> i&#39;m a peeping tom, but i don&#39;t tell stories!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/cschone44/statuses/4022182270" class="aktt_tweet_reply">in reply to cschone44</a> <a href="http://twitter.com/declan/statuses/4022219901" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mikedashg" class="aktt_username">mikedashg</a> ah!  thought that was yer blended 08 and 09 SeaSerpent.  at that point, i was GONE. that fruit beer wiped me <a href="http://twitter.com/mikedashg/statuses/4022270136" class="aktt_tweet_reply">in reply to mikedashg</a> <a href="http://twitter.com/declan/statuses/4022299292" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> if you had a car, you could come spelunk my garage for a good set <a href="http://twitter.com/bmljenny/statuses/4022189156" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/4022312192" class="aktt_tweet_time">#</a></li>
<li>RT @pemulis: @<a href="http://twitter.com/declan" class="aktt_username">declan</a> For the record, Whole Foods and Servall also have Hair of the Dog. / thanks! <a href="http://twitter.com/declan/statuses/4023098335" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/VirtueIMC" class="aktt_username">VirtueIMC</a> speaking of lies&#8230;. <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/VirtueIMC/statuses/4023135071" class="aktt_tweet_reply">in reply to VirtueIMC</a> <a href="http://twitter.com/declan/statuses/4023144584" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/CantonDog" class="aktt_username">CantonDog</a> MS Project is pretty darn good <a href="http://twitter.com/CantonDog/statuses/4023163773" class="aktt_tweet_reply">in reply to CantonDog</a> <a href="http://twitter.com/declan/statuses/4023176883" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/CantonDog" class="aktt_username">CantonDog</a> you could use Excel for about 70% of what MS Project does. Some of MSP&#39;s graphing and resource leveling is cool tho <a href="http://twitter.com/CantonDog/statuses/4023219612" class="aktt_tweet_reply">in reply to CantonDog</a> <a href="http://twitter.com/declan/statuses/4023561144" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/zenchaos" class="aktt_username">zenchaos</a> yer life is a loop <a href="http://twitter.com/zenchaos/statuses/4023522639" class="aktt_tweet_reply">in reply to zenchaos</a> <a href="http://twitter.com/declan/statuses/4023567812" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/declan_durcan" class="aktt_username">declan_durcan</a> congrats on the new kid! <a href="http://twitter.com/declan_durcan/statuses/4023354759" class="aktt_tweet_reply">in reply to declan_durcan</a> <a href="http://twitter.com/declan/statuses/4023580532" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/kenleyneufeld" class="aktt_username">kenleyneufeld</a> neato! <a href="http://twitter.com/kenleyneufeld/statuses/4029206739" class="aktt_tweet_reply">in reply to kenleyneufeld</a> <a href="http://twitter.com/declan/statuses/4029533137" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDRADIO" class="aktt_username">SDRADIO</a> happy birthday! <a href="http://twitter.com/declan/statuses/4029555408" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ScottBourne" class="aktt_username">ScottBourne</a> saw you got it working. Recently learned Hugin on the mac and it&#39;s pretty nice. <a href="http://twitter.com/ScottBourne/statuses/4025195953" class="aktt_tweet_reply">in reply to ScottBourne</a> <a href="http://twitter.com/declan/statuses/4029730460" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/hodgman" class="aktt_username">hodgman</a> James Taylor rocks. <a href="http://twitter.com/hodgman/statuses/4033858743" class="aktt_tweet_reply">in reply to hodgman</a> <a href="http://twitter.com/declan/statuses/4033893957" class="aktt_tweet_time">#</a></li>
<li>RT @badbanana: The Kindle version of Dan Brown&#39;s new book is outselling the hard copy on Amazon. Meaning nobody wants to be seen reading it. <a href="http://twitter.com/declan/statuses/4033956106" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/hober" class="aktt_username">hober</a> i&#39;d say it could be a slight negative <a href="http://twitter.com/hober/statuses/4039077873" class="aktt_tweet_reply">in reply to hober</a> <a href="http://twitter.com/declan/statuses/4039095715" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> mmm, love Yorkshire puddin! <a href="http://twitter.com/Altair77/statuses/4040247050" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4040274307" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/guy_713" class="aktt_username">guy_713</a> I think you have a 4p <a href="http://twitter.com/guy_713/statuses/4039780704" class="aktt_tweet_reply">in reply to guy_713</a> <a href="http://twitter.com/declan/statuses/4040285935" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/tonyg" class="aktt_username">tonyg</a> sounds like a phone call wit Dr. Seuss. <a href="http://twitter.com/tonyg/statuses/4039668498" class="aktt_tweet_reply">in reply to tonyg</a> <a href="http://twitter.com/declan/statuses/4040330630" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> visio? <a href="http://twitter.com/dantecl/statuses/4039469676" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4040354566" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> Blind Lady Ale House serves Mexican Coke too <a href="http://twitter.com/dantecl/statuses/4038142180" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4040440329" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/guy_713" class="aktt_username">guy_713</a> k, i moved it to 8a tomorrow.  gives you more time to make a better cake.  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/guy_713/statuses/4040412406" class="aktt_tweet_reply">in reply to guy_713</a> <a href="http://twitter.com/declan/statuses/4040514941" class="aktt_tweet_time">#</a></li>
<li>RT @beermolly: @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> I want Black Butte / me too!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/4040576635" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> i have a bottle at home <img src='http://www.declan.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/Altair77/statuses/4040832076" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4040918900" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Smiff" class="aktt_username">Smiff</a> a tasty, tasty unicorn. <a href="http://twitter.com/Smiff/statuses/4040959769" class="aktt_tweet_reply">in reply to Smiff</a> <a href="http://twitter.com/declan/statuses/4040997280" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/xocg" class="aktt_username">xocg</a> not a vodka fan? <a href="http://twitter.com/xocg/statuses/4040916650" class="aktt_tweet_reply">in reply to xocg</a> <a href="http://twitter.com/declan/statuses/4041003329" class="aktt_tweet_time">#</a></li>
<li>rad  <a href="http://threeframes.net/page/9" rel="nofollow">http://threeframes.net/page/9</a> <a href="http://twitter.com/declan/statuses/4041242326" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> mmm, bottle of pudding&#8230;. mmmm <a href="http://twitter.com/Altair77/statuses/4041276223" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4041396717" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> cry me a river <a href="http://twitter.com/bmljenny/statuses/4048070071" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/4048090844" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/tonyg" class="aktt_username">tonyg</a> there&#39;s an app for that&#8230; <a href="http://twitter.com/tonyg/statuses/4049136308" class="aktt_tweet_reply">in reply to tonyg</a> <a href="http://twitter.com/declan/statuses/4054812833" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> ever play Panzer Dragoon? Amazing game. I want a dragon. <a href="http://twitter.com/RedTheTrucker/statuses/4054545845" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/4054912086" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> yer whining about managing rather than doing&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   me, in spades. <a href="http://twitter.com/bmljenny/statuses/4055865580" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/4056474170" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/badbanana" class="aktt_username">badbanana</a> won&#39;t YOU feel bad if Loni get&#39;s ill?  BAAAADbanana! <a href="http://twitter.com/badbanana/statuses/4056156817" class="aktt_tweet_reply">in reply to badbanana</a> <a href="http://twitter.com/declan/statuses/4056749048" class="aktt_tweet_time">#</a></li>
<li>RT @DwayneDomi: #<a href="http://search.twitter.com/search?q=%23sdjobs" class="aktt_hashtag">sdjobs</a> #<a href="http://search.twitter.com/search?q=%23jobs" class="aktt_hashtag">jobs</a> I am hiring. ft benefits laid back agile Ajax Javascript HTML CSS PHP MySQL Linux VMWare DM me <a href="http://twitter.com/declan/statuses/4056752527" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> will you take my family and mortgage too?  ah, and the stupid dog. <a href="http://twitter.com/bmljenny/statuses/4056943931" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/4057711411" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/alxp" class="aktt_username">alxp</a> w00t! <img src='http://www.declan.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/alxp/statuses/4056676805" class="aktt_tweet_reply">in reply to alxp</a> <a href="http://twitter.com/declan/statuses/4058370199" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/brynn" class="aktt_username">brynn</a> <a href="http://bit.ly/2bEFG8" rel="nofollow">http://bit.ly/2bEFG8</a> <a href="http://twitter.com/brynn/statuses/4062786147" class="aktt_tweet_reply">in reply to brynn</a> <a href="http://twitter.com/declan/statuses/4062803055" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/brynn" class="aktt_username">brynn</a> is there a PEBCAK appendix? <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/brynn/statuses/4062862283" class="aktt_tweet_reply">in reply to brynn</a> <a href="http://twitter.com/declan/statuses/4063191453" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/fak3r" class="aktt_username">fak3r</a> Apples were toys. Real geeks had trs-80s. <a href="http://twitter.com/fak3r/statuses/4062952021" class="aktt_tweet_reply">in reply to fak3r</a> <a href="http://twitter.com/declan/statuses/4063256239" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/AdamHertz" class="aktt_username">AdamHertz</a> no kidding! That&#39;s a Search Win! <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/AdamHertz/statuses/4063251638" class="aktt_tweet_reply">in reply to AdamHertz</a> <a href="http://twitter.com/declan/statuses/4063301578" class="aktt_tweet_time">#</a></li>
<li>it&#39;s scary in the bottom of the liberry.  shouldn&#39;t leave ITD in the dark.  bad things could happen&#8230; <a href="http://twitter.com/declan/statuses/4063384743" class="aktt_tweet_time">#</a></li>
<li>RT @kworkman: If you&#39;re at a large IT shop (5000+) and have wide spread adoption of SSDs, I want to talk to you.  Please RT. <a href="http://twitter.com/declan/statuses/4064645083" class="aktt_tweet_time">#</a></li>
<li>Start sparging in the lauter when the wort level is about ½” above the grain bed. &#8211; aw yeah! <a href="http://twitter.com/declan/statuses/4065841549" class="aktt_tweet_time">#</a></li>
<li>my face has been defaced.  or en-birded! <a href="http://twitter.com/declan/statuses/4066000380" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/nicmcc" class="aktt_username">nicmcc</a> well, it DOES make look slimmer&#8230; <a href="http://twitter.com/nicmcc/statuses/4066010093" class="aktt_tweet_reply">in reply to nicmcc</a> <a href="http://twitter.com/declan/statuses/4066022135" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> someone with such a shiny head shouldn&#39;t taunt a bird. Especially with the way I eat. <a href="http://twitter.com/danwho/statuses/4066750467" class="aktt_tweet_reply">in reply to danwho</a> <a href="http://twitter.com/declan/statuses/4067142415" class="aktt_tweet_time">#</a></li>
<li>RT @binarywolf: @<a href="http://twitter.com/prprosandiego" class="aktt_username">prprosandiego</a> @<a href="http://twitter.com/cantondog" class="aktt_username">cantondog</a> @<a href="http://twitter.com/mrgunn" class="aktt_username">mrgunn</a> @<a href="http://twitter.com/declan" class="aktt_username">declan</a> @<a href="http://twitter.com/sdbn" class="aktt_username">sdbn</a> @<a href="http://twitter.com/steveblessing" class="aktt_username">steveblessing</a> Calahans Mira Mesa 4:30pm. #<a href="http://search.twitter.com/search?q=%23FridayBeerUp" class="aktt_hashtag">FridayBeerUp</a> (via @<a href="http://twitter.com/SDRadio" class="aktt_username">SDRadio</a>) <a href="http://twitter.com/declan/statuses/4069124513" class="aktt_tweet_time">#</a></li>
<li>RT @SDRadio: #<a href="http://search.twitter.com/search?q=%23FridayBeerUp" class="aktt_hashtag">FridayBeerUp</a> tomorrow! <a href="http://tinyurl.com/kmacr8" rel="nofollow">http://tinyurl.com/kmacr8</a> Open to all! We are at Calahans Mira Mesa Friday 4:30pm. to at least 8 <a href="http://twitter.com/declan/statuses/4069168137" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mollywood" class="aktt_username">mollywood</a> sorry, Molly. <img src='http://www.declan.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( <a href="http://twitter.com/mollywood/statuses/4071268311" class="aktt_tweet_reply">in reply to mollywood</a> <a href="http://twitter.com/declan/statuses/4073017334" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/anarchivist" class="aktt_username">anarchivist</a> you don&#39;t deserve perl <a href="http://twitter.com/anarchivist/statuses/4072649322" class="aktt_tweet_reply">in reply to anarchivist</a> <a href="http://twitter.com/declan/statuses/4073077571" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/nrek" class="aktt_username">nrek</a> WTF? Where were you, you asocial lump? <a href="http://twitter.com/nrek/statuses/4073152379" class="aktt_tweet_reply">in reply to nrek</a> <a href="http://twitter.com/declan/statuses/4073168823" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/nrek" class="aktt_username">nrek</a> oh, I wasn&#39;t acting&#8230; Sorry I missed you, bud! <a href="http://twitter.com/nrek/statuses/4073191640" class="aktt_tweet_reply">in reply to nrek</a> <a href="http://twitter.com/declan/statuses/4073211651" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/fak3r" class="aktt_username">fak3r</a> my trs-80 model I had a tape drive. Still have the computer <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/fak3r/statuses/4078464434" class="aktt_tweet_reply">in reply to fak3r</a> <a href="http://twitter.com/declan/statuses/4078970854" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> just went thru State of Play from netflix. Just awesome. <a href="http://twitter.com/pemulis/statuses/4074451807" class="aktt_tweet_reply">in reply to pemulis</a> <a href="http://twitter.com/declan/statuses/4079162553" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mzyw" class="aktt_username">mzyw</a> my garage is a wonderland. Of junk <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . <a href="http://twitter.com/mzyw/statuses/4079016173" class="aktt_tweet_reply">in reply to mzyw</a> <a href="http://twitter.com/declan/statuses/4079243601" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Viss" class="aktt_username">Viss</a> hey! Where&#39;s my birthday on that list?!? <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/Viss/statuses/4074200032" class="aktt_tweet_reply">in reply to Viss</a> <a href="http://twitter.com/declan/statuses/4079273016" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/flash716" class="aktt_username">flash716</a> thanks for the beer and beer talk last night! <a href="http://twitter.com/flash716/statuses/4073500334" class="aktt_tweet_reply">in reply to flash716</a> <a href="http://twitter.com/declan/statuses/4079401642" class="aktt_tweet_time">#</a></li>
<li>I&#39;m still a birdie&#8230; <a href="http://twitter.com/declan/statuses/4080450650" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/czukowski" class="aktt_username">czukowski</a> no!  I want them to fix it right!  I&#39;m and IT purist!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   actually, I want my pretty background back&#8230; <a href="http://twitter.com/czukowski/statuses/4080491479" class="aktt_tweet_reply">in reply to czukowski</a> <a href="http://twitter.com/declan/statuses/4080666088" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/djfiander" class="aktt_username">djfiander</a> heh! <a href="http://twitter.com/djfiander/statuses/4080468453" class="aktt_tweet_reply">in reply to djfiander</a> <a href="http://twitter.com/declan/statuses/4080669311" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/czukowski" class="aktt_username">czukowski</a> oh man, and THAT&#39;s the picture you went back too?  Headband Christy? <a href="http://twitter.com/czukowski/statuses/4080491479" class="aktt_tweet_reply">in reply to czukowski</a> <a href="http://twitter.com/declan/statuses/4080769666" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> good job! <a href="http://twitter.com/Altair77/statuses/4080164664" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4080816232" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> too salty. <a href="http://twitter.com/danwho/statuses/4081921469" class="aktt_tweet_reply">in reply to danwho</a> <a href="http://twitter.com/declan/statuses/4081966852" class="aktt_tweet_time">#</a></li>
<li>RT @badbanana: I&#39;m at that point on a huge writing project where I ponder disguises and fake passports. <a href="http://twitter.com/declan/statuses/4081973190" class="aktt_tweet_time">#</a></li>
<li>does my avatar still being gone violate the Twitter SLA?  Will I get a refund? <a href="http://twitter.com/declan/statuses/4083182896" class="aktt_tweet_time">#</a></li>
<li>PEWPEWPEW!!! <a href="http://bit.ly/k1Dp2" rel="nofollow">http://bit.ly/k1Dp2</a> from @<a href="http://twitter.com/gebl" class="aktt_username">gebl</a> <a href="http://twitter.com/declan/statuses/4083720887" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/techlifeweb" class="aktt_username">techlifeweb</a> hates pig farmers.  don&#39;t follow him. <a href="http://twitter.com/techlifeweb/statuses/4083655923" class="aktt_tweet_reply">in reply to techlifeweb</a> <a href="http://twitter.com/declan/statuses/4083790005" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mollywood" class="aktt_username">mollywood</a> do it!  worst feeling is that you can&#39;t do anything, so anything helps! <a href="http://twitter.com/mollywood/statuses/4083632694" class="aktt_tweet_reply">in reply to mollywood</a> <a href="http://twitter.com/declan/statuses/4083811930" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ginatrapani" class="aktt_username">ginatrapani</a> cookies help too.  Hey, we have the same birthday!  Happy Birthday tomorrow!  come join us @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> at 2p! <a href="http://twitter.com/ginatrapani/statuses/4087431798" class="aktt_tweet_reply">in reply to ginatrapani</a> <a href="http://twitter.com/declan/statuses/4087476964" class="aktt_tweet_time">#</a></li>
<li>Come watch us get older! join me and @<a href="http://twitter.com/zenchaos" class="aktt_username">zenchaos</a> for birthday brews @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> on Saturday 9/19 at 2p <a href="http://twitter.com/declan/statuses/4087508636" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ginatrapani" class="aktt_username">ginatrapani</a> oh man!  imagine a bunch of drunken geeks helping you with TWIG!!! <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   we&#39;ll be there a while if you want to join later. <a href="http://twitter.com/ginatrapani/statuses/4087513705" class="aktt_tweet_reply">in reply to ginatrapani</a> <a href="http://twitter.com/declan/statuses/4087547619" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/StoneBrewingCo" class="aktt_username">StoneBrewingCo</a> wow, that&#39;s beautiful!  Looks ready for lift off! <a href="http://twitter.com/StoneBrewingCo/statuses/4086795228" class="aktt_tweet_reply">in reply to StoneBrewingCo</a> <a href="http://twitter.com/declan/statuses/4087898713" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sdbn" class="aktt_username">sdbn</a> twitter fouled up and nuked a bunch of avatars and backgrounds.  they SAID they were fixing it. I guess i could just reset it. <a href="http://twitter.com/sdbn/statuses/4090184432" class="aktt_tweet_reply">in reply to sdbn</a> <a href="http://twitter.com/declan/statuses/4090263690" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sdbn" class="aktt_username">sdbn</a> <a href="http://bit.ly/3Vd4W9" rel="nofollow">http://bit.ly/3Vd4W9</a> <a href="http://twitter.com/sdbn/statuses/4090271014" class="aktt_tweet_reply">in reply to sdbn</a> <a href="http://twitter.com/declan/statuses/4090282925" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDRadio" class="aktt_username">SDRadio</a> i&#39;ll be there soon!  best intentions&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/SDRadio/statuses/4090167200" class="aktt_tweet_reply">in reply to SDRadio</a> <a href="http://twitter.com/declan/statuses/4090310665" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> get out a glow stick and rave!  had to use one when the lights went out in the bathrooms downstairs yesterday <a href="http://twitter.com/Altair77/statuses/4090034573" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4090334241" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Altair77" class="aktt_username">Altair77</a> even @Smiff?  sorry, SOMEone had to say it&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/Altair77/statuses/4089952615" class="aktt_tweet_reply">in reply to Altair77</a> <a href="http://twitter.com/declan/statuses/4090385238" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/techlifeweb" class="aktt_username">techlifeweb</a> i&#39;m bringing some pig farmers to kick yer a$$ <a href="http://twitter.com/techlifeweb/statuses/4090417000" class="aktt_tweet_reply">in reply to techlifeweb</a> <a href="http://twitter.com/declan/statuses/4090445748" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> please respect my eyes and change that avatar.  to someone other than you. <a href="http://twitter.com/dantecl/statuses/4089528437" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4090470303" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cschulte22" class="aktt_username">cschulte22</a> happy birthday! <a href="http://twitter.com/declan/statuses/4090483159" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/zenchaos" class="aktt_username">zenchaos</a> all i&#39;m sayin&#39;, the inside of a really large cake gets hella hot.  thankfully, i&#39;m not wearing much. <a href="http://twitter.com/zenchaos/statuses/4087899599" class="aktt_tweet_reply">in reply to zenchaos</a> <a href="http://twitter.com/declan/statuses/4090568653" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dessarina" class="aktt_username">dessarina</a> kinda making me need to pee&#8230; <a href="http://twitter.com/dessarina/statuses/4090585004" class="aktt_tweet_reply">in reply to dessarina</a> <a href="http://twitter.com/declan/statuses/4090616768" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Smiff" class="aktt_username">Smiff</a> don&#39;t jump up and down.  as if you could. <a href="http://twitter.com/Smiff/statuses/4090445218" class="aktt_tweet_reply">in reply to Smiff</a> <a href="http://twitter.com/declan/statuses/4090642787" class="aktt_tweet_time">#</a></li>
<li>Inbox 23!!! that approaches zero.  beer! <a href="http://twitter.com/declan/statuses/4090825106" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> come out to Callahans!  i can mock you in person, Frenchie! <a href="http://twitter.com/dantecl/statuses/4090827064" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/4090846750" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ksclarke" class="aktt_username">ksclarke</a> move a little closer to me. Love parsons. <a href="http://twitter.com/ksclarke/statuses/4093472498" class="aktt_tweet_reply">in reply to ksclarke</a> <a href="http://twitter.com/declan/statuses/4095615615" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> don&#39;t sit by me tomorrow, egg boy. <a href="http://twitter.com/danwho/statuses/4094799755" class="aktt_tweet_reply">in reply to danwho</a> <a href="http://twitter.com/declan/statuses/4095722143" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MsMollyD" class="aktt_username">MsMollyD</a> hope u feel better soon <a href="http://twitter.com/MsMollyD/statuses/4094961018" class="aktt_tweet_reply">in reply to MsMollyD</a> <a href="http://twitter.com/declan/statuses/4095742368" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> phew, they work. Was never going to hear the end of it if not&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/bmljenny/statuses/4095673788" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/4095757563" class="aktt_tweet_time">#</a></li>
<li>yay, it&#39;s stab a pirate day. <a href="http://twitter.com/declan/statuses/4103100239" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> sometimes i miss having little kids.  8am soccer is NOT one of them.  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/SDMike/statuses/4103106738" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/4103128315" class="aktt_tweet_time">#</a></li>
<li>thanks to all for the birthday wishes!!! <a href="http://twitter.com/declan/statuses/4105921684" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/wigsie" class="aktt_username">wigsie</a> happy birthday to you too! <a href="http://twitter.com/wigsie/statuses/4104895049" class="aktt_tweet_reply">in reply to wigsie</a> <a href="http://twitter.com/declan/statuses/4105928322" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/keithbooe" class="aktt_username">keithbooe</a> are you going to come up and glug some rum, or whatever the hell pirates do? <a href="http://twitter.com/keithbooe/statuses/4103638753" class="aktt_tweet_reply">in reply to keithbooe</a> <a href="http://twitter.com/declan/statuses/4105947118" class="aktt_tweet_time">#</a></li>
<li>i used to LIKE pirates&#8230; <a href="http://twitter.com/declan/statuses/4105950282" class="aktt_tweet_time">#</a></li>
<li>Birthday nap #<a href="http://search.twitter.com/search?q=%231" class="aktt_hashtag">1</a> <a href="http://twitter.com/declan/statuses/4106685402" class="aktt_tweet_time">#</a></li>
<li>RT @SDTechGirl: <a href="http://twitpic.com/ibpy5" rel="nofollow">http://twitpic.com/ibpy5</a> just a reminder <img src='http://www.declan.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  / I think that should be &quot;Declan &amp; Jerry Party&quot; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/4109425613" class="aktt_tweet_time">#</a></li>
<li>because i live with 2 women, i&#39;ll be late for my own party. i&#39;ll just have to start drinking now! <img src='http://www.declan.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/4109715296" class="aktt_tweet_time">#</a></li>
<li>heading up to @churchills!  come watch us get older!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/4109747152" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bethlindsay" class="aktt_username">bethlindsay</a> jealous! <a href="http://twitter.com/bethlindsay/statuses/4108134675" class="aktt_tweet_reply">in reply to bethlindsay</a> <a href="http://twitter.com/declan/statuses/4110024224" class="aktt_tweet_time">#</a></li>
<li>Thanks to all the awesome tweeps who came out to @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> to celebrate my agedness! <a href="http://twitter.com/declan/statuses/4115995197" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> happens to the worst of us <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/bmljenny/statuses/4117850464" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/4118797171" class="aktt_tweet_time">#</a></li>
<li>Awesome birfday! thanks @<a href="http://twitter.com/efleming" class="aktt_username">efleming</a> &amp; @sdtechgirl! Thanks to all the birfday wishes! <a href="http://twitter.com/declan/statuses/4119800557" class="aktt_tweet_time">#</a></li>
<li>Woohoo! I&#39;m not a bird anymore! <a href="http://twitter.com/declan/statuses/4119994978" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2009/09/20/twitter-weekly-updates-for-2009-09-20/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-09-13</title>
		<link>http://www.declan.net/2009/09/13/twitter-weekly-updates-for-2009-09-13/</link>
		<comments>http://www.declan.net/2009/09/13/twitter-weekly-updates-for-2009-09-13/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 15:57:00 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/2009/09/13/twitter-weekly-updates-for-2009-09-13/</guid>
		<description><![CDATA[This won&#39;t scale http://twitpic.com/gqmjg # The end of a wonderful ride http://twitpic.com/gr2bf # @churchills i felt so guilty that you know that i see other women&#8230; um, bars&#8230; in reply to churchills # @churchills uh, oh @nicmcc in reply to churchills # @churchills you don&#39;t bring me flowers&#8230; you used to sing me love songs&#8230; [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>This won&#39;t scale  <a href="http://twitpic.com/gqmjg" rel="nofollow">http://twitpic.com/gqmjg</a> <a href="http://twitter.com/declan/statuses/3802597613" class="aktt_tweet_time">#</a></li>
<li>The end of a wonderful ride  <a href="http://twitpic.com/gr2bf" rel="nofollow">http://twitpic.com/gr2bf</a> <a href="http://twitter.com/declan/statuses/3804111500" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> i felt so guilty that you know that i see other women&#8230; um, bars&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/churchills/statuses/3805940469" class="aktt_tweet_reply">in reply to churchills</a> <a href="http://twitter.com/declan/statuses/3806221741" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> uh, oh @<a href="http://twitter.com/nicmcc" class="aktt_username">nicmcc</a> <a href="http://twitter.com/churchills/statuses/3805940469" class="aktt_tweet_reply">in reply to churchills</a> <a href="http://twitter.com/declan/statuses/3806226768" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> you don&#39;t bring me flowers&#8230; you used to sing me love songs&#8230; there&#39;s a cuddle joke in there too, but i just made myself sick. <a href="http://twitter.com/churchills/statuses/3806294995" class="aktt_tweet_reply">in reply to churchills</a> <a href="http://twitter.com/declan/statuses/3806375856" class="aktt_tweet_time">#</a></li>
<li>RT @churchills: we were trying to put the card together for the rumble in the twungle&#8230; / just don&#39;t tell her about our no- @<a href="http://twitter.com/nicmcc" class="aktt_username">nicmcc</a> club <a href="http://twitter.com/declan/statuses/3806402584" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> well, you&#39;ve gained a lot of weight&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   damn, that&#39;s harsh.  I blame @<a href="http://twitter.com/nicmcc" class="aktt_username">nicmcc</a> <a href="http://twitter.com/churchills/statuses/3806545397" class="aktt_tweet_reply">in reply to churchills</a> <a href="http://twitter.com/declan/statuses/3806636766" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> just heard on the police scanner that there&#39;s some old man taking pix of little girls at the yyyy mca&#8230;. <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/SDMike/statuses/3806573071" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/3806648367" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> bike shopping?!? <a href="http://twitter.com/danwho/statuses/3804855182" class="aktt_tweet_reply">in reply to danwho</a> <a href="http://twitter.com/declan/statuses/3807340867" class="aktt_tweet_time">#</a></li>
<li>8 14yr old over for a slumber/birthday party. Good time for a nap. <a href="http://twitter.com/declan/statuses/3807679977" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> are you open tomorrow? Looks like BLAH and O&#39;Briens are closed. <a href="http://twitter.com/declan/statuses/3809033140" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/aboyko" class="aktt_username">aboyko</a> hope he&#39;s doing ok! <a href="http://twitter.com/aboyko/statuses/3808341053" class="aktt_tweet_reply">in reply to aboyko</a> <a href="http://twitter.com/declan/statuses/3809190312" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDRadio" class="aktt_username">SDRadio</a> the wife is in charge of this outing&#8230; I&#39;ll tweet out when I know what&#39;s up. <a href="http://twitter.com/SDRadio/statuses/3810874623" class="aktt_tweet_reply">in reply to SDRadio</a> <a href="http://twitter.com/declan/statuses/3810973136" class="aktt_tweet_time">#</a></li>
<li>@efleming&#39;s friends thing that san marcos is temecula, so it&#39;s too far to go.  sigh&#8230; so it&#39;s Shakespeares around 2:30. come out! <a href="http://twitter.com/declan/statuses/3822114892" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/stephenfinlan" class="aktt_username">stephenfinlan</a> some of the fizzy yellow panther pee they call beer in this country is NOT good <img src='http://www.declan.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/stephenfinlan/statuses/3824095160" class="aktt_tweet_reply">in reply to stephenfinlan</a> <a href="http://twitter.com/declan/statuses/3824769003" class="aktt_tweet_time">#</a></li>
<li>Hanging with @<a href="http://twitter.com/efleming" class="aktt_username">efleming</a> and Marita @<a href="http://twitter.com/sharespeares" class="aktt_username">sharespeares</a>  <a href="http://twitpic.com/gwaj0" rel="nofollow">http://twitpic.com/gwaj0</a> <a href="http://twitter.com/declan/statuses/3826875060" class="aktt_tweet_time">#</a></li>
<li>skunk hit #<a href="http://search.twitter.com/search?q=%234" class="aktt_hashtag">4</a> for this stupid dog.  the house smells LOVELY. <a href="http://twitter.com/declan/statuses/3833506935" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> he must have learned that skunks taste good.  we&#39;re thinking that this wasn&#39;t a direct hit, waiting for some stink to abate.. <a href="http://twitter.com/bmljenny/statuses/3833715233" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/3833732218" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> good plan. <a href="http://twitter.com/bmljenny/statuses/3833770806" class="aktt_tweet_reply">in reply to bmljenny</a> <a href="http://twitter.com/declan/statuses/3833791712" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> yes, and stop peeking in my windows. <a href="http://twitter.com/SDMike/statuses/3834059865" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/3834180110" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/iizLiz" class="aktt_username">iizLiz</a> we could lunch there anyway. support the freeness they are pushing later. i&#39;ve got burger on the brain!  and skunk in my nose&#8230; <a href="http://twitter.com/iizLiz/statuses/3834116700" class="aktt_tweet_reply">in reply to iizLiz</a> <a href="http://twitter.com/declan/statuses/3834268405" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/lisinsd" class="aktt_username">lisinsd</a> excellent!  did you get some hot shorts? <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/lisinsd/statuses/3830300973" class="aktt_tweet_reply">in reply to lisinsd</a> <a href="http://twitter.com/declan/statuses/3834416173" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/andrewwp" class="aktt_username">andrewwp</a> i wanna see the pictures <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/andrewwp/statuses/3830322622" class="aktt_tweet_reply">in reply to andrewwp</a> <a href="http://twitter.com/declan/statuses/3834419443" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/shannatrenholm" class="aktt_username">shannatrenholm</a> i&#39;m waiting a couple more weeks for snow leopard. I need my Aperture to work <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/shannatrenholm/statuses/3834445418" class="aktt_tweet_reply">in reply to shannatrenholm</a> <a href="http://twitter.com/declan/statuses/3834480065" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/VirtueIMC" class="aktt_username">VirtueIMC</a> throw out some details for lunch tomorrow and i&#39;ll see if i can make it! <a href="http://twitter.com/VirtueIMC/statuses/3834493776" class="aktt_tweet_reply">in reply to VirtueIMC</a> <a href="http://twitter.com/declan/statuses/3834508980" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jraimond" class="aktt_username">jraimond</a> aw!  at least we have Thursday to look forward to! <a href="http://twitter.com/jraimond/statuses/3840853707" class="aktt_tweet_reply">in reply to jraimond</a> <a href="http://twitter.com/declan/statuses/3841149070" class="aktt_tweet_time">#</a></li>
<li>flickr iphone app is nice and clean.  wishing i could integrate it with twitter somehow&#8230; <a href="http://twitter.com/declan/statuses/3842969762" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ginatrapani" class="aktt_username">ginatrapani</a> want me to heckle?  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/ginatrapani/statuses/3843756308" class="aktt_tweet_reply">in reply to ginatrapani</a> <a href="http://twitter.com/declan/statuses/3843779184" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/DowntownRob" class="aktt_username">DowntownRob</a> won&#39;t 7p Little Italy @<a href="http://twitter.com/burger_lounge" class="aktt_username">burger_lounge</a> make RefreshSD hard to attend? <a href="http://twitter.com/DowntownRob/statuses/3844718662" class="aktt_tweet_reply">in reply to DowntownRob</a> <a href="http://twitter.com/declan/statuses/3844874666" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/VirtueIMC" class="aktt_username">VirtueIMC</a> too early for me, sadly.  booked til 6ish &#8211; may hit the RefreshSD pre-dinner <a href="http://twitter.com/VirtueIMC/statuses/3845121433" class="aktt_tweet_reply">in reply to VirtueIMC</a> <a href="http://twitter.com/declan/statuses/3845327862" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/DowntownRob" class="aktt_username">DowntownRob</a> does that mean yer not going to RefreshSD? saw a Yes and Sponsor from you on the RSVP list. <a href="http://twitter.com/declan/statuses/3845460249" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/VirtueIMC" class="aktt_username">VirtueIMC</a> cool! <a href="http://twitter.com/declan/statuses/3845526828" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/refreshsd" class="aktt_username">refreshsd</a> planning on the 6p (i&#39;ll be a bit late) noms.  twitvite wants my twitter password, which i will not do. <a href="http://twitter.com/declan/statuses/3845590759" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/DowntownRob" class="aktt_username">DowntownRob</a> sux not to see you (mostly <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ), but cool yer opening a spot! <a href="http://twitter.com/declan/statuses/3845602934" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bmljenny" class="aktt_username">bmljenny</a> that happens in IT all the time!  Oh, hugged and kisses&#8230; thought u said mugged and kicked.  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/3848192524" class="aktt_tweet_time">#</a></li>
<li>RT @jraimond: @<a href="http://twitter.com/pemulis" class="aktt_username">pemulis</a> good thing i kept my mouth shut when i saw you wandering the halls of the library this morning, eh? / Golum? <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/3848467184" class="aktt_tweet_time">#</a></li>
<li>Campus businesses who leave campus staff without froyo will feel my wrath! Grrrr! <a href="http://twitpic.com/h0i9u" rel="nofollow">http://twitpic.com/h0i9u</a> <a href="http://twitter.com/declan/statuses/3849799921" class="aktt_tweet_time">#</a></li>
<li>RT @hodgman: AT LAST: @<a href="http://twitter.com/letsgetshort" class="aktt_username">letsgetshort</a> provides a new URL shortener THAT EVERYONE CAN UNDERSTAND <a href="http://urlshorteningservicefortwitter.com/" rel="nofollow">http://urlshorteningservicefortwitter.com/</a> <a href="http://twitter.com/declan/statuses/3849978977" class="aktt_tweet_time">#</a></li>
<li>Good line, but not a mob scene @<a href="http://twitter.com/burger_lounge" class="aktt_username">burger_lounge</a> in Kensington  <a href="http://twitpic.com/h176g" rel="nofollow">http://twitpic.com/h176g</a> <a href="http://twitter.com/declan/statuses/3853409194" class="aktt_tweet_time">#</a></li>
<li>Mmm, someone calculate how many point. But dont tell me before I finish <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />    <a href="http://twitpic.com/h184d" rel="nofollow">http://twitpic.com/h184d</a> <a href="http://twitter.com/declan/statuses/3853556987" class="aktt_tweet_time">#</a></li>
<li>Listening to @<a href="http://twitter.com/ginatrapani" class="aktt_username">ginatrapani</a> talk about Google Wave  <a href="http://twitpic.com/h1ltf" rel="nofollow">http://twitpic.com/h1ltf</a> <a href="http://twitter.com/declan/statuses/3856135778" class="aktt_tweet_time">#</a></li>
<li>Listening to @<a href="http://twitter.com/ginatrapani" class="aktt_username">ginatrapani</a> talk about Google Wave  <a href="http://twitpic.com/h1ltf" rel="nofollow">http://twitpic.com/h1ltf</a> #<a href="http://search.twitter.com/search?q=%23refreshsd" class="aktt_hashtag">refreshsd</a> <a href="http://twitter.com/declan/statuses/3856143059" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dcrane2" class="aktt_username">dcrane2</a> I think there&#39;s a #<a href="http://search.twitter.com/search?q=%23fridaybeerup" class="aktt_hashtag">fridaybeerup</a> at la jolla brewhouse. Or did you want to do a poker grp beerup? <a href="http://twitter.com/declan/statuses/3856789467" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Burger_Lounge" class="aktt_username">Burger_Lounge</a> thanks so much! Will you write up the experience with data so we can prove to other businesses that free food = WIN?!? <a href="http://twitter.com/declan/statuses/3856822279" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dcrane2" class="aktt_username">dcrane2</a> @<a href="http://twitter.com/sdradio" class="aktt_username">sdradio</a> what&#39;s the plan for #<a href="http://search.twitter.com/search?q=%23fridaybeerup" class="aktt_hashtag">fridaybeerup</a>?  La Jolla Brewhouse is mentioned in the blog&#8230; <a href="http://twitter.com/dcrane2/statuses/3856900144" class="aktt_tweet_reply">in reply to dcrane2</a> <a href="http://twitter.com/declan/statuses/3857776314" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/marycanady" class="aktt_username">marycanady</a> woof <a href="http://twitter.com/marycanady/statuses/3856427520" class="aktt_tweet_reply">in reply to marycanady</a> <a href="http://twitter.com/declan/statuses/3857813509" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/TweetDeck" class="aktt_username">TweetDeck</a> grats on new version and company expansion! Love the social media browser idea. Deeper photo integration would help. <a href="http://twitter.com/declan/statuses/3862890096" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/alxp" class="aktt_username">alxp</a> looking forward to Access. Are you going to bring us to trivia might again, I hope?! <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/alxp/statuses/3860769593" class="aktt_tweet_reply">in reply to alxp</a> <a href="http://twitter.com/declan/statuses/3863076198" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/TweetDeck" class="aktt_username">TweetDeck</a> do you support drag and drop of a user from main timeline into a group column? <a href="http://twitter.com/TweetDeck/statuses/3862891159" class="aktt_tweet_reply">in reply to TweetDeck</a> <a href="http://twitter.com/declan/statuses/3863119193" class="aktt_tweet_time">#</a></li>
<li>This 9/9/9 crap is making all the other numbers feel bad. Remember, all numbers are special. Except 38. That number is too roundy for me. <a href="http://twitter.com/declan/statuses/3863167681" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Odegard" class="aktt_username">Odegard</a> great seeing you again too!  Here&#39;s that Managing Email in Outlook article I told you about: <a href="http://tinyurl.com/mfu6cz" rel="nofollow">http://tinyurl.com/mfu6cz</a> <a href="http://twitter.com/Odegard/statuses/3858117228" class="aktt_tweet_reply">in reply to Odegard</a> <a href="http://twitter.com/declan/statuses/3863381484" class="aktt_tweet_time">#</a></li>
<li>waiting for the world to warm up so i can bike in.  maybe i should just put on a coat&#8230; <a href="http://twitter.com/declan/statuses/3863759625" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/djfiander" class="aktt_username">djfiander</a> /me raises hand.  SO looking forward to the 4 flights i need to get to PEI&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/djfiander/statuses/3863797806" class="aktt_tweet_reply">in reply to djfiander</a> <a href="http://twitter.com/declan/statuses/3863834020" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/czukowski" class="aktt_username">czukowski</a> @<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> @<a href="http://twitter.com/djfiander" class="aktt_username">djfiander</a> i wussed out and put on the coat.  then took it off for the hill climb <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/3865393826" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ChicagoPizzaSD" class="aktt_username">ChicagoPizzaSD</a> heh, wife says nothing&#39;s posted yet, but she&#39;ll watch out for it.  thanks for catching it! <a href="http://twitter.com/ChicagoPizzaSD/statuses/3868324137" class="aktt_tweet_reply">in reply to ChicagoPizzaSD</a> <a href="http://twitter.com/declan/statuses/3868591634" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/radaly" class="aktt_username">radaly</a> no cookies?!? <a href="http://twitter.com/radaly/statuses/3870273303" class="aktt_tweet_reply">in reply to radaly</a> <a href="http://twitter.com/declan/statuses/3870638269" class="aktt_tweet_time">#</a></li>
<li>RT @taphunter: The Tap Hunter iphone app was released today!!! Go get it while it&#39;s hot!!! Big props to @<a href="http://twitter.com/cschulte22" class="aktt_username">cschulte22</a> for the development! <a href="http://twitter.com/declan/statuses/3872874533" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/miss957" class="aktt_username">miss957</a> talk to tim about an online Masters. <a href="http://twitter.com/miss957/statuses/3874489004" class="aktt_tweet_reply">in reply to miss957</a> <a href="http://twitter.com/declan/statuses/3874523127" class="aktt_tweet_time">#</a></li>
<li>RT @SDRadio: @<a href="http://twitter.com/declan" class="aktt_username">declan</a> firming up; but we are on. 5 p.m. Friday La Jolla Brew House. Website updating tonight. #<a href="http://search.twitter.com/search?q=%23FridayBeerUp" class="aktt_hashtag">FridayBeerUp</a> / @<a href="http://twitter.com/dcrane" class="aktt_username">dcrane</a> @<a href="http://twitter.com/sdmike" class="aktt_username">sdmike</a> <a href="http://twitter.com/declan/statuses/3881264844" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> heh, paper spam pwns you. And no, I didn&#39;t do it, Daniel. <a href="http://twitter.com/danwho/statuses/3882845502" class="aktt_tweet_reply">in reply to danwho</a> <a href="http://twitter.com/declan/statuses/3887239607" class="aktt_tweet_time">#</a></li>
<li>RT @mattcritchlow: beer and bacon festival?! <a href="http://cli.gs/T5R90" rel="nofollow">http://cli.gs/T5R90</a> <a href="http://twitter.com/declan/statuses/3890858517" class="aktt_tweet_time">#</a></li>
<li>RT @radaly: @<a href="http://twitter.com/tonyg" class="aktt_username">tonyg</a> I know I shouldn&#39;t have, but I lol&#39;ed. / sadly, me too <a href="http://twitter.com/declan/statuses/3891604592" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ginatrapani" class="aktt_username">ginatrapani</a> paint my house.  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/ginatrapani/statuses/3896223229" class="aktt_tweet_reply">in reply to ginatrapani</a> <a href="http://twitter.com/declan/statuses/3896298070" class="aktt_tweet_time">#</a></li>
<li>Grr, I hate that tweetdeck only goes back a handful of tweets on the iPhone. Drives me back to twitterfon every time. <a href="http://twitter.com/declan/statuses/3898165108" class="aktt_tweet_time">#</a></li>
<li>RT @beermolly: Starting Oct. 18th Port Brew/Lost Abbey will be open Sundays 12 to 4 <a href="http://twitter.com/declan/statuses/3904706335" class="aktt_tweet_time">#</a></li>
<li>the intertubes are cranky tonight&#8230; can&#39;t tell if it&#39;s Time Warner or OpenDNS giving me problems&#8230; <a href="http://twitter.com/declan/statuses/3904721070" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/climbergal" class="aktt_username">climbergal</a> ouch!  keep the rubber side DOWN!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/climbergal/statuses/3904743182" class="aktt_tweet_reply">in reply to climbergal</a> <a href="http://twitter.com/declan/statuses/3904760929" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/marycanady" class="aktt_username">marycanady</a> i think PQ and Mira Mesa Time Warner is fuxx0rd <a href="http://twitter.com/marycanady/statuses/3904542755" class="aktt_tweet_reply">in reply to marycanady</a> <a href="http://twitter.com/declan/statuses/3904770576" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jraimond" class="aktt_username">jraimond</a> amen!  thanks for that tasty hef! <a href="http://twitter.com/jraimond/statuses/3904514942" class="aktt_tweet_reply">in reply to jraimond</a> <a href="http://twitter.com/declan/statuses/3904778088" class="aktt_tweet_time">#</a></li>
<li>there might be a late lunch going on at @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> on 9/19 for SOMEone&#39;s birthday&#8230; <a href="http://twitter.com/declan/statuses/3904802217" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/techlifeweb" class="aktt_username">techlifeweb</a> is you TW internet connection consistent?  i&#39;ve only been solid for about 20 mins <a href="http://twitter.com/techlifeweb/statuses/3904816092" class="aktt_tweet_reply">in reply to techlifeweb</a> <a href="http://twitter.com/declan/statuses/3904828992" class="aktt_tweet_time">#</a></li>
<li>RT @SDMike: Is there a SD drinkup tomorrow? / @<a href="http://twitter.com/sdradio" class="aktt_username">sdradio</a> lay down them details!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/3905151604" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/techlifeweb" class="aktt_username">techlifeweb</a> i use OpenDNS and was having issues&#8230;  you&#39;re just special. <a href="http://twitter.com/techlifeweb/statuses/3904880471" class="aktt_tweet_reply">in reply to techlifeweb</a> <a href="http://twitter.com/declan/statuses/3905160568" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SanctuaryMsg" class="aktt_username">SanctuaryMsg</a> Happy Birthday!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/SanctuaryMsg/statuses/3904943077" class="aktt_tweet_reply">in reply to SanctuaryMsg</a> <a href="http://twitter.com/declan/statuses/3905199476" class="aktt_tweet_time">#</a></li>
<li>RT @aboyko: Kurt Vonnegut&#39;s explanation of why we overthink &amp; overestimate our life&#39;s dramas, <a href="http://sivers.org/drama" rel="nofollow">http://sivers.org/drama</a> <a href="http://twitter.com/declan/statuses/3911785405" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/yogurtworldmm" class="aktt_username">yogurtworldmm</a> it REALLY SUCKS that the UCSD location is closed. You are losing business. <a href="http://twitter.com/yogurtworldmm/statuses/3907400669" class="aktt_tweet_reply">in reply to yogurtworldmm</a> <a href="http://twitter.com/declan/statuses/3911855321" class="aktt_tweet_time">#</a></li>
<li>RT @SDRadio: @<a href="http://twitter.com/declan" class="aktt_username">declan</a> Tonight in La Jolla!!! <a href="http://tinyurl.com/nsfbhp" rel="nofollow">http://tinyurl.com/nsfbhp</a>  5 p for me! Cheers! <a href="http://twitter.com/declan/statuses/3912012298" class="aktt_tweet_time">#</a></li>
<li>RT @zefrank: ..ll.. <a href="http://twitter.com/declan/statuses/3912063729" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cvkline" class="aktt_username">cvkline</a> that makes you the carrier <a href="http://twitter.com/cvkline/statuses/3911969130" class="aktt_tweet_reply">in reply to cvkline</a> <a href="http://twitter.com/declan/statuses/3912097628" class="aktt_tweet_time">#</a></li>
<li>#whereiwason911 <a href="http://bit.ly/3nZRIX" rel="nofollow">http://bit.ly/3nZRIX</a><br />
 grateful for another year. <a href="http://twitter.com/declan/statuses/3913282937" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDRadio" class="aktt_username">SDRadio</a> it&#39;s friday in SD, all traffic is bad!  stick with the plan!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/SDRadio/statuses/3916257848" class="aktt_tweet_reply">in reply to SDRadio</a> <a href="http://twitter.com/declan/statuses/3917005918" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/zenchaos" class="aktt_username">zenchaos</a> can you SMELL the artist? <a href="http://twitter.com/zenchaos/statuses/3917140366" class="aktt_tweet_reply">in reply to zenchaos</a> <a href="http://twitter.com/declan/statuses/3917169880" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/rtennant" class="aktt_username">rtennant</a> it&#39;s called gmail. <a href="http://twitter.com/rtennant/statuses/3917122799" class="aktt_tweet_reply">in reply to rtennant</a> <a href="http://twitter.com/declan/statuses/3918495700" class="aktt_tweet_time">#</a></li>
<li>RT @techlifeweb: RT @CalFireNews: Space shuttle to land at Edwards Air Force Base tonight.. <a href="http://bit.ly/JArCf" rel="nofollow">http://bit.ly/JArCf</a> / roadtrip!!! <a href="http://twitter.com/declan/statuses/3919422310" class="aktt_tweet_time">#</a></li>
<li>What&#39;s a good coffee shop in la jolla near the brew house? Gotta get my writerly hat on. <a href="http://twitter.com/declan/statuses/3919669295" class="aktt_tweet_time">#</a></li>
<li>Found the living room! Thanks folks! Nom nom  <a href="http://twitpic.com/hcwd5" rel="nofollow">http://twitpic.com/hcwd5</a> <a href="http://twitter.com/declan/statuses/3920456862" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ChicagoPizzaSD" class="aktt_username">ChicagoPizzaSD</a> yer doing great on Twitter! <a href="http://twitter.com/ChicagoPizzaSD/statuses/3919827540" class="aktt_tweet_reply">in reply to ChicagoPizzaSD</a> <a href="http://twitter.com/declan/statuses/3920541977" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDMike" class="aktt_username">SDMike</a> do you have a way to get here? I can get you home. <a href="http://twitter.com/SDMike/statuses/3922209969" class="aktt_tweet_reply">in reply to SDMike</a> <a href="http://twitter.com/declan/statuses/3922458881" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/sdradio" class="aktt_username">sdradio</a> few if us here at la jolla brewhouse. Did you set up a reservation? <a href="http://twitter.com/declan/statuses/3922745156" class="aktt_tweet_time">#</a></li>
<li>We&#39;re in the back of la jolla brewhouse <a href="http://twitter.com/declan/statuses/3923243561" class="aktt_tweet_time">#</a></li>
<li>.@<a href="http://twitter.com/kitchen" class="aktt_username">kitchen</a> I&#39;m having a burrito. Will recreate the boom in a couple hours. <a href="http://twitter.com/kitchen/statuses/3923928239" class="aktt_tweet_reply">in reply to kitchen</a> <a href="http://twitter.com/declan/statuses/3923962766" class="aktt_tweet_time">#</a></li>
<li>WTF happened to @sdradio? <a href="http://twitter.com/declan/statuses/3924323003" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/SDRadio" class="aktt_username">SDRadio</a> aw that sucks. So confused. <a href="http://twitter.com/SDRadio/statuses/3924344203" class="aktt_tweet_reply">in reply to SDRadio</a> <a href="http://twitter.com/declan/statuses/3924759381" class="aktt_tweet_time">#</a></li>
<li>Hangin la jolla brehouse (@<a href="http://twitter.com/brewho" class="aktt_username">brewho</a>) with @<a href="http://twitter.com/viss" class="aktt_username">viss</a> @<a href="http://twitter.com/mrgunn" class="aktt_username">mrgunn</a> @<a href="http://twitter.com/sdmike" class="aktt_username">sdmike</a> @<a href="http://twitter.com/n8foo" class="aktt_username">n8foo</a> @<a href="http://twitter.com/dcrane2" class="aktt_username">dcrane2</a> and @<a href="http://twitter.com/efleming" class="aktt_username">efleming</a> #<a href="http://search.twitter.com/search?q=%23fridaybeerup" class="aktt_hashtag">fridaybeerup</a> <a href="http://twitter.com/declan/statuses/3924835231" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jauricchio" class="aktt_username">jauricchio</a> rock on <a href="http://twitter.com/jauricchio/statuses/3925080625" class="aktt_tweet_reply">in reply to jauricchio</a> <a href="http://twitter.com/declan/statuses/3925562369" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/danwho" class="aktt_username">danwho</a> wow! Get my camera! <a href="http://twitter.com/danwho/statuses/3925345364" class="aktt_tweet_reply">in reply to danwho</a> <a href="http://twitter.com/declan/statuses/3925607193" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/hober" class="aktt_username">hober</a> you had me at lamb chili <a href="http://twitter.com/hober/statuses/3925777425" class="aktt_tweet_reply">in reply to hober</a> <a href="http://twitter.com/declan/statuses/3925935649" class="aktt_tweet_time">#</a></li>
<li>.@<a href="http://twitter.com/shannatrenholm" class="aktt_username">shannatrenholm</a> and why do I need 17 emails from Biz? <a href="http://twitter.com/shannatrenholm/statuses/3928710715" class="aktt_tweet_reply">in reply to shannatrenholm</a> <a href="http://twitter.com/declan/statuses/3935020159" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/marycanady" class="aktt_username">marycanady</a> morning! Why turn it off? <a href="http://twitter.com/marycanady/statuses/3933547719" class="aktt_tweet_reply">in reply to marycanady</a> <a href="http://twitter.com/declan/statuses/3935247254" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/marycanady" class="aktt_username">marycanady</a> it was veddy nice, once I figured out what was going on <img src='http://www.declan.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/marycanady/statuses/3935614919" class="aktt_tweet_reply">in reply to marycanady</a> <a href="http://twitter.com/declan/statuses/3935638722" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/keithbooe" class="aktt_username">keithbooe</a> beautiful stuff! <a href="http://twitter.com/keithbooe/statuses/3935644241" class="aktt_tweet_reply">in reply to keithbooe</a> <a href="http://twitter.com/declan/statuses/3935682271" class="aktt_tweet_time">#</a></li>
<li>bleh!  was getting excited about @<a href="http://twitter.com/tweetphoto" class="aktt_username">tweetphoto</a> until I saw they wanted my twitter credentials.  when will services understand that isn&#39;t cool? <a href="http://twitter.com/declan/statuses/3935858004" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ginatrapani" class="aktt_username">ginatrapani</a> new building isn&#39;t hooked up yet?  need other options on campus? <a href="http://twitter.com/ginatrapani/statuses/3935879729" class="aktt_tweet_reply">in reply to ginatrapani</a> <a href="http://twitter.com/declan/statuses/3935924438" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/dcrane2" class="aktt_username">dcrane2</a> well, ive failed at getting a nice list of all my photos &amp; comments in @<a href="http://twitter.com/twitpic" class="aktt_username">twitpic</a> BUT!!! I just found rss! <a href="http://bit.ly/okkdd" rel="nofollow">http://bit.ly/okkdd</a> <a href="http://twitter.com/dcrane2/statuses/3936113656" class="aktt_tweet_reply">in reply to dcrane2</a> <a href="http://twitter.com/declan/statuses/3936243252" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/brynn" class="aktt_username">brynn</a> i think there&#39;s an ointment for that <a href="http://twitter.com/brynn/statuses/3936213368" class="aktt_tweet_reply">in reply to brynn</a> <a href="http://twitter.com/declan/statuses/3936290859" class="aktt_tweet_time">#</a></li>
<li>looks like they extended the photo contest til 9/14. Throw me a click if yer so inclined! <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://bit.ly/fnyBv" rel="nofollow">http://bit.ly/fnyBv</a> <a href="http://twitter.com/declan/statuses/3936433161" class="aktt_tweet_time">#</a></li>
<li>More beer!!! <a href="http://twitpic.com/hgg28" rel="nofollow">http://twitpic.com/hgg28</a> <a href="http://twitter.com/declan/statuses/3936716089" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/keithbooe" class="aktt_username">keithbooe</a> i wondered what that was&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/keithbooe/statuses/3936547833" class="aktt_tweet_reply">in reply to keithbooe</a> <a href="http://twitter.com/declan/statuses/3937540640" class="aktt_tweet_time">#</a></li>
<li>heh, that beer picture is from Thurs night! I&#39;m playing with getting twitter pix to show up on <a href="http://declan.net" rel="nofollow">http://declan.net</a> <a href="http://twitter.com/declan/statuses/3937556713" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/shannatrenholm" class="aktt_username">shannatrenholm</a> no twestival plan&#8230; hmm, maybe i should go and shoot it as an event? <a href="http://twitter.com/shannatrenholm/statuses/3937255343" class="aktt_tweet_reply">in reply to shannatrenholm</a> <a href="http://twitter.com/declan/statuses/3937568705" class="aktt_tweet_time">#</a></li>
<li>More twitpic blog experimentation.  <a href="http://twitpic.com/hgogq" rel="nofollow">http://twitpic.com/hgogq</a> <a href="http://twitter.com/declan/statuses/3937637426" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/techlifeweb" class="aktt_username">techlifeweb</a> yep!  kinda got it working, but it&#39;s not being consistent.  and the titling is kinda ugly.  may fire up a pipe <a href="http://twitter.com/techlifeweb/statuses/3937738032" class="aktt_tweet_reply">in reply to techlifeweb</a> <a href="http://twitter.com/declan/statuses/3937757598" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/techlifeweb" class="aktt_username">techlifeweb</a> tiling? <a href="http://twitter.com/techlifeweb/statuses/3937889263" class="aktt_tweet_reply">in reply to techlifeweb</a> <a href="http://twitter.com/declan/statuses/3937903975" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/TweetPhoto" class="aktt_username">TweetPhoto</a> glad to hear about the OAuth! <a href="http://twitter.com/TweetPhoto/statuses/3938170355" class="aktt_tweet_reply">in reply to TweetPhoto</a> <a href="http://twitter.com/declan/statuses/3938300461" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/TweetPhoto" class="aktt_username">TweetPhoto</a> hey @chrismessina, fix this!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/TweetPhoto/statuses/3938170355" class="aktt_tweet_reply">in reply to TweetPhoto</a> <a href="http://twitter.com/declan/statuses/3938339788" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Rumford" class="aktt_username">Rumford</a> not sure, but I want to see @gebl&#39;s tweetwall! <a href="http://twitter.com/Rumford/statuses/3938351641" class="aktt_tweet_reply">in reply to Rumford</a> <a href="http://twitter.com/declan/statuses/3938447787" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/TweetPhoto" class="aktt_username">TweetPhoto</a> i love the approach tweetfeed has taken <a href="http://twitter.com/TweetPhoto/statuses/3938335216" class="aktt_tweet_reply">in reply to TweetPhoto</a> <a href="http://twitter.com/declan/statuses/3938464266" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Rumford" class="aktt_username">Rumford</a> just heard about it&#8230; I shoot a lot of local events so i might get out there. <a href="http://bit.ly/y96kA" rel="nofollow">http://bit.ly/y96kA</a> and <a href="http://bit.ly/13xD77" rel="nofollow">http://bit.ly/13xD77</a> <a href="http://twitter.com/Rumford/statuses/3938351641" class="aktt_tweet_reply">in reply to Rumford</a> <a href="http://twitter.com/declan/statuses/3938677627" class="aktt_tweet_time">#</a></li>
<li>RT @hamiltons: today is the day! Ballast Point. 22 on draught 2 killer casks AND amazing BBQ. All amazing beers 3.50 @ 5pm.. / who&#39;s in? <a href="http://twitter.com/declan/statuses/3939425600" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> i&#39;m debating going to the twestival thingy too&#8230; dunno about beerfest &#8211; looks cool.  stay tuned for a 9/19 event <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/RedTheTrucker/statuses/3939531633" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/3939581419" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mmmmmrob" class="aktt_username">mmmmmrob</a> you should be!  It&#39;s a beauty! <a href="http://twitter.com/mmmmmrob/statuses/3939797350" class="aktt_tweet_reply">in reply to mmmmmrob</a> <a href="http://twitter.com/declan/statuses/3939812688" class="aktt_tweet_time">#</a></li>
<li>dangit, i broke @twitpic&#39;s rss feed.  RIGHT when i got my pipe perfected!  <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/3940685034" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/aboyko" class="aktt_username">aboyko</a> you&#39;ve SEEN @edsu.  he&#39;s a troll whatever he does&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/aboyko/statuses/3940683392" class="aktt_tweet_reply">in reply to aboyko</a> <a href="http://twitter.com/declan/statuses/3940698536" class="aktt_tweet_time">#</a></li>
<li>Erin&#39;s on poop patrol!  <a href="http://twitpic.com/hhs51" rel="nofollow">http://twitpic.com/hhs51</a> <a href="http://twitter.com/declan/statuses/3941490973" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mjgiarlo" class="aktt_username">mjgiarlo</a> sorry!  experimentation is costly on the children&#8230; <a href="http://twitter.com/mjgiarlo/statuses/3942975682" class="aktt_tweet_reply">in reply to mjgiarlo</a> <a href="http://twitter.com/declan/statuses/3945029488" class="aktt_tweet_time">#</a></li>
<li>Heading to@<a href="http://twitter.com/hamiltons" class="aktt_username">hamiltons</a> <a href="http://twitter.com/declan/statuses/3945108455" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/hamiltons" class="aktt_username">hamiltons</a> is packed! Bring in the food! <a href="http://twitter.com/declan/statuses/3945811089" class="aktt_tweet_time">#</a></li>
<li>Highly recommend the ballast point brandy barrel navigator doppelbock. Piper down Scottish ale is just ok. @<a href="http://twitter.com/hamiltons" class="aktt_username">hamiltons</a> <a href="http://twitter.com/declan/statuses/3945869093" class="aktt_tweet_time">#</a></li>
<li>Dang it, got spoiled by the brandy nav. Sea monster barrels 08 &amp; 09 are good, but not as complex. #<a href="http://search.twitter.com/search?q=%23mrbeersnob" class="aktt_hashtag">mrbeersnob</a> <a href="http://twitter.com/declan/statuses/3946281365" class="aktt_tweet_time">#</a></li>
<li>Come join me and @<a href="http://twitter.com/zenchaos" class="aktt_username">zenchaos</a> @<a href="http://twitter.com/churchills" class="aktt_username">churchills</a> next Saturday, 9/19, at 2p to celebrate our birthdays! One of us is turning 40.  Guess who. <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/declan/statuses/3946346525" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mikedashg" class="aktt_username">mikedashg</a> hurry! 3.50 beers end at 8! <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/mikedashg/statuses/3945293264" class="aktt_tweet_reply">in reply to mikedashg</a> <a href="http://twitter.com/declan/statuses/3946596683" class="aktt_tweet_time">#</a></li>
<li>.@<a href="http://twitter.com/dantecl" class="aktt_username">dantecl</a> no gifts, except for you. <a href="http://twitter.com/dantecl/statuses/3946493530" class="aktt_tweet_reply">in reply to dantecl</a> <a href="http://twitter.com/declan/statuses/3946627865" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/laughingsquid" class="aktt_username">laughingsquid</a> boulder, co? Head to Lyons, co and love some Oscar Blues beer! <a href="http://twitter.com/laughingsquid/statuses/3946534272" class="aktt_tweet_reply">in reply to laughingsquid</a> <a href="http://twitter.com/declan/statuses/3946660194" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mikedashg" class="aktt_username">mikedashg</a> come to the bar like real man and buy me a beer! <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/mikedashg/statuses/3946655507" class="aktt_tweet_reply">in reply to mikedashg</a> <a href="http://twitter.com/declan/statuses/3946685276" class="aktt_tweet_time">#</a></li>
<li>.@<a href="http://twitter.com/mikedashg" class="aktt_username">mikedashg</a> omg, that fruit beer is amazing. I think we need to buy a house in southpark to avoid driving home. @<a href="http://twitter.com/hamiltons" class="aktt_username">hamiltons</a> @<a href="http://twitter.com/redthetrucker" class="aktt_username">redthetrucker</a> <a href="http://twitter.com/mikedashg/statuses/3946675320" class="aktt_tweet_reply">in reply to mikedashg</a> <a href="http://twitter.com/declan/statuses/3946901912" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mikedashg" class="aktt_username">mikedashg</a> ok + ok != brandy nav <a href="http://twitter.com/mikedashg/statuses/3947318460" class="aktt_tweet_reply">in reply to mikedashg</a> <a href="http://twitter.com/declan/statuses/3947355339" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> You should be here @<a href="http://twitter.com/hamiltons" class="aktt_username">hamiltons</a> <a href="http://twitter.com/RedTheTrucker/statuses/3948939951" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/3949074105" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/edsu" class="aktt_username">edsu</a> you were sad long&#8230; Ok I&#39;m too &quot;happy&quot; to mess with you <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  coming to Access? <a href="http://twitter.com/edsu/statuses/3947356939" class="aktt_tweet_reply">in reply to edsu</a> <a href="http://twitter.com/declan/statuses/3949115654" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cindi" class="aktt_username">cindi</a> U2 sucks. <a href="http://twitter.com/cindi/statuses/3949138550" class="aktt_tweet_reply">in reply to cindi</a> <a href="http://twitter.com/declan/statuses/3949173836" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cindi" class="aktt_username">cindi</a> cuz I&#39;m not a pozer <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/cindi/statuses/3949187016" class="aktt_tweet_reply">in reply to cindi</a> <a href="http://twitter.com/declan/statuses/3949209369" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/RedTheTrucker" class="aktt_username">RedTheTrucker</a> still at twestival? <a href="http://twitter.com/RedTheTrucker/statuses/3949218923" class="aktt_tweet_reply">in reply to RedTheTrucker</a> <a href="http://twitter.com/declan/statuses/3949296041" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2009/09/13/twitter-weekly-updates-for-2009-09-13/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Our baby is 14!</title>
		<link>http://www.declan.net/2009/08/28/our-baby-is-14/</link>
		<comments>http://www.declan.net/2009/08/28/our-baby-is-14/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 21:51:45 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=597</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img src="http://babyblooze.files.wordpress.com/2009/08/grrrsm.jpg?w=480&#038;h=360" alt="" /></p>
<p><img src="http://farm3.static.flickr.com/2427/3864895485_ae39263c3f.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2009/08/28/our-baby-is-14/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Where I Write</title>
		<link>http://www.declan.net/2009/08/09/where-i-write/</link>
		<comments>http://www.declan.net/2009/08/09/where-i-write/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 03:57:37 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/2009/08/09/where-i-write/</guid>
		<description><![CDATA[I LOVE this site: http://www.whereiwrite.org/ very inspiring&#8230; I&#8217;ve been thinking of crafting a decent workspace at home.]]></description>
			<content:encoded><![CDATA[<p>I LOVE this site:</p>
<p>http://www.whereiwrite.org/</p>
<p>very inspiring&#8230;  I&#8217;ve been thinking of crafting a decent workspace at home.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2009/08/09/where-i-write/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Amazing Wedding Entrance</title>
		<link>http://www.declan.net/2009/07/23/amazing-wedding-entrance/</link>
		<comments>http://www.declan.net/2009/07/23/amazing-wedding-entrance/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 06:03:38 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=593</guid>
		<description><![CDATA[Yes, I teared up a little.]]></description>
			<content:encoded><![CDATA[<p>Yes, I teared up a little.</p>
<p><a href="http://www.declan.net/2009/07/23/amazing-wedding-entrance/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2009/07/23/amazing-wedding-entrance/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>San Diego Comic Con TweetUp #cctweetup</title>
		<link>http://www.declan.net/2009/07/23/san-diego-comic-con-tweetup-cctweetup/</link>
		<comments>http://www.declan.net/2009/07/23/san-diego-comic-con-tweetup-cctweetup/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 15:34:47 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=590</guid>
		<description><![CDATA[Last night, Gabe and I went downtown to the Voyeur club and shot pictures of the #cctweetup crowd: Click here to view these pictures through the Flickr interface.]]></description>
			<content:encoded><![CDATA[<p>Last night, Gabe and I went downtown to the Voyeur club and shot pictures of the #cctweetup crowd:</p>
<p><simpleflickr set="72157621667607375" /><br />
<a href="http://www.flickr.com/photos/bigdpix/sets/72157621667607375/"><br />
Click here to view these pictures through the Flickr interface.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2009/07/23/san-diego-comic-con-tweetup-cctweetup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing with Instamapper</title>
		<link>http://www.declan.net/2009/03/15/playing-with-instamapper/</link>
		<comments>http://www.declan.net/2009/03/15/playing-with-instamapper/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 00:27:21 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Biking]]></category>
		<category><![CDATA[Declan]]></category>
		<category><![CDATA[Mapping]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=531</guid>
		<description><![CDATA[I turned on Instamapper as I was about to bike the Silver Strand: GPS tracking powered by InstaMapper.com I need to play with it more&#8230; I KNOW I went over 11 mph Not sure why there are so few data points. The phone was in my saddle bag, under the metal seat, and the big [...]]]></description>
			<content:encoded><![CDATA[<p>I turned on Instamapper as I was about to bike the Silver Strand:</p>
<p><!-- BEGIN INSTAMAPPER CODE --><br />
GPS tracking powered by <a href="http://www.instamapper.com">InstaMapper.com</a></p>
<p><iframe style="border:1px solid;" width="527" height="490" frameborder="0" scrolling="no" src="http://www.instamapper.com/trk?key=8323553376015160302&#038;width=500&#038;height=350&#038;type=roadmap"><br />
</iframe></p>
<p>I need to play with it more&#8230;  I KNOW I went over 11 mph <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   Not sure why there are so few data points.  The phone was in my saddle bag, under the metal seat, and the big rider &#8211; so maybe that&#8217;s it <img src='http://www.declan.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2009/03/15/playing-with-instamapper/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Help me win a photo contest!</title>
		<link>http://www.declan.net/2009/01/05/help-me-win-a-photo-contest/</link>
		<comments>http://www.declan.net/2009/01/05/help-me-win-a-photo-contest/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 23:46:13 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/2009/01/05/help-me-win-a-photo-contest/</guid>
		<description><![CDATA[Wanna help me win a photo contest? go to http://tinyurl.com/8tn2f3 and vote for me! or one of the others if you like it better. thanks!]]></description>
			<content:encoded><![CDATA[<p>Wanna help me win a photo contest? go to <a href="http://tinyurl.com/8tn2f3">http://tinyurl.com/8tn2f3</a> and vote for me! or one of the others if you like it better. thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2009/01/05/help-me-win-a-photo-contest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m not Declan Galbraith</title>
		<link>http://www.declan.net/2008/07/02/im-not-declan-galbraith/</link>
		<comments>http://www.declan.net/2008/07/02/im-not-declan-galbraith/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 14:39:28 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Declan]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=344</guid>
		<description><![CDATA[UPDATE: I&#8217;m not Declan Sykes, either&#8230; To all of my fans across the world, especially the adolescent Chinese girls constantly IMing me, I&#8217;m not Declan Galbraith. Yes, I AM hot, and yes I can carry a tune, but I&#8217;m no Declan Galbraith: (5:56:54 AM) NAME: this is declan. right?! IM be back plzz!!!!! ilyssssm&#38;lt;333333 (5:56:54 [...]]]></description>
			<content:encoded><![CDATA[<p>UPDATE:  I&#8217;m not Declan Sykes, either&#8230;</p>
<p><img src="http://resources0.news.com.au/images/2011/11/08/1226189/465460-declan-sykes.jpg" alt="" /></p>
<p>To all of my fans across the world, especially the adolescent Chinese girls constantly IMing me, I&#8217;m not Declan Galbraith.</p>
<p>Yes, I AM hot, and yes I can carry a tune, but I&#8217;m no Declan Galbraith:</p>
<p><img src="http://i.ytimg.com/vi/fHcl3WB6lNo/0.jpg" alt="" /></p>
<p><code>(5:56:54 AM) NAME: this is declan. right?! IM be back plzz!!!!! ilyssssm&amp;lt;333333<br />
(5:56:54 AM) declansnwl &lt;auto -REPLY&gt; :  I'm not here right now<br />
(6:33:03 AM) NAME: i love all of your songs! mostly nothing else mattters&amp;lt;3333<br />
(6:33:03 AM) declansnwl &lt;/auto&gt;&lt;auto -REPLY&gt; :  I'm not here right now<br />
(7:54:54 AM) declansnwl: heh, wrong declan<br />
(7:54:55 AM) NAME &lt;/auto&gt;&lt;auto -REPLY&gt; :  Planss<br />
maybee txtt mee??<br />
&lt; .3.3.3.3 &lt; &lt; &lt; &lt; dayumm hes hot!!! &lt; &lt; &lt; &lt;<br />
be backk laterr<br />
txt meh_!</code></auto></code></p>
<p>Sadly, I'm betting that this post only confuses more of his fans...</p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2008/07/02/im-not-declan-galbraith/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>We&#8217;re Evacuating</title>
		<link>http://www.declan.net/2007/10/22/were-evacuating/</link>
		<comments>http://www.declan.net/2007/10/22/were-evacuating/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 15:23:57 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/2007/10/22/were-evacuating/</guid>
		<description><![CDATA[7:30a Heading West. Wish us luck.]]></description>
			<content:encoded><![CDATA[<p>7:30a</p>
<p>Heading West.  Wish us luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2007/10/22/were-evacuating/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>GO BEARS!!!</title>
		<link>http://www.declan.net/2007/02/01/go-bears/</link>
		<comments>http://www.declan.net/2007/02/01/go-bears/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 00:04:25 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=239</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img alt="Bears Storm" id="image238" title="Bears Storm" src="http://www.declan.net/wp-content/uploads/2007/02/bigstormheadingtoflorida1.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2007/02/01/go-bears/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>33 Reasons Why Libraries and Librarians are Still Extremely Important</title>
		<link>http://www.declan.net/2007/01/31/33-reasons-why-libraries-and-librarians-are-still-extremely-important/</link>
		<comments>http://www.declan.net/2007/01/31/33-reasons-why-libraries-and-librarians-are-still-extremely-important/#comments</comments>
		<pubDate>Thu, 01 Feb 2007 03:54:35 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=237</guid>
		<description><![CDATA[http://www.degreetutor.com/library/adult-continued-education/librarians-needed]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.degreetutor.com/library/adult-continued-education/librarians-needed">http://www.degreetutor.com/library/adult-continued-education/librarians-needed</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2007/01/31/33-reasons-why-libraries-and-librarians-are-still-extremely-important/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>This makes me laugh every time I see it&#8230;</title>
		<link>http://www.declan.net/2006/11/21/this-makes-me-laugh-every-time-i-see-it/</link>
		<comments>http://www.declan.net/2006/11/21/this-makes-me-laugh-every-time-i-see-it/#comments</comments>
		<pubDate>Wed, 22 Nov 2006 06:24:14 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=227</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img id="image226" src="http://www.declan.net/wp-content/uploads/2006/11/cookie.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2006/11/21/this-makes-me-laugh-every-time-i-see-it/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>This is why I like working in the Library</title>
		<link>http://www.declan.net/2006/11/02/this-is-why-i-like-working-in-the-library/</link>
		<comments>http://www.declan.net/2006/11/02/this-is-why-i-like-working-in-the-library/#comments</comments>
		<pubDate>Thu, 02 Nov 2006 07:09:06 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=224</guid>
		<description><![CDATA[Every year the folks at work throw a cool Halloween party! Great costumes: Great eats: Um&#8230; this: More pix here.]]></description>
			<content:encoded><![CDATA[<p>Every year the folks at work throw a cool Halloween party!</p>
<p>Great costumes:</p>
<p><img src="http://static.flickr.com/107/285109711_a7da7783c6.jpg?v=0" /></p>
<p>Great eats:</p>
<p><img src="http://static.flickr.com/116/285109842_29a39b44fc.jpg?v=0" /></p>
<p>Um&#8230; this:</p>
<p><img src="http://static.flickr.com/119/285111032_247105dfd7.jpg?v=0" /></p>
<p><a href="http://www.flickr.com/photos/bigdpix/sets/72157594354557967/">More pix here.<br /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2006/11/02/this-is-why-i-like-working-in-the-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Northwest Vacation</title>
		<link>http://www.declan.net/2006/11/01/northwest-vacation/</link>
		<comments>http://www.declan.net/2006/11/01/northwest-vacation/#comments</comments>
		<pubDate>Thu, 02 Nov 2006 06:54:34 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=223</guid>
		<description><![CDATA[I&#8217;ve been remiss in posting lately! Thanks to Grandma watching the kidlets, Elaine and I were able to travel to Seattle and Victoria so that I could take way too many pictures.&#160; Some even looked nice! I&#8217;ve got sets of pictures from each day of the trip here: http://www.flickr.com/photos/bigdpix/sets/ Look for the NW Vacation Sets.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been remiss in posting lately!</p>
<p>Thanks to Grandma watching the kidlets, Elaine and I were able to travel to Seattle and Victoria so that I could take way too many pictures.&nbsp; Some even looked nice!</p>
<p><a href="http://www.flickr.com/photos/bigdpix/sets/"><img src="http://static.flickr.com/111/270288151_a5385ff20b.jpg?v=0" /></a></p>
<p>I&#8217;ve got sets of pictures from each day of the trip here:</p>
<p><a href="http://www.flickr.com/photos/bigdpix/sets/">http://www.flickr.com/photos/bigdpix/sets/</a></p>
<p>Look for the NW Vacation Sets.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2006/11/01/northwest-vacation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LA Wildfires as Seen from a Plane</title>
		<link>http://www.declan.net/2006/09/26/la-wildfires-as-seen-from-a-plane-3/</link>
		<comments>http://www.declan.net/2006/09/26/la-wildfires-as-seen-from-a-plane-3/#comments</comments>
		<pubDate>Wed, 27 Sep 2006 06:25:45 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=222</guid>
		<description><![CDATA[We flew in from Seattle this afternoon and saw the wildfiles: There are more in this Flickr set.]]></description>
			<content:encoded><![CDATA[<p>We flew in from Seattle this afternoon and saw the wildfiles:</p>
<p><img src="http://static.flickr.com/81/253682955_bc7e5f6ec1.jpg" /><br /><a href="http://www.flickr.com/photos/bigdpix/sets/72157594301297870/"><br />There are more in this Flickr set.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2006/09/26/la-wildfires-as-seen-from-a-plane-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two Weeks Off &#8211; Seeking Input!</title>
		<link>http://www.declan.net/2006/06/29/two-weeks-off-seeking-input/</link>
		<comments>http://www.declan.net/2006/06/29/two-weeks-off-seeking-input/#comments</comments>
		<pubDate>Thu, 29 Jun 2006 21:55:45 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=209</guid>
		<description><![CDATA[I was talking to a friend a while back and realized that in 20 years as a professional, I&#8217;ve never taken more than a week off at any one time.&#160; Part of the reason is my profession, the Information Technology field.&#160; It moves fast and is full of deadlines.&#160; And I&#8217;ve always been a hands [...]]]></description>
			<content:encoded><![CDATA[<p>I was talking to a friend a while back and realized that in 20 years as a professional, I&#8217;ve never taken more than a week off at any one time.&nbsp; Part of the reason is my profession, the Information Technology field.&nbsp; It moves fast and is full of deadlines.&nbsp; And I&#8217;ve always been a hands on kind of guy.&nbsp; Now that I&#8217;m a director, the day to day is less dependent on me.</p>
<p>So, what would a two week vacation look like?&nbsp; No kids&#8230;&nbsp; Sorry guys, but the week trips to NYC and riding bikes from Yuma to San Diego are not what I&#8217;m after for this.&nbsp; A good description of a vacation for me would be &#8220;a long period of time where I don&#8217;t have to make decisions.&#8221;</p>
<p>Some ideas that have come up so far:</p>
<p>Take a cruise.&nbsp; I did this a few years ago, to Alaska.&nbsp; It was actually very nice.&nbsp; I think I&#8217;m resisting it now because I&#8217;ve done it before.&nbsp; Also, a cruise is just FULL of calories&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ride my bike on some long trip.&nbsp; This one has some attractiveness in the fitness area, and getting out on my own.&nbsp; I just keep thinking about how dependent I was on Elaine on the Ride Across California though, and wonder if I could pull this off alone.</p>
<p>Fly off to Europe.&nbsp; Could have lots of family obligations&#8230;</p>
<p>A cabin in the woods.&nbsp; I tried this in Idlywilde once, but I got in late and it was closed.&nbsp; The whole town.&nbsp; Ended up driving from 60 degree weather to 110 weather in Palm Springs.</p>
<p>Palm Springs.&nbsp; This is actually a lot my speed.&nbsp; You really can&#8217;t go outside much, so there&#8217;s an easy excuse to sit in a hotel or cafe and read science fiction books.&nbsp; Also, I just finished &#8220;Generation X&#8221; by Coupland, which details a group of people who dropped out in their 30s and got McJobs there.&nbsp; I think I&#8217;m kinda old for that now, tho.&nbsp; Another place I&#8217;ve already &#8220;done.&#8221;</p>
<p>Vegas.&nbsp; For two weeks tho?&nbsp; I&#8217;d lose the house&#8230; <img src='http://www.declan.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So, blogosphere, where should I go?&nbsp; What should I do?</p>
<p>I can imagine some of the questions&#8230;&nbsp; </p>
<p>Q: What do you want to accomplish?<br />A: Nothing more specific than to be relaxed and rejuvenated at the end of it.</p>
<p>Q: What&#8217;s your budget?<br />A: Hmm, that&#8217;s a toughie&#8230;&nbsp; I&#8217;d pay a lot to relax at this point.&nbsp; I guess some day I have to pay for college for the kids, and retirement.&nbsp; Lets leave this open at the moment.&nbsp; Dare to dream.</p>
<p>Q: Do you want to travel alone?<br />A: Yes and no.&nbsp; I do get lonely, but I also need some alone time.&nbsp; I love seeing my family and friends, but I don&#8217;t want that to set the agenda.&nbsp; Getting off an resetting is the goal.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2006/06/29/two-weeks-off-seeking-input/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Ride Across California Flickr Pictures</title>
		<link>http://www.declan.net/2006/04/24/ride-across-california-flickr-pictures/</link>
		<comments>http://www.declan.net/2006/04/24/ride-across-california-flickr-pictures/#comments</comments>
		<pubDate>Mon, 24 Apr 2006 22:45:52 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Biking]]></category>
		<category><![CDATA[Declan]]></category>
		<category><![CDATA[Elaine]]></category>
		<category><![CDATA[Erin]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Friends]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[San Diego]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=191</guid>
		<description><![CDATA[It&#8217;s going to take me a while to get all the days written up. Here is a link to all of my pictures on Flickr. ]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s going to take me a while to get all the days written up.</p>
<p><a href="http://www.flickr.com/photos/35034345554@N01/sets/72057594111080980/">Here is a link to all of my pictures on Flickr. </a></p>
<p><img src="http://static.flickr.com/45/133423169_e0a88be77f.jpg?v=0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2006/04/24/ride-across-california-flickr-pictures/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Disturbing?</title>
		<link>http://www.declan.net/2006/01/26/disturbing/</link>
		<comments>http://www.declan.net/2006/01/26/disturbing/#comments</comments>
		<pubDate>Thu, 26 Jan 2006 17:32:31 +0000</pubDate>
		<dc:creator>declan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=176</guid>
		<description><![CDATA[http://images.google.com/images?q=tiananmen+square http://images.google.cn/images?q=tiananmen+square]]></description>
			<content:encoded><![CDATA[<p><a href="http://images.google.com/images?q=tiananmen+square">http://images.google.com/images?q=tiananmen+square</a><br />
<a href="http://images.google.cn/images?q=tiananmen+square" /></p>
<p><a href="http://images.google.cn/images?q=tiananmen+square"> </a><a href="http://images.google.cn/images?q=tiananmen+square">http://images.google.cn/images?q=tiananmen+square</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2006/01/26/disturbing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome Audrey Julia Lemson!!!</title>
		<link>http://www.declan.net/2005/11/03/welcome-audrey-julia-lemson/</link>
		<comments>http://www.declan.net/2005/11/03/welcome-audrey-julia-lemson/#comments</comments>
		<pubDate>Thu, 03 Nov 2005 18:18:20 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=162</guid>
		<description><![CDATA[My buddies KC and Dave Lemson have respawned! Here&#8217;s her official website. Congrats Lemsons!!!]]></description>
			<content:encoded><![CDATA[<p>My buddies KC and Dave Lemson have respawned!</p>
<p><img src="http://www.lemson.com/audrey/img_6126_thm.jpg" alt="" /></p>
<p><img src="http://www.lemson.com/audrey/img_6163_thm.jpg" alt="" /></p>
<p><a href="http://www.lemson.com/audrey/">Here&#8217;s her official website.</a></p>
<p>Congrats Lemsons!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2005/11/03/welcome-audrey-julia-lemson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scotty&#8217;s Been Beamed Up :-(</title>
		<link>http://www.declan.net/2005/07/20/scottys-been-beamed-up/</link>
		<comments>http://www.declan.net/2005/07/20/scottys-been-beamed-up/#comments</comments>
		<pubDate>Wed, 20 Jul 2005 17:46:27 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=127</guid>
		<description><![CDATA[We hardly knew ye&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cnn.com/2005/SHOWBIZ/TV/07/20/obit.doohan.ap/index.html?section=cnn_topstories"><img src="http://www.canadianactors.info/James_Doohan_ScotchSHOP.jpg" alt="" /></p>
<p>We hardly knew ye&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2005/07/20/scottys-been-beamed-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gangsta Gadgets &#8211; iPod Spinner</title>
		<link>http://www.declan.net/2005/07/01/gangsta-gadgets-ipod-spinner/</link>
		<comments>http://www.declan.net/2005/07/01/gangsta-gadgets-ipod-spinner/#comments</comments>
		<pubDate>Fri, 01 Jul 2005 07:00:39 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.declan.net/?p=114</guid>
		<description><![CDATA[Gangsta Gadgets &#8211; iPod Spinner I gotta get this!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.syncmag.com/slideshow_viewer/0,2393,l=&#038;s=26772&#038;a=155100&#038;po=5,00.asp">Gangsta Gadgets &#8211; iPod Spinner</a></p>
<p>I gotta get this!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.declan.net/2005/07/01/gangsta-gadgets-ipod-spinner/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

