<?xml version="1.0" encoding="utf-8"?>
<!-- If you are running a bot please visit this policy page outlining rules you must respect. https://www.livejournal.com/bots/ -->
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:lj="https://www.livejournal.com" xmlns:idx="urn:atom-extension:indexing" idx:index="no">
  <id>urn:lj:livejournal.com:atom1:darxus</id>
  <title>Darxus</title>
  <subtitle>Darxus</subtitle>
  <author>
    <name>Darxus</name>
  </author>
  <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/"/>
  <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom"/>
  <updated>2018-03-03T00:37:13Z</updated>
  <lj:journal userid="874250" username="darxus" type="personal"/>
  <link rel="service.feed" type="application/x.atom+xml" href="https://darxus.livejournal.com/data/atom" title="Darxus"/>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:330105</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/330105.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=330105"/>
    <title>Moved to dreamwidth</title>
    <published>2018-03-03T00:37:13Z</published>
    <updated>2018-03-03T00:37:13Z</updated>
    <content type="html">&lt;a target='_blank' href='https://darxus.dreamwidth.org/'&gt;https://darxus.dreamwidth.org/&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:329801</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/329801.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=329801"/>
    <title>I hand wrote my main web page with a fountain pen</title>
    <published>2016-02-22T17:34:02Z</published>
    <updated>2016-02-22T17:34:02Z</updated>
    <content type="html">&lt;a target='_blank' href='http://www.chaosreigns.com/'&gt;http://www.chaosreigns.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;In &lt;a href="http://www.chaosreigns.com/index.html.149" target="_blank"&gt;previous version&lt;/a&gt;s, I blew out the paper, so the transition to a white background would be seamless.  Now that I have ink that isn't black, I didn't blow out the paper, in an attempt to retain more detail.  &lt;br /&gt;&lt;br /&gt;I created the imagemap (clickable links) with a filter included in gimp (open source software along the lines of photoshop).  &lt;br /&gt;&lt;br /&gt;It's entirely usable in text only browsers (links, lynx, w3m), via alt attributes in the imagemap area elements.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:329621</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/329621.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=329621"/>
    <title>[geek] initializing DST: openssl failure / upgrading ubuntu from lucid to precise broke DNS</title>
    <published>2015-02-03T21:09:34Z</published>
    <updated>2015-02-03T21:09:34Z</updated>
    <category term="geek"/>
    <content type="html">I upgraded my linode server from ubuntu distro lucid to precise today.  I didn't have any specific needs, but lucid is getting EOLed in a couple months.&lt;br /&gt;&lt;br /&gt;It broke my DNS server.  This is what ended up fixing it:  &lt;br /&gt;mkdir -p /usr/lib/i386-linux-gnu/openssl-1.0.0/engines&lt;br /&gt;cp -a /usr/lib/i386-linux-gnu/openssl-1.0.0/engines /var/lib/named/usr/lib/i386-linux-gnu/openssl-1.0.0/&lt;br /&gt;Where /var/lib/named was where I had bind chrooted to.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I noticed DNS didn't seem to be working.  I ran:&lt;br /&gt;&lt;br /&gt;# /etc/init.d/bind9 start&lt;br /&gt; * Starting domain name service... bind9&lt;br /&gt;   ...fail!&lt;br /&gt;&lt;br /&gt;Then I checked /var/log/daemon.log, and noticed:&lt;br /&gt;Feb  3 13:35:36 panic named[23991]: initializing DST: openssl failure&lt;br /&gt;Feb  3 13:35:36 panic named[23991]: exiting (due to fatal error)&lt;br /&gt;&lt;br /&gt;The useful way to find out what the problem was from there was:&lt;br /&gt;strace -o named -ff named -u bind -t /var/lib/named&lt;br /&gt;&lt;br /&gt;The "strace" command tells you, among other things, what files a program tries to read.  "-o named" says to write to file "named", and "-ff named" handles forking into multiple threads, creating a file for each.  "-u bind -t /var/lib/named" came from my /etc/default/bind9 :&lt;br /&gt;OPTIONS="-u bind -t /var/lib/named"&lt;br /&gt;&lt;br /&gt;"-u bind" means to run as user bind, and "-t /var/lib/named" means to run via chroot in /var/lib/named.&lt;br /&gt;&lt;br /&gt;panic:~/tmp# grep -i ssl *&lt;br /&gt;named.23906:open("/usr/lib/ssl/openssl.cnf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)&lt;br /&gt;named.23906:open("/usr/lib/i386-linux-gnu/openssl-1.0.0/engines/libgost.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)&lt;br /&gt;&lt;br /&gt;So there were some ssl related files it was trying to load and not finding.  openssl.cnf was apparently not required.&lt;br /&gt;&lt;br /&gt;I tried doing this via mount -bind in /etc/fstab, but it turns out you can't do that readonly.  I added this to /etc/fstab:&lt;br /&gt;&lt;br /&gt;/usr/lib/i386-linux-gnu/openssl-1.0.0/engines /var/lib/named/usr/lib/i386-linux-gnu/openssl-1.0.0/engines none bind,ro&lt;br /&gt;&lt;br /&gt;But that commented that it got mounted writeable.  Because... bind mounting doesn't have a way to do readonly.&lt;br /&gt;&lt;br /&gt;And so I copied it.  And will, apparently, need to forever maintain that manually.  There's probably a better way.  Haven't figured that out yet.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I also had some linode specific problems (login prompts went away), which were fixed by enabling "xenify distro".&lt;a name='cutid1-end'&gt;&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:329310</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/329310.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=329310"/>
    <title>darxus @ 2014-09-28T13:04:00</title>
    <published>2014-09-28T17:04:32Z</published>
    <updated>2014-09-28T17:04:32Z</updated>
    <content type="html">Me on diaspora: &lt;a target='_blank' href='https://diasp.org/u/darxus'&gt;https://diasp.org/u/darxus&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;It's another social media thing, whose goals I like the most.  It's decentralized and open source.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:329005</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/329005.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=329005"/>
    <title>I created an ello account</title>
    <published>2014-09-09T17:33:04Z</published>
    <updated>2014-09-09T17:33:04Z</updated>
    <category term="ello"/>
    <content type="html">&lt;a target='_blank' href='https://ello.co/darxus'&gt;https://ello.co/darxus&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;New social media site.  I guess it's supposed to be less evil?&lt;br /&gt;&lt;br /&gt;The "discover" friend finding feature is useless.  I've been clicking on friends names, and then "following" to get a list of their friends, to dig for my friends.&lt;br /&gt;&lt;br /&gt;My followers who joined before me have an average of 14.6 followers.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:328954</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/328954.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=328954"/>
    <title>Eight years later, I'm still wondering what I could do for nchanter</title>
    <published>2014-07-16T18:34:43Z</published>
    <updated>2014-07-16T18:34:43Z</updated>
    <category term="relationships"/>
    <content type="html">The last, best advice I got, years ago, was to never speak to her again.  So I continue to do that.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;People who were close to us when we were together have said we were both abusive to each other.  I expect I will always have difficulty wrapping my head around any part of that.&lt;br /&gt;&lt;br /&gt;I wasn't a very compassionate person back then.  I regret that I didn't treat her better.  &lt;a href="http://www.chaosreigns.com/howtolive/" target="_blank"&gt;I've learned quite a lot since then.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Two years ago, I had four hours of &lt;a href="http://www.barcc.org/" target="_blank"&gt;BARCC&lt;/a&gt; training (active bystander, and first responder).  In relation to that, I was one of the people who wore an advocate laminate the last two &lt;a href="http://fireflyartscollective.org/" target="_blank"&gt;fireflies&lt;/a&gt;.  I would say I was meaningfully involved in two men whose behavior was particularly problematic toward women (&lt;a href="http://pervocracy.blogspot.com/2012/06/missing-stair.html" target="_blank"&gt;missing stairs&lt;/a&gt;) in the Boston burner community becoming far less involved in that community.  I'm very happy to see people becoming more aware of these things, and trying to do something about it.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I'm interested in suggestions.  You're welcome to speak freely.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:328334</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/328334.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=328334"/>
    <title>I just finished Couch to 5k</title>
    <published>2013-11-18T20:36:44Z</published>
    <updated>2013-11-18T20:36:44Z</updated>
    <category term="running"/>
    <content type="html">By time, not by distance.  It is by far the most commonly recommended beginner running program:  &lt;br /&gt;&lt;a target='_blank' href='http://www.coolrunning.com/engine/2/2_3/181.shtml'&gt;http://www.coolrunning.com/engine/2/2_3/181.shtml&lt;/a&gt;&lt;br /&gt;&lt;a target='_blank' href='http://www.reddit.com/r/c25k'&gt;http://www.reddit.com/r/c25k&lt;/a&gt;&lt;br /&gt;&lt;a target='_blank' href='http://tombenninger.com/c25k/'&gt;http://tombenninger.com/c25k/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Why:  Getting your body to adapt to regularly expending significant energy results in you &lt;i&gt;having&lt;/i&gt; more energy.  Which makes the rest of life easier and more pleasant.  (And there are fine uses for extra cardiovascular stamina.)  And I seem to be a lot happier when I have run recently.  &lt;br /&gt;&lt;br /&gt;A couple tips:&lt;br /&gt;&lt;br /&gt;1) Slow down.  A lot of beginner runners seem to be very discouraged by a counter-productive belief that running needs to be fast.  Shuffling along is just fine if that's what gets your heart rate up.  Getting out of breath means you're doing &lt;i&gt;an&lt;/i&gt;aerobic exercise, which you can't do for as long, and does not have any more aerobic benefit than aerobic exercise (for a beginner).&lt;br /&gt;&lt;br /&gt;2) Running (over-use) injuries are common, and usually easily avoidable, by paying attention to your body and taking a few days off when necessary.  Know what the &lt;a href="http://www.runnersworld.com/health/big-7-body-breakdowns?page=single" target="_blank"&gt;seven most common running injuries&lt;/a&gt; look like.  I worry that rigidly sticking to training schedules and signing up for races causes people to avoid taking the days off they need, resulting in them ending up being forced to take months off.&lt;br /&gt;&lt;br /&gt;Also, I feel like Couch to 5k (c25k) isn't great for seriously overweight people, who I suspect would often be better starting off walking.&lt;br /&gt;&lt;br /&gt;I don't think running had anything to do with my weight loss.  Exercise causes hunger, so you still have to do the calorie restriction.  Counting calories works great for me.  &lt;br /&gt;&lt;br /&gt;Now I'm planning to work up to Bridge to 10k.  Then probably one of Hal Higdon's marathon plans.  Or maybe something more triathlon related.  Sprint (shortest) triathlons sound kind of fun: swim 0.8 km (0.5 mi) + bike 20 km (12.5 mi) + run 5 km (3.1 mi).&lt;br /&gt;&lt;br /&gt;C25k is a 9 week program that took me 25 weeks.  I... don't really care.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:328145</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/328145.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=328145"/>
    <title>I just did my first ever round trip commute by bicycle!</title>
    <published>2013-10-29T19:56:44Z</published>
    <updated>2013-10-29T19:56:44Z</updated>
    <category term="bicycle"/>
    <content type="html">4.8 miles each way, Cambridge (work) to Malden (&lt;span  class="ljuser  i-ljuser  i-ljuser-type-P     "  data-ljuser="cathijosephine" lj:user="cathijosephine" &gt;&lt;a href="https://cathijosephine.livejournal.com/profile/"  target="_self"  class="i-ljuser-profile" &gt;&lt;img  class="i-ljuser-userhead"  src="https://l-stat.livejournal.net/img/userinfo_v8.png?v=17080&amp;v=923.1" /&gt;&lt;/a&gt;&lt;a href="https://cathijosephine.livejournal.com/" class="i-ljuser-username"   target="_self"   &gt;&lt;b&gt;cathijosephine&lt;/b&gt;&lt;/a&gt;&lt;a class="i-ljuser-badge i-ljuser-badge--pro" data-badge-type="pro" data-placement="bottom" data-pro-badge data-pro-badge-type="1" data-is-raw hidden href="#"&gt;&lt;span class="i-ljuser-badge__icon"&gt;&lt;svg class="svgicon" width="25" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33 24"&gt;&lt;path fill-rule="evenodd" d="M19.326 11.95c0 2.01 1.47 3.45 3.48 3.45 2.02 0 3.49-1.44 3.49-3.45 0-2.01-1.47-3.45-3.49-3.45-2.01 0-3.48 1.44-3.48 3.45Zm5.51 0c0 1.24-.8 2.19-2.03 2.19-1.23 0-2.02-.95-2.02-2.19 0-1.25.79-2.19 2.02-2.19s2.03.94 2.03 2.19ZM7.92 15.28H6.5V8.61h3.12c1.45 0 2.24.98 2.24 2.15 0 1.16-.8 2.15-2.24 2.15h-1.7v2.37Zm1.51-3.62c.56 0 .98-.35.98-.9 0-.56-.42-.9-.98-.9H7.92v1.8h1.51ZM18.3802 15.28h-1.63l-1.31-2.37h-1.04v2.37h-1.42V8.61h3.12c1.39 0 2.24.91 2.24 2.15 0 1.18-.74 1.81-1.46 1.98l1.5 2.54Zm-2.49-3.62c.57 0 1-.34 1-.9s-.43-.9-1-.9h-1.49v1.8h1.49Z" clip-rule="evenodd"/&gt;&lt;path fill-rule="evenodd" d="M2 8c0-2.20914 1.79086-4 4-4h20.5c2.2091 0 4 1.79086 4 4v7.9c0 2.2091-1.7909 4-4 4H6c-2.20914 0-4-1.7909-4-4V8Zm4-2.5h20.5C27.8807 5.5 29 6.61929 29 8v7.9c0 1.3807-1.1193 2.5-2.5 2.5H6c-1.38071 0-2.5-1.1193-2.5-2.5V8c0-1.38071 1.11929-2.5 2.5-2.5Z" clip-rule="evenodd"/&gt;&lt;/svg&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;). 25 minutes there, 28 minutes back. Very happy with how it went.&lt;br /&gt;&lt;br /&gt;I have magical shoes that attach to my pedals, so I can pedal up and down at the same time. This is horribly called "clipless". I've seen a suggestion to call them "clip-in". I went with mountain bike / two bolt style to get shoes I can actually walk in.&lt;br /&gt;&lt;br /&gt;Also, the very end of my trip was the first time I fell due to having my shoes attached to my pedals. Trying to get through the gate into the garage by work. I knew I was pushing my ability. Fell over at 0mph. I wish I had a video to figure out why it managed to not hurt at all. Happy to have that experience.&lt;br /&gt;&lt;br /&gt;It's fun to feel slightly less dependent on things like cars and subways&lt;br /&gt;&lt;br /&gt;And this has me kind of thinking about moving back to greater Boston, from New Hampshire, so I can do more bicycle commuting.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:327912</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/327912.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=327912"/>
    <title>[geek] ssh "authentication accepted.... Access denied."</title>
    <published>2013-10-29T19:55:13Z</published>
    <updated>2013-10-29T20:41:21Z</updated>
    <category term="geek"/>
    <content type="html">Didn't find any web search hits, so I thought I'd document it:&lt;br /&gt;&lt;br /&gt;$ ssh -v &amp;lt;host&amp;gt;&lt;br /&gt;...&lt;br /&gt;debug1: Trying RSA authentication via agent with '&amp;lt;key&amp;gt;'&lt;br /&gt;debug1: Received RSA challenge from server.&lt;br /&gt;debug1: Sending response to RSA challenge.&lt;br /&gt;debug1: Remote: RSA authentication accepted.&lt;br /&gt;Received disconnect from &amp;lt;ip&amp;gt;: Access denied.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I had installed linux on a new machine, and then copied over a bunch of stuff to attempt to mimic an existing machine.  I copied over /home (including the ~/.ssh/authorized_keys authenticated against here), /etc/passwd, and /etc/group.  The problem was that I had not copied over /etc/shadow.&lt;br /&gt;&lt;br /&gt;Feeling a little more arcane than usual.&lt;a name='cutid1-end'&gt;&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:327640</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/327640.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=327640"/>
    <title>I seem to have gotten my rear derailer straightened out.</title>
    <published>2013-09-12T03:01:47Z</published>
    <updated>2013-09-12T03:01:47Z</updated>
    <category term="bicycle"/>
    <content type="html">I went into it thinking I totally knew what I was doing, since I was pretty comfortable with the front derailer by the time I went to bed last night. But it wasn't cooperating. I was only messing with the cable tension knob. And... it was not very responsive.  &lt;br /&gt;&lt;br /&gt;Then I watched a couple videos on the rear derailer, and realized there's a cable tension knob right on the derailer. Which, for obvious reasons (friction), is *much* more responsive.&lt;br /&gt;&lt;br /&gt;Then I sat on my floor for half an hour, with my bike upside down, running back and forth through the rear gears, fiddling with the tension, to balance out the smoothness of up-shifts and down-shifts as much as possible. Not because that amount of time was remotely appropriate, but because it was fun.&lt;br /&gt;&lt;br /&gt;I still don't understand how people cope with the lack of lock nuts on these things.&lt;a name='cutid1-end'&gt;&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:327359</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/327359.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=327359"/>
    <title>I fixed my bike!</title>
    <published>2013-09-11T03:12:12Z</published>
    <updated>2013-09-11T03:12:48Z</updated>
    <category term="bicycle"/>
    <content type="html">The one I bought yesterday, that shouldn't need fixing.&lt;br /&gt;&lt;br /&gt;I mentioned to the salesman that the front derailer seemed off. It was making noise when in both top gears, and it felt hesitant to shift into the top front gear.  Then I test rode another bike, and it didn't get fixed. The guy said these things always need adjustment after break in. And I had seen a couple videos on how to adjust them, it seemed easy, and I really wanted to get my hands dirty.&lt;br /&gt;&lt;br /&gt;There are two adjustment screws for the front derailer position. One for low gear, one for high gear. You turn it, it moves. Simple, right? But it wasn't moving. Except when in low gear, which was fine. After a bit of poking, I decided the attached cable must need more tension. On similar cables on my sv650, there are knobs by the levers to do this. There wasn't an obvious knob by the lever. I looked along the cable, and right at the top of the down tube, there *are* knobs on the derailer cables. I twisted one, and it adjusted the tension!&lt;br /&gt;&lt;br /&gt;From there, all went as planned. Although I was surprised I didn't have to re-adjust the front low gear position (I guess that makes sense, if the problem was the cable slacking during break in). I went on a brief test ride, and the front derailer seems nicely sorted. Rear derailer still needs some work though. Gears 6 and 7 (of 8) are hesitant to engage. Maybe tomorrow.&lt;br /&gt;&lt;br /&gt;That test ride on the roads around my house, empty at night, was fun. Was tough to not just wander off.&lt;a name='cutid1-end'&gt;&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:327075</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/327075.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=327075"/>
    <title>I finally have a road bike</title>
    <published>2013-09-09T17:48:10Z</published>
    <updated>2013-09-09T17:48:10Z</updated>
    <category term="bicycle"/>
    <content type="html">&lt;a href="http://darxus.livejournal.com/4578.html" target="_blank"&gt;Ten years ago I bought Specialized Rockhopper&lt;/a&gt; mountain bike, because I wanted a bike that could withstand anything.  Then I mostly used it on the street, and hated how inefficient it felt.  &lt;br /&gt;&lt;br /&gt;So I finally fixed that problem.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://wheelworks.com/product/13specialized-allez-compact-172285-1.htm" target="_blank"&gt;2013 Specialized Allez Compact&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.kryptonitelock.com/Pages/ProductInformation.aspx?PNumber=001010" target="_blank"&gt;Kryptonite evolution 4 mini-9 lock&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Cat Eye &lt;a href="http://www.cateye.com/en/products/detail/HL-EL135/" target="_blank"&gt;EL-135&lt;/a&gt; headlight and &lt;a href="http://www.cateye.com/en/products/detail/TL-LD130-R/" target="_blank"&gt;TL-LD130R&lt;/a&gt; tail light set.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:326880</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/326880.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=326880"/>
    <title>Open-source OS and software for android hardware (phones)</title>
    <published>2013-08-09T02:50:33Z</published>
    <updated>2013-08-09T02:50:33Z</updated>
    <category term="phone"/>
    <content type="html">"Replicant is a fully free Android distribution running on several devices."&lt;br /&gt;&lt;br /&gt;- &lt;a target='_blank' href='http://replicant.us/about/'&gt;http://replicant.us/about/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;"The F-Droid Repository is an easily-installable catalogue of FOSS (Free and Open Source Software) applications for the Android platform."&lt;br /&gt;&lt;br /&gt;- &lt;a target='_blank' href='https://f-droid.org/'&gt;https://f-droid.org/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Since I really don't trust google anymore, I'm very happy to see these things.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:326624</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/326624.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=326624"/>
    <title>Charging modern phones is complicated</title>
    <published>2013-07-26T01:42:32Z</published>
    <updated>2013-07-26T01:42:32Z</updated>
    <category term="phone"/>
    <content type="html">USB standard power is 0.5 amps x 5 volts = 2.5 watts.  That's what you get when you plug into any computer, or an old car USB power adapter.&lt;br /&gt;&lt;br /&gt;With that much power, trying to use my phone for GPS navigation results in draining the battery.&lt;br /&gt;&lt;br /&gt;The wall plug that came with my Samsung Galaxy S 4 says 2 amps x 5 volts = 10 watts.  To signal a device can pull this much power, Apple uses some non-standard set of resistors, and everybody else shorts the data pins together (which is apparently pretty easy with a soldering iron, or by modifying a USB cable).  If a phone doesn't notice this sort of indicator, it assumes it's plugged into a computer which would be damaged if it pulled more than 0.5 amps, so it only pulls 0.5 amps.&lt;br /&gt;&lt;br /&gt;So basically, you can't just plug a phone into a computer anymore and expect useful charging.  I hope they manage to sort this out soon.&lt;br /&gt;&lt;br /&gt;I ordered one of these for my car, for $8, after reading lots of reviews (particularly by K. Crawford):&lt;br /&gt;&lt;a target='_blank' href='http://www.amazon.com/PowerGen-3-1Amps-charger-Designed-Android/dp/B0088U6OZY'&gt;http://www.amazon.com/PowerGen-3-1Amps-charger-Designed-Android/dp/B0088U6OZY&lt;/a&gt;&lt;br /&gt;It has one jack for Apple, and one for everything else.  Using the wrong jack will still get you at least 0.5 amps.&lt;br /&gt;&lt;br /&gt;Samsung sells one, with a single USB jack, for $35.&lt;br /&gt;&lt;br /&gt;Nobody makes one with more than one high amp non-Apple jack.&lt;a name='cutid1-end'&gt;&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:326367</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/326367.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=326367"/>
    <title>My latest phone choice</title>
    <published>2013-07-23T16:50:15Z</published>
    <updated>2014-04-17T17:55:44Z</updated>
    <category term="phone"/>
    <category term="toys"/>
    <content type="html">For a lot of people, right now this is going to come down to HTC One vs. Samsung Galaxy S 4 (GS4), so I'll start with that.&lt;br /&gt;&lt;br /&gt;In most ways, I prefer the HTC One (love the case).  But I don't see how the un-replacable battery is forgivable.  I saw one guy say by the time his battery isn't holding a solid charge, there will be ample info for a handy person to replace their own battery.  And I did replace an un-replaceable battery in a heart rate monitor.  But that person clearly didn't read the &lt;a href="http://www.ifixit.com/Teardown/HTC+One+Teardown/13494/1" target="_blank"&gt;ifixit teardown for the HTC One&lt;/a&gt;.  Just beginning to open it requires horribly mangling that beautiful case.&lt;br /&gt;&lt;br /&gt;My reasons for continuing to use Sprint are going to be less common.  I have a grandfathered SERO account, which means it costs me less ($50/mo + taxes for unlimited data), and I live in Southeast New Hampshire, where fewer providers have decent signal.  And going with Sprint means I'm looking at CDMA phones, while a lot of providers use GSM phones which have some different options.&lt;br /&gt;&lt;br /&gt;I &lt;a href="http://blogs.msdn.com/b/jw_on_tech/archive/2012/03/13/why-i-left-google.aspx" target="_blank"&gt;don't trust google&lt;/a&gt;.  I'd rather have nothing to do with them.  That's a big part of why I haven't had a terribly modern phone in years.  At the moment, I think the advantages outweigh my distrust.  Hopefully in two years I will somehow be able to get something like a &lt;a href="http://en.wikipedia.org/wiki/Sailfish_OS" target="_blank"&gt;Sailfish&lt;/a&gt; phone.  Something more open.&lt;br /&gt;&lt;br /&gt;I long for the days when it was common for people to go multiple days without needing to charge their phone.  I appreciate the efforts to shrink phones and make them more powerful, but I wish they'd just triple the size of the damn battery.  And I really wish somebody would provide some solid stats on actual battery life.&lt;br /&gt;&lt;br /&gt;There is an Active version of the GS4 that's water resistant and comes in a pretty blue color, but it &lt;a href="http://forums.androidcentral.com/samsung-galaxy-s4-active/288667-samsung-galaxy-s4-active-sprint.html" target="_blank"&gt;doesn't sound like it'll be available for CDMA&lt;/a&gt;.  The same person recommends waiting until September / October for new phones, but I don't want a brand new phone, I want one that's been tested a bit, so now seems like a great time in the cycle for me.  &lt;br /&gt;&lt;br /&gt;More than just the replaceable battery issue, the &lt;a href="http://www.ifixit.com/Teardown/Samsung+Galaxy+S4+Teardown/13947/1" target="_blank"&gt;GS4 has a much higher repairability rating (8/10)&lt;/a&gt; than the &lt;a href="http://www.ifixit.com/Teardown/HTC+One+Teardown/13494/1" target="_blank"&gt;HTC One (1/10)&lt;/a&gt;.  &lt;br /&gt;&lt;br /&gt;I definitely prefer the HTC One's camera over the GS4, entirely on lowlight capability.  Something I've wished all cameras would focus more on, for years.  Ease off the megapixels, let me take photos in the dark.&lt;br /&gt;&lt;br /&gt;The GS4 has better (more durable) glass (Gorrilla Glass 3 vs. 2) than the HTC One, and the ability to display two apps at once sounds very nice.  &lt;br /&gt;&lt;br /&gt;So yeah, I'm enthusiastically going with the crappy plastic case over the sexy as hell, milled from a solid block of aluminum case.&lt;br /&gt;&lt;br /&gt;I'm hoping to pick it up tomorrow.&lt;br /&gt;&lt;br /&gt;Things I'd like:&lt;ul&gt;&lt;li&gt;Replaceable battery&lt;/li&gt;&lt;li&gt;High repairability&lt;/li&gt;&lt;li&gt;Substantially longer battery life (happy to have a bigger phone for it)&lt;/li&gt;&lt;li&gt;Water resistance&lt;/li&gt;&lt;li&gt;Lowlight camera sensitivity (don't care so much about megapixels)&lt;/li&gt;&lt;li&gt;Physical keyboard&lt;/li&gt;&lt;li&gt;Sexy milled case&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;a name='cutid1-end'&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Edit (2014-04-17): Another feature I'd like is more powerful vibration.  After you notice it sucks, you can find lots of people complaining about the weak vibration of the GS4.  But no reviewers commented on it?  And how much better are the HTC One's speakers?</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:325993</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/325993.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=325993"/>
    <title>[geek] Root on software raid with Debian and Ubuntu, part 2</title>
    <published>2013-04-30T16:46:22Z</published>
    <updated>2013-04-30T16:46:22Z</updated>
    <category term="geek"/>
    <content type="html">I just did the second machine of the pair.  Decided to start out with ext4, and both root and /boot on the software raid, with the ubuntu server installer (ubuntu-12.04.2-server-amd64.iso).  Worked beautifully.&lt;a name='cutid1-end'&gt;&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:325774</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/325774.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=325774"/>
    <title>[geek] Root on software raid with Debian and Ubuntu</title>
    <published>2013-04-23T21:02:03Z</published>
    <updated>2013-04-30T16:46:57Z</updated>
    <category term="geek"/>
    <content type="html">Didn't work with Debian, or with Ubuntu's Desktop image.  I did get it to work with Ubuntu's Server image.&lt;br /&gt;&lt;br /&gt;I guess a few years ago (August 2009?) I installed a couple machines with everything but /boot on a single software raid0.  Identical machines, so I got my redundancy elsewhere, and I need the disk I/O throughput.&lt;br /&gt;&lt;br /&gt;I just tried repeating that.  With debian-live-6.0.7-amd64-gnome-desktop.iso, booting the live option and running the gui installer, it failed with:  "GRUB installation failed&lt;br /&gt;The 'grub-pc' package failed to install into /target/. Without the GRUB boot loader, the installed system will not boot."&lt;br /&gt;&lt;br /&gt;With the text install, grub installed, but when I rebooted, it said /dev/md0 (the software raid) didn't exist.&lt;br /&gt;&lt;br /&gt;So I used Ubuntu.  ubuntu-12.04.2-desktop-amd64.iso said my previously created raid partitions ("physical volume for RAID") were "unknown", and wouldn't let me create that type of partition.  So I tried ubuntu-12.04.2-server-amd64.iso, which finally worked.  &lt;br /&gt;&lt;br /&gt;I had 8 drives, 300gb each.  On each drive, I created the first partition at the end of the drive with 299gb, as a RAID partition, and the second partition at the beginning of the drive.  First drive's small partition was /boot, the rest were swap.  Then I selected the option to configure software raid, created one, and added the 8 partitions.  Then I created a partition on that raid designated to be mounted as root.  &lt;br /&gt;&lt;br /&gt;This seems to cover it well:  &lt;a target='_blank' href='https://help.ubuntu.com/12.04/serverguide/advanced-installation.html'&gt;https://help.ubuntu.com/12.04/serverguide/advanced-installation.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;One variable I didn't try was ext3 vs. ext4.  All my failures were with ext4, and my success was with ext3.  But I suspect that's unrelated.&lt;br /&gt;&lt;br /&gt;I'm told root &lt;i&gt;and&lt;/i&gt; /boot on lvm on software raid should work with more recent versions of grub than I was working with.  Fancy.&lt;br /&gt;&lt;br /&gt;Edit:  /boot on software raid on Arch:  &lt;a target='_blank' href='http://travishegner.com/2012/02/boot-arch-linux-from-an-mdadm-array/'&gt;http://travishegner.com/2012/02/boot-arch-linux-from-an-mdadm-array/&lt;/a&gt;&lt;br /&gt;&lt;a name='cutid1-end'&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Edit:  &lt;a href="http://darxus.livejournal.com/325993.html" target="_blank"&gt;Part 2.&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:325458</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/325458.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=325458"/>
    <title>darxus @ 2013-04-15T15:58:00</title>
    <published>2013-04-15T19:58:34Z</published>
    <updated>2013-04-15T19:58:34Z</updated>
    <content type="html">Sounding off.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:325267</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/325267.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=325267"/>
    <title>Google being evil</title>
    <published>2013-02-28T15:28:33Z</published>
    <updated>2013-02-28T15:28:33Z</updated>
    <content type="html">"Help us keep your account secure&lt;br /&gt;&lt;br /&gt;Just enter your mobile phone number, and we'll let you know if we notice unusual activity in your account. Learn more about how a phone number can help secure your account"&lt;br /&gt;&lt;br /&gt;- Google, when I tried to check my calender.&lt;br /&gt;&lt;br /&gt;This information is incredibly valuable to them, for selling the data they've collected on you to people advertising on mobile browsers.  Implying that it's for your own good is evil.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:324649</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/324649.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=324649"/>
    <title>"I get to run today!"</title>
    <published>2013-01-30T19:54:46Z</published>
    <updated>2013-01-30T19:54:46Z</updated>
    <category term="running"/>
    <content type="html">It sure is weird to feel like that.&lt;br /&gt;&lt;br /&gt;I'm running 10 minutes, three times a week.  Planning to increase time 10% per week until... I don't know.  &lt;br /&gt;&lt;br /&gt;I'm kind of worried about marathon training making it impossible to put on muscle.  But maybe if I do one marathon a year, training for ~16 weeks, I can put on muscle the rest of the year and only run 30 minutes three times a week?&lt;br /&gt;&lt;br /&gt;Today was my first run in my &lt;a href="http://zemgear.com/360.html" target="_blank"&gt;Zem 360&lt;/a&gt; minimal running shoes, which I got to avoid running barefoot on frozen and heavily salted sidewalks.  I'm happy with them.  Conditions seemed fine for running barefoot today, but I decided to try my new toy and take it a little easier on my body.  Not wearing my cushy running shoes still is a lot more work for my calves.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:324465</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/324465.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=324465"/>
    <title>I ran!</title>
    <published>2013-01-24T20:09:18Z</published>
    <updated>2013-01-24T20:10:51Z</updated>
    <category term="running"/>
    <content type="html">My favorite part of Arisia is the Saturday night club dance.  It was five hours.  I was in a lot of pain by the end of it.  Discussing this with &lt;span  class="ljuser  i-ljuser  i-ljuser-type-P     "  data-ljuser="danceboy" lj:user="danceboy" &gt;&lt;a href="https://danceboy.livejournal.com/profile/"  target="_self"  class="i-ljuser-profile" &gt;&lt;img  class="i-ljuser-userhead"  src="https://l-stat.livejournal.net/img/userinfo_v8.png?v=17080&amp;v=923.1" /&gt;&lt;/a&gt;&lt;a href="https://danceboy.livejournal.com/" class="i-ljuser-username"   target="_self"   &gt;&lt;b&gt;danceboy&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;, I said I needed to get in the shape he's in.  He asked if I'd like him to drag me out running.  I decided to try to get back into running.  &lt;br /&gt;&lt;br /&gt;Last time I was running, I had the Minuteman trail in my back yard.  In the several years since, I've used the lack of sidewalks in my neighborhood as an excuse not to run.  And occasionally considered running at work.  So, my first day back to work, two days ago, I was tempted to put off running until I got new running shoes and a GPS watch, so I took off my shoes and went outside and ran.  22.3°F, heavily salted sidewalks, barefoot.  That lasted four minutes, due to fear of seriously damaging my feet.  &lt;br /&gt;&lt;br /&gt;I dug out my old running shoes (Brooks Addiction 7), was reminded of how obscenely comfortable they are, ordered &lt;a href="http://zemgear.com/360.html" target="_blank"&gt;ZEMGear 360s&lt;/a&gt; ("barefoot" running shoes), waited two days, and went running in my old shoes, for nine minutes.  Didn't even use the fact that I forgot my merino &lt;a href="http://www.buffusa.com/sports/collections/filter/men" target="_blank"&gt;buff&lt;/a&gt; and gloves as an excuse not to.  "16.5°F, feels like 6°F".  I feel great.&lt;br /&gt;&lt;br /&gt;My main goal is to take it easy and not hurt myself.  I think it would be fun to work toward doing a marathon over the next couple years.  I'm planning to wear the zems when necessary, and run barefoot when I can.  &lt;a name='cutid1-end'&gt;&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:324280</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/324280.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=324280"/>
    <title>I'm learning to play the flute and fife</title>
    <published>2012-12-16T01:31:34Z</published>
    <updated>2012-12-16T01:49:25Z</updated>
    <category term="music"/>
    <content type="html">In third grade I had a battery of psychological tests to figure out what was wrong with me that was causing me to get such random grades.  The results were something like "You're bored.  And, by the way, you should try playing a musical instrument."&lt;br /&gt;&lt;br /&gt;I guess I did some brief recorder lessons, which I can hardly remember.&lt;br /&gt;&lt;br /&gt;Then fifth through seventh grade I did violin lessons at my public school.  Because I thought playing the fiddle would be awesome.  I guess I quit due to utter lack fo joy.  The violin is an amazing instrument, how can you fail to make that fun for a kid?  I still deeply need to play the fiddle some day, but I got myself one a number of years ago, and that thing is hard.&lt;br /&gt;&lt;br /&gt;I've since made fairly brief attempts at the electronic keyboard / piano, and electric guitar.  Both of which I wasn't a huge fan of at least in part because I was expected to play multiple notes at once.&lt;br /&gt;&lt;br /&gt;Two weeks ago I had &lt;a href="http://www.reddit.com/r/climbing/comments/13zdou/this_is_me_and_my_new_friend_showing_me_his/c78l4tc" target="_blank"&gt;this conversation&lt;/a&gt; regarding rock climbing in a beautiful spot:&lt;br /&gt;&lt;br /&gt;Him: I'd hire two people to make this a complete set - one old man smoking a pipe, and one other person to play a fife as I danced along the holds.&lt;br /&gt;Me: I could totally talk friends into doing this.&lt;br /&gt;Him: You have very good friends.&lt;br /&gt;Me: Yes.&lt;br /&gt;&lt;br /&gt;And then I developed an overwhelming urge to play the fife.  Problem was, I couldn't figure out which key I wanted.  Since they're generally six hole instruments pretty bad at playing keys they aren't specifically designed for.&lt;br /&gt;&lt;br /&gt;And then (December third?) Zeph mentioned she had a very nice (western concert) flute she wasn't planning to use anymore, that she was willing to let me borrow.  Which seemed perfect - capable of all keys (=fully chromatic?), and should translate well to any fife I ended up picking.&lt;br /&gt;&lt;br /&gt;Yesterday I received my Yamaha "fife".  I say "fife" because some people argue it's more of an open holed piccolo, because it has eight holes (not six), and is fully chromatic(?).  Not exactly what I was looking for, but apparently a bizarre combination of a very good instrument, very durable, and $7!  Also, way more portable than a flute.  It was designed for kids planning to eventually play the flute.  Fingering is identical in C major.  I also ordered The Fife Book by Liz Goodwin, designed specifically for this instrument.&lt;br /&gt;&lt;br /&gt;Today I played it in the shower.  Some of the holes were prone to getting clogged with water.  Last night, I played it in bed as I was going to sleep.  I hope to eventually jam on a mountain top with some similar instruments and small drums.  I need to make a belt sheath for it, possibly out of the pouch it came with.  &lt;br /&gt;&lt;br /&gt;It apparently has a &lt;a href="http://www.saundrecs.co.uk/fifes.htm" target="_blank"&gt;problematic F sharp&lt;/a&gt;.  &lt;br /&gt;&lt;br /&gt;I think I'd like to eventually get a fife in the key of D (Possibly &lt;a href="http://www.instructables.com/id/Making-Simple-PVC-Flutes/" target="_blank"&gt;making one&lt;/a&gt;, or &lt;a href="http://www.sweetheartflute.com/renfifes.html" target="_blank"&gt;this&lt;/a&gt;), because that's apparently good for playing with guitars, banjos, and fiddles.  And for Irish folk music.  &lt;br /&gt;&lt;br /&gt;For now, I'm tearing through The Fife Book.  &lt;br /&gt;&lt;br /&gt;I need to figure out how to learn some music theory.&lt;a name='cutid1-end'&gt;&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:324083</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/324083.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=324083"/>
    <title>Randomness on the street</title>
    <published>2012-12-02T15:04:19Z</published>
    <updated>2012-12-02T15:05:05Z</updated>
    <content type="html">Last night I was walking from Boston Decompression (a Burning Man thing), without a coat, with only a t-shirt (to avoid having to deal with a coat), on Boylston St. in Boston, I had this conversation with a random attractive woman:&lt;br /&gt;&lt;br /&gt;Her: You are so cold!&lt;br /&gt;Me: Yes!&lt;br /&gt;Her: And you know it!&lt;br /&gt;Me: Yes!&lt;br /&gt;Her: Okay!</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:323358</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/323358.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=323358"/>
    <title>Climbed, should lunge less</title>
    <published>2012-11-18T03:42:34Z</published>
    <updated>2012-11-18T03:43:02Z</updated>
    <category term="climbing"/>
    <content type="html">The guy I ended up climbing with through the white board today did at least one 5.12.  He pointed out I was skipping holds, making my climbs harder - I guess I haven't been paying as much attention to that problem lately.&lt;br /&gt;&lt;br /&gt;He also pointed out how much I'm lunging from hold to hold, dropping a bunch of weight on the handholds.  And that it would be less work to move more smoothly.&lt;br /&gt;&lt;br /&gt;Elbow seems to be significantly better.  Still can't bench press heavy.  But no tweaks at all while climbing, even though I put some weight on it in a chimney like situation.  I think I'm going back up to climbing twice a week.  Maybe three again soon.&lt;a name='cutid1-end'&gt;&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:darxus:323251</id>
    <link rel="alternate" type="text/html" href="https://darxus.livejournal.com/323251.html"/>
    <link rel="self" type="text/xml" href="https://darxus.livejournal.com/data/atom/?itemid=323251"/>
    <title>Climbed, got shoes, elbow is improving</title>
    <published>2012-11-15T04:56:00Z</published>
    <updated>2012-11-15T04:56:00Z</updated>
    <category term="climbing"/>
    <content type="html">Climbed on 2012-10-30.  Ordered shoes at the shoe demo on 2012-11-06 (but didn't climb. Climbed today.&lt;br /&gt;&lt;br /&gt;I ordered &lt;a href="http://www.sportiva.com/products/footwear/climbingapproach/tarantulace" target="_blank"&gt;La Sportiva Tarantulace size 44&lt;/a&gt;, for $68.  The shoe demo seemed like a great way to buy climbing shoes.  They had them when I went in today.  It's great to finally have all my own gear for indoor climbing.  My feet are definitely going to take some getting used to these shoes without socks.&lt;br /&gt;&lt;br /&gt;My left elbow definitely seems to have some mild triceps tendonosis, which is why I haven't climbed as much lately.  &lt;a href="http://www.t-nation.com/free_online_article/sports_body_training_performance/eccentric_exercise_a_solution_to_tendonitis" target="_blank"&gt;This article on eccentric exercises for tendonosis seems useful&lt;/a&gt;.  It basically suggests doing negative reps.  So I've been randomly doing a couple of those just providing resistance with my other hand as I've thought of it, trying to smooth out the tendon.  Today I did some more bench pressing, starting out with 5 pound dumbbells, as I did a week ago.  That went &lt;i&gt;much&lt;/i&gt; better.  Increased a bit.  Talked to another guy in the weight room who suggested &lt;a href="http://www.exrx.net/WeightExercises/Triceps/DBTriExt.html" target="_blank"&gt;French presses&lt;/a&gt;.  That sounded good, particularly since I had heard that bench presses aren't particularly healthy, so I did some of those.  My elbow is still far from great, but I'm really excited about the improvement.&lt;br /&gt;&lt;br /&gt;I'm starting to think &lt;span  class="ljuser  i-ljuser  i-ljuser-type-P     "  data-ljuser="cathijosephine" lj:user="cathijosephine" &gt;&lt;a href="https://cathijosephine.livejournal.com/profile/"  target="_self"  class="i-ljuser-profile" &gt;&lt;img  class="i-ljuser-userhead"  src="https://l-stat.livejournal.net/img/userinfo_v8.png?v=17080&amp;v=923.1" /&gt;&lt;/a&gt;&lt;a href="https://cathijosephine.livejournal.com/" class="i-ljuser-username"   target="_self"   &gt;&lt;b&gt;cathijosephine&lt;/b&gt;&lt;/a&gt;&lt;a class="i-ljuser-badge i-ljuser-badge--pro" data-badge-type="pro" data-placement="bottom" data-pro-badge data-pro-badge-type="1" data-is-raw hidden href="#"&gt;&lt;span class="i-ljuser-badge__icon"&gt;&lt;svg class="svgicon" width="25" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33 24"&gt;&lt;path fill-rule="evenodd" d="M19.326 11.95c0 2.01 1.47 3.45 3.48 3.45 2.02 0 3.49-1.44 3.49-3.45 0-2.01-1.47-3.45-3.49-3.45-2.01 0-3.48 1.44-3.48 3.45Zm5.51 0c0 1.24-.8 2.19-2.03 2.19-1.23 0-2.02-.95-2.02-2.19 0-1.25.79-2.19 2.02-2.19s2.03.94 2.03 2.19ZM7.92 15.28H6.5V8.61h3.12c1.45 0 2.24.98 2.24 2.15 0 1.16-.8 2.15-2.24 2.15h-1.7v2.37Zm1.51-3.62c.56 0 .98-.35.98-.9 0-.56-.42-.9-.98-.9H7.92v1.8h1.51ZM18.3802 15.28h-1.63l-1.31-2.37h-1.04v2.37h-1.42V8.61h3.12c1.39 0 2.24.91 2.24 2.15 0 1.18-.74 1.81-1.46 1.98l1.5 2.54Zm-2.49-3.62c.57 0 1-.34 1-.9s-.43-.9-1-.9h-1.49v1.8h1.49Z" clip-rule="evenodd"/&gt;&lt;path fill-rule="evenodd" d="M2 8c0-2.20914 1.79086-4 4-4h20.5c2.2091 0 4 1.79086 4 4v7.9c0 2.2091-1.7909 4-4 4H6c-2.20914 0-4-1.7909-4-4V8Zm4-2.5h20.5C27.8807 5.5 29 6.61929 29 8v7.9c0 1.3807-1.1193 2.5-2.5 2.5H6c-1.38071 0-2.5-1.1193-2.5-2.5V8c0-1.38071 1.11929-2.5 2.5-2.5Z" clip-rule="evenodd"/&gt;&lt;/svg&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt; must be right, that I must have caused the tendonosis while climbing, even though it's not a muscle you use a lot while climbing. &lt;br /&gt;&lt;a name='cutid1-end'&gt;&lt;/a&gt;</content>
  </entry>
</feed>
