<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dw="http://www.dreamwidth.org">
  <id>tag:dreamwidth.org,2009-05-01:169513</id>
  <title>A Place in the Forest</title>
  <subtitle>Mark Atwood</subtitle>
  <author>
    <name>Mark Atwood</name>
  </author>
  <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/"/>
  <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom"/>
  <updated>2012-08-04T14:28:13Z</updated>
  <dw:journal username="fallenpegasus" type="personal"/>
  <link rel="hub" href="http://pubsubhubbub.appspot.com/"/>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:849512</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/849512.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=849512"/>
    <title>Mark's Stories: "Fire the Janitors!"</title>
    <published>2012-08-04T14:28:13Z</published>
    <updated>2012-08-04T14:28:13Z</updated>
    <category term="it"/>
    <category term="bofh"/>
    <category term="stories"/>
    <dw:security>public</dw:security>
    <dw:reply-count>2</dw:reply-count>
    <content type="html">At one company I worked at, one of the problems it didn't have was IT.&lt;br /&gt;&lt;br /&gt;When someone was hired, by the time they got to their new desk, there was a computer on it with the correct image on it, their desk phone worked, their email worked, the calendaring and scheduling worked, and all necessary passwords and ACLs were configured.  The internal ethernet networks all worked, were fast, and were properly isolated from each other.  The wall ports were all correctly labeled, and there where the right kinds of wall ports in each cubical and conference room. The presentation projectors and conference room speaker phones all worked. The printers all worked, printed cleanly, were kept stocked, and were consistently named. The internet connections were fast and well managed.  Internal and external security incidents were quickly recognized and dealt with. Broken machines were immediately replaced with working and newly imaged replacements. If someone accidentally deleted a file, getting it back from backup typically took less than an hour. Software updates were announced ahead of time, and usually happened without issue.&lt;br /&gt;&lt;br /&gt;The IT staff did not seem noticeably bitter, angry, harried, or otherwise suffering from the emotional costs traditionally endemic to that job role.  In fact, they were almost invisible in their skill and competence.&lt;br /&gt;&lt;br /&gt;So, of course, came the day when the senior executives said "the carpets are just naturally clean all the time, we don't need all these janitors!". IT was "reorganized" into a smaller staff of younger and much less experienced (and probably cheaper) people.&lt;br /&gt;&lt;br /&gt;Of course, it all went to shit.  New employees would go a week before they had machines, phones, passwords, and ACLs.  Printers ran out of paper, projectors ran out of lightbulbs, servers ran out of storage, networks got misconfigured, and so forth.  The total time lost and wasted across the whole company was most certainly greater than the savings of laying off the expensive and skilled IT staff.&lt;br /&gt;&lt;br /&gt;This is not to say that the reorganized IT staff were stupid or lazy.  They worked very hard and ran themselves ragged trying to keep up with the cycle of operations, while trying to skill themselves up in their "spare time" and with a slashed training budget.&lt;br /&gt;&lt;br /&gt;The lessons I learned from this experience speak for themselves.&lt;br /&gt;&lt;br /&gt;What lessons that may have been learned by any of the other people involved, especially the executives who made these decisions, I cannot say.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=849512" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:849188</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/849188.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=849188"/>
    <title>Mark's Stories: The closed source drivers</title>
    <published>2012-08-03T20:37:39Z</published>
    <updated>2012-08-03T20:40:54Z</updated>
    <category term="work"/>
    <category term="stories"/>
    <category term="open source"/>
    <category term="software"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">I was working on a highly constrained consumer electronics device, a little "satellite device" that spoke to the main device over a CATV RF coax cable and also received commands from an IR remote control.  My code was failing in bizarre ways.  I adopted an extremely paranoid defensive programming stance, filling my code with asserts and doing paranoid cross checking of all inputs.  This didn't make the device work.  Instead it consistently didn't work, instead of inconsistently, because the cross checks and asserts would usually (but not always) trip before it would crash. It also started to run out of memory because of the all the paranoia code I had added.&lt;br /&gt;&lt;br /&gt;I asked for the source code for the driver for the IR receiver, and for the driver for the  CATV RF digital transceiver, and for the peer code that was driving the cable digital that ran on the main device.&lt;br /&gt;&lt;br /&gt;The driver for the CATF RF digital transceiver was handed to me the first time I asked.  And by "handed to me" I mean that I was pointed to where it was sitting in the source repo.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The business partner / hardware supplier who was supplying the IR glue and drivers just , after giving me a runaround, finally just flat out refused, citing trade secrets, confidentiality, secret sauce, and similar bullshit.&lt;br /&gt;&lt;br /&gt;So, I finally "stole" the source code with a disassembler.  And found the sources of many of my problems.  It was complete shit.  "Unexpected" input from the silicon would cause wild random pointer writes.  And random sunlight on the receiver optics would cause it.  "Expected" input of undefined remote commands wasn't much better, generating and handing back blocks of garbage with incorrect block length headers.&lt;br /&gt;&lt;br /&gt;I ended up writing, nearly from scratch, a replacement IR receiver driver.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The peer device driver code was written by a developer in a different group in my same company.  I finally got the P4 ACLs to read it after loudly escalating, over the objections of it's developer and his group manager.  It was also complete shit.  I cannot even begin to remember everything that was wrong with it, but I not only figured out may of the sources of my own pain, I also found a significant source of crash and lockup bugs that afflicted the main device.&lt;br /&gt;&lt;br /&gt;I was not allowed to rewrite the peer code, as it was not in my remit.  However, I was able to sneak in and check in a large number of asserts, using the excuse that they were "inline documentation".&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;On, and the device driver for the CATF RF digital transceiver?  The source code I got for the asking, without a fight?  When I reviewed it was easy to understand, efficient, elegant, and as far as I could tell, bug free.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In the end, I made my part work.  It just took over two months instead of the original guesstimate of less than two weeks.  This caused a schedule slip in the release of the satellite box.  Which would have been a more serious problem, except…&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Except there was also major schedule slip for the main box.  A significant reason for that slip was because the peer code that I had filled will asserts was now crashing with assertion failures instead of emitting garbage.  I was lucky that I was not more officially "blamed" for that.  The reason why I wasn't, was mainly because the people who understood what I did understood the problem, and the executives who didn't understand what the problem was were also too clueless to blame anyone, let alone me.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;My lesson learned from this experience is: if someone is refusing to show the source to suspect driver code, citing trade secrets, confidentiality, secret sauce, partnership agreements, or similar excuses, it's not because they are protecting their magic.  It's because they have screwed up, and they are trying to hide it.&lt;br /&gt;&lt;br /&gt;A second rule of thumb I have is: source control systems that don't allow any developers to check out and review any arbitrary source code file are expressions of moral failure.  It is unethical for an engineer, designer, or other technologist to ever sign off on a project that has been mutilated by such a broken tool.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=849188" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:848959</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/848959.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=848959"/>
    <title>Seeing myself not letting go</title>
    <published>2012-06-04T19:26:33Z</published>
    <updated>2012-06-04T19:26:33Z</updated>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">It's really annoying to be so aware of a non-rational mental block in my own head, know it's origin, understand what it's trying to protect me from, know how and why it's counter-productive, and have that piece of non-rational pattern of thought also be the very thing that is stopping me from letting go of it.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=848959" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:848789</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/848789.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=848789"/>
    <title>Go get your whopping cough shot</title>
    <published>2012-05-16T23:40:29Z</published>
    <updated>2012-05-16T23:40:29Z</updated>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">&lt;p&gt;I just went on a half-hour binge reading about &lt;a href="http://en.wikipedia.org/wiki/Pertussis"&gt;pertussis&lt;/a&gt;, as a result of reading that WA state has an epidemic outbreak that the public health agencies are struggling to stop.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Reading people's first hand accounts of having it will cross your eyes in empathized pain. One person described that she has given birth, has suffered a compound fracture of a leg, has passed a kidney stone, and has had whopping cough. Only one of them made her wish for death. It's been described as feeling like an asthma attack while someone is punching you in the ribs. Oh, and most all cough medicines do pretty much nothing for it.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;You, reading this. You. Right now, pick up your phone, and call your doctor's clinic. Ask them if you're up to date, and if you're not, go get your freaking &lt;a href="http://en.wikipedia.org/wiki/DPT_vaccine"&gt;DTaP&lt;/a&gt; shot. You can get one at Walgreen's for less than the cost of a high-end Starbucks drink. You owe it to yourself, you owe it to public health, you owe it to your friends and coworkers, and you owe it to every pregnant woman, every newborn, and every immunocompromised person you share this biosphere with.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=848789" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:848424</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/848424.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=848424"/>
    <title>Where you probably want to read instead</title>
    <published>2012-04-16T04:32:59Z</published>
    <updated>2012-04-16T04:35:46Z</updated>
    <dw:music>(Joey Fehrenbach) Beltenebros</dw:music>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">If you found this personal blog from some link about my work on open source and open standards work, my work on &lt;a href="http://openshift.redhat.com/"&gt;OpenShift&lt;/a&gt;, on &lt;a href="http://drizzle.org/"&gt;Drizzle&lt;/a&gt;, or my speaking at and participating at some technology conference, or so forth, you probably want my tech blog over at &lt;a href="http://machinesplusminds.blogspot.com/"&gt;Machines Plus Minds&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;This personal blog is entirely for stuff about my personal life, and if you don't know me personally, you will probably find it utterly uninteresting.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=848424" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:848130</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/848130.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=848130"/>
    <title>Love Stinks, Three Years Later</title>
    <published>2012-03-27T04:07:35Z</published>
    <updated>2012-03-27T04:08:52Z</updated>
    <category term="love"/>
    <dw:mood>thoughtful</dw:mood>
    <dw:security>public</dw:security>
    <dw:reply-count>1</dw:reply-count>
    <content type="html">The daffodils are blooming again.&lt;br /&gt;&lt;br /&gt;It's now been three years since I wrote &lt;a href="http://fallenpegasus.dreamwidth.org/705820.html"&gt;Love Stinks&lt;/a&gt;, and a year since I wrote &lt;a href="http://fallenpegasus.dreamwidth.org/843968.html"&gt; Love Stinks, Two Years Later&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I read them, feel the scars again, and muse.  Any fundamental change?  Not really.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I do not retract a word of it. But my outlook has become more nuanced.&lt;br /&gt;&lt;br /&gt;Some of that nuance is even more bitter, some of it more gentle.&lt;br /&gt;&lt;br /&gt;I understand more.  Understanding does bring peace. Or, at least, it moderates ineffective action.&lt;br /&gt;&lt;br /&gt;Things that use to hurt all the time, now only have the occational pang.&lt;br /&gt;&lt;br /&gt;I've gotten better at keeping my teeth together, and my tongue still.&lt;br /&gt;&lt;br /&gt;I have gotten better at knowing how and how much to trust people.&lt;br /&gt;&lt;br /&gt;Some people are selected out from my life.&lt;br /&gt;Some people have drifted into my sphere.&lt;br /&gt;Some people have drifted out.&lt;br /&gt;&lt;br /&gt;With some, there has been rapprochement, and a friendship again.&lt;br /&gt;&lt;br /&gt;Some old acquaintances, have become new friends.&lt;br /&gt;Some old friends, have become new friends.&lt;br /&gt;&lt;br /&gt;And there have been some pleasant surprises, and some new adventures.&lt;br /&gt;&lt;br /&gt;I still don't trust "love", but friendship and affection are nice, and I try to enjoy what of it I have, from where and when it is offered.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=848130" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:848038</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/848038.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=848038"/>
    <title>The crowd at DIA</title>
    <published>2012-02-14T22:37:27Z</published>
    <updated>2012-02-14T22:54:31Z</updated>
    <category term="people watching"/>
    <category term="place"/>
    <category term="airport"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Comparing the crowd at Denver International Airport with my recent post about the crowd on the Metro bus in Seattle.&lt;br /&gt;&lt;br /&gt;The racial mix is significantly more white.  The people are generally taller and more stocky. There are a lot of people with tanned skin.  Many of those tans are leathery.  Faces, hands, arms, and necks, everywhere I look I see signs of significant long-term sun damage and other weathering, almost as bad as what I saw in Los Angeles.    Their clothes are just as layered as in Seattle, but significantly more warm, and in darker colors.  Lots of heavy wool full jackets, and lots of heavy weather coats.  A lot of blue denim jeans. Lots of waterproof shoes and boots with high-traction soles, and showing a lot of water, salt, and snow damage.  What "flair" there is, if any, is of a southwest and/or cowboy theme.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=848038" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:847866</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/847866.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=847866"/>
    <title>On the #10 bus last night, riding from the Capitol Hill neighborhood to Downtown.</title>
    <published>2012-02-07T17:03:44Z</published>
    <updated>2012-02-07T17:05:07Z</updated>
    <category term="seattle"/>
    <dw:music>(JES) Like A Waterfall (Flipside Ambient Remix)</dw:music>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">My fellow passengers:&lt;br /&gt;&lt;br /&gt;A large black woman, her hair short dreads.  Wearing black t-shirt layered with green vest with jenin jacket.  Brown socks with sandals.  She's reading a technical manual.&lt;br /&gt;&lt;br /&gt;An elderly woman with pixie haircut, sky blue northface coat, open, with two layers of thin sweaters, over a bloase.  And a hand knit scarf.  Yoga pants.  Brightly colored knit socks with sandels.  Her eyes look at nothing.&lt;br /&gt;&lt;br /&gt;A muscular white man in his late 20s, tightly stretched blue t-shirt with ironic text, blue jeans with rolled and ironed cuffs, scuffed leather ankle boots.&lt;br /&gt;&lt;br /&gt;And so on.  About 2 dozen people, a mix of white, hispanic, asian, native, and black.  &lt;br /&gt;&lt;br /&gt;All wearing relaxed layers, mostly in subdoed earth tones, water resistant sport wear, comfortable shoes.  Lots of dyed hair in subdued colors, crazy tights, nose rings on office workers, and hoodies. There is not a bit sunlight tanned skin in sight.&lt;br /&gt;&lt;br /&gt;If I didn't already know I was in Seattle, inside the city proper, one look at this crowd would tell me where I was.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=847866" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:847449</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/847449.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=847449"/>
    <title>Call for addresses, offer of holiday cards</title>
    <published>2011-11-10T23:26:56Z</published>
    <updated>2011-11-10T23:26:56Z</updated>
    <dw:security>public</dw:security>
    <dw:reply-count>1</dw:reply-count>
    <content type="html">It's getting to be that time of the year again, and I like sending cards for the holidays.  So here is the deal: tell me your postal address, and you will probably get a card around the end of the year.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=847449" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:847356</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/847356.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=847356"/>
    <title>Two stories, while waiting in line at BECU</title>
    <published>2011-11-01T03:21:08Z</published>
    <updated>2011-11-01T03:21:08Z</updated>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Today, while waiting in line for an ATM at my credit union, I got to witness two interesting customer service interactions.  &lt;br /&gt;&lt;br /&gt;The first customer was dealing with the aftermath of an all-to-common PayPal issue. Her account had been emptied via PayPal charges and/or chargebacks.  The BECU agent said they see that sort of thing all the time.  He had the information on hand to report a fraud to PayPal if her account had been compromised, or how to start fighting with PayPal to get her money back if PP themselves were grabbing her money.  He also had a process in place to set up a "valve" account keep PayPal at arms length from one's money.&lt;br /&gt;&lt;br /&gt;After she left, the next customer sat down.  He was a trim white-haired guy, a prototypical small businessman.  He was holding a big stack of envelopes branded with the blue Chase logo.  The BECU agent asked him what he needed, his response was a blunt "I'm tired of these fuckers, what can you do for me?"&lt;br /&gt;&lt;br /&gt;And then it came to be my turn at the ATM.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=847356" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:847100</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/847100.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=847100"/>
    <title>Some good advice, for young programming students</title>
    <published>2011-10-27T17:03:33Z</published>
    <updated>2011-10-27T17:09:38Z</updated>
    <category term="advice"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">A few days ago I was interviewed by a Georgia Tech student about my job and career, and what advice I may have for students of computer science and programming.&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Take on as little student loan debt as possible. And if someone will not pay you to get a post-grad degree, don't waste the debt and the time. Keep out of debt.  You never want to feel stuck somewhere so to make rent and pay bills.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Learn to write.  You learn to write by writing. Take writing classes, read about good writing, and practice writing.  It doesn't matter what kind of job you get or life path you take, you need to know how to write.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Get involved in some open source projects, and make real contributions to them.  The Google Summer of Code is a good thing to get involved in. A portfolio of demonstrated contributions to open source projects is more impressive than a GPA on a new resume.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Get involved.  Find your local makerspaces, hackerspaces, and barcamps.  Volunteer and participate.  Go to Ignite. Speak at Ignite.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Always be fluent in at least two programming languages, and practice learning new ones.  Languages and frameworks come and go, learning new ones is forever.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;When getting a job, beware of the non-compete and copyright assignment clauses in the employment contract.  Push back on them.  If they are non-negotiable, too onerous, are enforceable, beware and be careful of taking that job.  Keep your list of "personal and outside projects" ready to attach as an appendix.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=847100" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:846786</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/846786.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=846786"/>
    <title>Wanted: A Netflix for Physical Books</title>
    <published>2011-09-12T18:15:23Z</published>
    <updated>2011-09-12T18:15:23Z</updated>
    <dw:security>public</dw:security>
    <dw:reply-count>1</dw:reply-count>
    <content type="html">The tech rumor mill has been churning for a few days about "Amazon launching a Netflix for books".  While a neat concept, I'm a bit disappointed that it is for ebooks.  This plays to Amazon's strengths, but is not what I have been wanting for years.&lt;br /&gt;&lt;br /&gt;For years I have been wishing for a "Netflix for Books", for physical books.&lt;br /&gt;&lt;br /&gt;Here is how I envision it working:&lt;br /&gt;&lt;br /&gt;A large municipal library, or a consortium of them working together, set up a site and paid service very similar to Netflix, only for books.&lt;br /&gt;&lt;br /&gt;I, as a user, select how many books at a time I want to rent.  There would be different monthly payment levels, just like Netflix.&lt;br /&gt;&lt;br /&gt;Books in my queue get checked out from the library or via inter library loan.  They get mailed to me, along with a return mailer.  Postage would be book rate, of course.  Unless I am willing to pay extra for Priority or Express mail.&lt;br /&gt;&lt;br /&gt;I read the book, keep it for as long as I want (maybe with a one year maximum), and then either return it with the return mailer or by dropping it off at the library like a regular book.&lt;br /&gt;&lt;br /&gt;I could keep using my muni library "for free", or use this service for the convenience factor.  It could even be a source of much needed funding for the amazing public library system that we all too often take for granted, and do not use enough.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=846786" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:846495</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/846495.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=846495"/>
    <title>My address at Burning Man. Send a postcard!</title>
    <published>2011-08-24T16:05:08Z</published>
    <updated>2011-08-24T16:05:08Z</updated>
    <category term="burning man"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">FallenPegasus&lt;br /&gt;Big Fine Arrow Camp&lt;br /&gt;7:15 &amp; Coming Out, Mountain&lt;br /&gt;c/o BRCPO&lt;br /&gt;Burning Man&lt;br /&gt;Gerlach NV 89412&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=846495" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:846126</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/846126.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=846126"/>
    <title>Google Plus, minus minus</title>
    <published>2011-08-12T04:53:15Z</published>
    <updated>2011-08-12T04:53:15Z</updated>
    <dw:security>public</dw:security>
    <dw:reply-count>1</dw:reply-count>
    <content type="html">I've started telling friends and family who have been asking me about Google Plus to not bother, until G fixes their broken "real name" policy. Plus is turning into a place where it's mostly white techy males talking about white techy male topics. And speaking as a white techy male, that's pretty boring.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=846126" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:846029</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/846029.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=846029"/>
    <title>Textual configuration has comments, GUIs dont</title>
    <published>2011-06-28T02:27:42Z</published>
    <updated>2011-06-28T02:27:42Z</updated>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">I have been running the test and merge process for &lt;a href="http://drizzle.org/"&gt;DrizzleDB&lt;/a&gt; using &lt;a href="http://jenkins.drizzle.org/"&gt;Jenkins&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Jenkins is a pretty standard Java-based web app. The configuration settings are stored in XML files, and that configuration is manipulated using "easy to use" Web GUI.&lt;br /&gt;&lt;br /&gt;The "old skool" UNIX-like way to keep configuration settings is in a text file, which is edited with an ordinary text editor, and is read by the program daemon on start or SIGHUP.  This is considered "scary", "hard to learn" and "hard to use" by novices.&lt;br /&gt;&lt;br /&gt;There is a big problem with GUI-only managed configuration, text file configuration has a major advantage.&lt;br /&gt;&lt;br /&gt;I did not set up the Jenkins server or nodes.  I am not the only person with admin access to it.  Several other people have set it up, set up various projects in it, and added new nodes and new types of nodes.&lt;br /&gt;&lt;br /&gt;As I work on it, and look at the existing configuration, I often find things that are "surprising", things that make me say "Is that right?  That can't be right?  Can it?".  And then I have to spend time digging into it.  Something it IS right, for reasons I didn't know at that moment.  Sometimes it used to be right, but isn't necessary any more.  And sometimes, it just wasn't right.&lt;br /&gt;&lt;br /&gt;In a textual configuration file, you can put comments.  The purpose of a comment is to communicate into the future, to tell those who came after you (including your future self) what you were intending to do, and why you selected some "surprising" option or way of doing things.&lt;br /&gt;&lt;br /&gt;There is no good way to put comments into GUI or WebGUI configuration, even if it has a freeform field labelled "comments".&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=846029" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:845814</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/845814.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=845814"/>
    <title>"everyone had something valuable to contribute"</title>
    <published>2011-06-14T16:23:55Z</published>
    <updated>2011-06-14T16:23:55Z</updated>
    <category term="open source"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">I'm reading the July 2011 issue of "Linux Journal", and in "Upfront, diff -u" there is some text that is worth noting and repeating:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;This is actually one of the first and greatest innovations Linus Torvalds achieved with Linux.  While the GNU folks developed the idea of free software, they limited themselves by sticking with a just a tight group of core developers, who largely would ignore suggestions and patches from outside.   It was Linus' belief that everyone had something valuable to contribute that led the style of open-source development that now dominates the world.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;It is maybe an excess of hope to say it "dominates the world".&lt;br /&gt;&lt;br /&gt;There is still entirely too much "fauxpen source" software, where corporate dev teams or small mentally incestuous groups emit "releases", while sitting behind legal and social barriers to outside contribution and feedback.  The tightly coupled development process results in tightly coupled and poorly documented software, which is hard for "outsiders" to contribute to, and the resulting feedback loop spins around until the software is so knotted up that useful development basically stops.  (Of course, closed source software has the same problem, only worse.)&lt;br /&gt;&lt;br /&gt;The open development open community model does avoid this problem, and so it's use is spreading.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=845814" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:845327</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/845327.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=845327"/>
    <title>"piles of flaming bones"</title>
    <published>2011-06-14T15:54:35Z</published>
    <updated>2011-06-14T15:54:35Z</updated>
    <category term="comic book"/>
    <dw:music>blissful quiet</dw:music>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Do you know what never gets old?  Flipping open a copy the Wildstorm/DC crossover graphic novel, "Captain Atom: Armageddon", flipping to the last chapters, and watching Nathaniel hand Apollo &amp; Midnighter their own asses, and then when they later try a rematch, reduce them to piles of flaming bones.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=845327" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:845204</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/845204.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=845204"/>
    <title>"We communitize engagement"</title>
    <published>2011-06-14T00:06:15Z</published>
    <updated>2011-06-14T00:06:15Z</updated>
    <dw:music>Hey Jude by The Beatles</dw:music>
    <dw:security>public</dw:security>
    <dw:reply-count>2</dw:reply-count>
    <content type="html">I am right now processing a pile of paperwork, receipts, expenses, and other such pieces of paper.&lt;br /&gt;&lt;br /&gt;Mixed in with the mass is the occational business card.  For some of the cards, I can remember the person who gave me their card and the context of the meeting.  Such cards are much more likely to go into my contacts database.&lt;br /&gt;&lt;br /&gt;And a number of the cards are from "social media experts" and look a lot like the "I hate your email signature" part of &lt;a href="http://theoatmeal.com/comics/email"&gt;The Oatmeal: If you do this in an email&lt;/a&gt;.  And I have zero mental impression of whoever gave them to me.  Which is odd, since I am pretty sure that I was there when they were given to me.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=845204" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:844939</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/844939.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=844939"/>
    <title>Android vs iOS, regarding Twitter</title>
    <published>2011-06-08T23:38:28Z</published>
    <updated>2011-06-08T23:38:28Z</updated>
    <category term="android"/>
    <category term="geek"/>
    <dw:music>SomaFM Groove Salad</dw:music>
    <dw:security>public</dw:security>
    <dw:reply-count>2</dw:reply-count>
    <content type="html">One new "feature" of the next release of Apple iOS is the integration with Twitter. To get these features, Apple Inc and Twitter Inc had to "partner".&lt;br /&gt;&lt;br /&gt;Twitter has been just as "integrated" with Android for quite some time. And all Twitter Inc had to do was write an app, that used the standard Android API hooks.&lt;br /&gt;&lt;br /&gt;In fact, my own Android phone doesn't even use the "official" Twitter app (which I find to be slow, heavy, and poorly done), it uses an even better and more advanced one called &lt;a href="https://market.android.com/details?id=jp.r246.twicca"&gt;twicca&lt;/a&gt;. And the author of Twicca didn't need to "partner" with either Twitter Inc or Google Inc. He just wrote a better app, that again just used the public APIs.&lt;br /&gt;&lt;br /&gt;It doesn't take a high-level corporate partnership, a 12 month product roadmap, and a heavyweight development cycle by employees of a set of large companies to add a deep and useful integrated feature to Android. It takes a single developer working in a cafe.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=844939" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:844782</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/844782.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=844782"/>
    <title>fallenpegasus @ 2011-05-24T23:17:00</title>
    <published>2011-05-25T06:18:49Z</published>
    <updated>2011-05-25T06:18:49Z</updated>
    <category term="quote"/>
    <dw:security>public</dw:security>
    <dw:reply-count>2</dw:reply-count>
    <content type="html">In the matter of reforming things, as distinct from deforming them, there is one plain and simple principle; a principle which will probably be called a paradox. There exists in such a case a certain institution or law; let us say, for the sake of simplicity, a fence or gate erected across a road. The more modern type of reformer goes gaily up to it and says, "I don't see the use of this; let us clear it away." To which the more intelligent type of reformer will do well to answer: "If you don't see the use of it, I certainly won't let you clear it away. Go away and think. Then, when you can come back and tell me that you do see the use of it, I may allow you to destroy it."&lt;br /&gt;&lt;br /&gt;This paradox rests on the most elementary common sense. The gate or fence did not grow there. It was not set up by somnambulists who built it in their sleep. It is highly improbable that it was put there by escaped lunatics who were for some reason loose in the street. Some person had some reason for thinking it would be a good thing for somebody. And until we know what the reason was, we really cannot judge whether the reason was reasonable. It is extremely probable that we have overlooked some whole aspect of the question, if something set up by human beings like ourselves seems to be entirely meaningless and mysterious. There are reformers who get over this difficulty by assuming that all their fathers were fools; but if that be so, we can only say that folly appears to be a hereditary disease. But the truth is that nobody has any business to destroy a social institution until he has really seen it as an historical institution. If he knows how it arose, and what purposes it was supposed to serve, he may really be able to say that they were bad purposes, that they have since become bad purposes, or that they are purposes which are no longer served. But if he simply stares at the thing as a senseless monstrosity that has somehow sprung up in his path, it is he and not the traditionalist who is suffering from an illusion.&lt;br /&gt;&lt;br /&gt;-- G. K. Chesterton&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=844782" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:844355</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/844355.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=844355"/>
    <title>Android Honeycomb on Motorola Xoom, first day impressions</title>
    <published>2011-04-05T01:54:58Z</published>
    <updated>2011-04-10T21:22:03Z</updated>
    <dw:security>public</dw:security>
    <dw:reply-count>4</dw:reply-count>
    <content type="html">I've been an Android smartphone user ever since the the HTC Dream came out.  And I've wanted an Android tablet ever since the world went nuts over the iPad.  I've held off on buying the really early pad-like devices that have come out of China and India, because while they looked like the start of a promise, they have been plagued with poor build quality, hacked up software laods, and not-quite-there-yet.  I want something I can use, not just futz with.&lt;br /&gt;&lt;br /&gt;Now that the Motorola Xoom is out, and after playing with the first cut of the Android 3.0 Honeycomb running on it, I knew that it was time.  And since I didn't enroll for Google I/O before it sold out, I was probably going to have to buy it.&lt;br /&gt;&lt;br /&gt;So I did.  I ordered it from Amazon, requested free 3day Prime shipping, and was expecting it on Wednesday.  It arrived today.&lt;br /&gt;&lt;br /&gt;The unboxing went pretty quickly.   There is the unit, a USB cable, and a power cable.  And a few dozen sheets of regulatory instructions.  No "user manual".  Fortunately, while the Honeycomb UI is different from the past Android UIs (stock, GoogleTV, Sense, Touch), it's not too much different, and I was driving it after only a few minutes, and after all my apps synced up, I was using the calendar, gmail, chat, and Kindle, and such.&lt;br /&gt;&lt;br /&gt;I think this is going to be my default Kindle device, and I am going to be doing a majority of my email reading and much casual web browsing with it.&lt;br /&gt;&lt;br /&gt;I have only two complaints so far:&lt;br /&gt;&lt;br /&gt;One is the standard annoyance of having to connect all the apps that depend on back-end services back up to their accounts  (Kindle &amp; Amazon MP3 to Amazon, Facebook, Foursquare, Twitter, etc).  Android really needs to have a standard keychain service, and then sync it back to the G mothership like it does everything else.&lt;br /&gt;&lt;br /&gt;The other, continuing annoyance, is the power/charging cable uses a proprietary connector.  Now that the world is quickly converging on micro-USB for charging phones, after 20 years of power adapter hell, it's looking like the hardware manufacturers are doing the same stupid thing again with tablets.  This is going to be Yet Another power connector I will have to pack into my gear.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=844355" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:843968</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/843968.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=843968"/>
    <title>"Love Stinks", two years later.</title>
    <published>2011-03-24T01:38:20Z</published>
    <updated>2011-03-24T01:38:20Z</updated>
    <dw:music>Pants, by Blue Orbital, on Blue Album</dw:music>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">The daffodils are blooming again.&lt;br /&gt;&lt;br /&gt;It's now been two years since I wrote &lt;a href="http://fallenpegasus.dreamwidth.org/705820.html"&gt;Love Stinks&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I do not retract a word of it. But my outlook has become more nuanced.&lt;br /&gt;&lt;br /&gt;Some of that nuance is even more bitter, some of it more gentle.&lt;br /&gt;&lt;br /&gt;I understand more.  Understanding does bring peace. Or, at least, it moderates ineffective action.&lt;br /&gt;&lt;br /&gt;Things that use to hurt all the time, now only have the occational pang.&lt;br /&gt;&lt;br /&gt;I've gotten better at keeping my teeth together, and my tongue still.&lt;br /&gt;&lt;br /&gt;I have gotten better at knowing how and how much to trust people.&lt;br /&gt;&lt;br /&gt;Some people are selected out from my life.&lt;br /&gt;Some people have drifted into my sphere.&lt;br /&gt;Some people have drifted out.&lt;br /&gt;&lt;br /&gt;With some, there has been rapprochement, and a friendship again.&lt;br /&gt;&lt;br /&gt;Some old acquaintances, have become new friends.&lt;br /&gt;Some old friends, have become new friends.&lt;br /&gt;&lt;br /&gt;And there have been some pleasant surprises, and some new adventures.&lt;br /&gt;&lt;br /&gt;I still don't trust "love", but friendship and affection are nice, and I try to enjoy what of it I have, from where and when it is offered.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=843968" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:843650</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/843650.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=843650"/>
    <title>Signalling, Corporate Branding, and Dress</title>
    <published>2011-03-21T23:26:32Z</published>
    <updated>2011-03-21T23:26:32Z</updated>
    <category term="burning man"/>
    <category term="thoughts"/>
    <dw:music>Summer Overture by Kronos Quartet</dw:music>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Because of my participation in an art project at Burning Man last year, I own a tiny piece of art.  Everyone who was part of a transit related art project received one.  Many people who have one, including myself, wear it as a necklace medallion.&lt;br /&gt;&lt;br /&gt;It looks like this:&lt;br /&gt;&lt;a href="http://www.flickr.com/photos/fallenpegasus/5547806745/" title="Black Rock City Transit Authority token by FallenPegasus, on Flickr"&gt;&lt;img src="http://farm6.static.flickr.com/5131/5547806745_f517727dc0_t.jpg" width="100" height="75" alt="Black Rock City Transit Authority token" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Today, while I was ordering my tea, the barista noticed it, asked if it was about Burning Man. We immediately started talking about the the playa, the experience, who do we camp with, and so forth.  She hadn't known there were so many Seattle local weekly and monthly Burner events.  Now she does, and knows which mailing lists to sign up on.&lt;br /&gt;&lt;br /&gt;One of the most important purposes of clothes and adornment is to identify ourselves to the people who know how to read the signals.  One of the problems with corporate brands parasitizing that communication channel is that it tends to choke out other, more useful and interesting, signal.  IMO, that's the main problem with corporate consumerism branding in general&lt;br /&gt;&lt;br /&gt;One of the great things about Burner culture is it's rejection and avoidance of corporate brands.  The Burner cultural "brands" are also powerful, but they are actually directly for signaling interest and identity, instead of trying to sell something.&lt;br /&gt;&lt;br /&gt;I don't have a point here, other than musing about this.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=843650" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:843403</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/843403.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=843403"/>
    <title>book review "Dare... to Try Bisexuality"</title>
    <published>2011-03-05T20:16:13Z</published>
    <updated>2011-03-05T20:16:13Z</updated>
    <category term="bi"/>
    <category term="sex"/>
    <category term="book"/>
    <dw:music>Holographic Moon Owls by Secret Frequency Crew</dw:music>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">A few weeks ago I received, via the LibraryThing Early Review program, a review copy of the English translation of the book &lt;a href="https://www.librarything.com/work/book/70512298"&gt;Dare... to Try Bisexuality&lt;/a&gt;.   Here is my review:&lt;br /&gt;&lt;br /&gt;I was hoping for better and more. This book is, at best, a silly piece of popcorn. At worst, it tries to glamorize the worst stereotypes of bisexual people and the practice of bisexuality: that it is all about having multiway causal swinger orgies, that bisexuals will hit on anyone (even you!) they find attractive, and the only reason why someone isn't having bisexual sex is because they just haven't tried it yet.&lt;br /&gt;&lt;br /&gt;For people who already understand their own bisexuality, or the bisexuality of someone close to them, this book is at best eye rollingly silly. For people who are curious, want to learn, or are struggling to understand their own bisexuality or the bisexuality of someone close to them, this book is dangerously wrong and misleading.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=843403" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-01:169513:843262</id>
    <link rel="alternate" type="text/html" href="http://fallenpegasus.dreamwidth.org/843262.html"/>
    <link rel="self" type="text/xml" href="http://fallenpegasus.dreamwidth.org/data/atom/?itemid=843262"/>
    <title>Unwanted touching by a stranger</title>
    <published>2010-11-29T22:13:29Z</published>
    <updated>2010-11-29T22:19:11Z</updated>
    <dw:security>public</dw:security>
    <dw:reply-count>1</dw:reply-count>
    <content type="html">This past weekend, I went to a live showing of "The Clumsy Lovers" at a local venue, the Tractor.&lt;br /&gt;&lt;br /&gt;As the show was going, one particular woman kept crossing back and forth the audience area, and every time she passed behind me, she would put her hand on my elbow or on the small of my back.&lt;br /&gt;&lt;br /&gt;At first I thought she was just working her way through the crowd, but after the 3rd or so time it happened, I looked back quickly enough, and noticed that there was no "crowd", she was just specifically touching me as she passed.&lt;br /&gt;&lt;br /&gt;She did it a couple more times, even as I tried to avoid it, until I finally ended up standing or sitting with my back to walls and pillars, so that nobody could come up behind me.&lt;br /&gt;&lt;br /&gt;When I mentioned it to a friend who also was there, he asked "she cute?".  No, she wasn't, and that should be beside the point anyway.&lt;br /&gt;&lt;br /&gt;If we gender-flip the situation, if I as a man kept touching and following one particular uninterested woman there, she would have rightly made a fuss, and the bouncer would have ejected me.  But as things were and are, there was nothing at all to be gained by me doing anything other than keeping my back to the wall, and being glad that my long heavy oilskin trenchcoat was keeping my skin covered and protected.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.dreamwidth.org/tools/commentcount?user=fallenpegasus&amp;ditemid=843262" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
</feed>
