<?xml version="1.0" encoding="utf-8"?>
<feed version="0.3"
    xmlns="http://purl.org/atom/ns#"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xml:lang="en">

    <title>The Collective We . . .</title>
    <link rel="alternate" type="text/html" href="http://www.collectivewe.com" />
    <tagline>The Collective We . . .</tagline>
    <modified>2010-02-14T11:28:44+00:00</modified>
    <generator url="http://www.pmachine.com/" version="1.6.8">ExpressionEngine</generator>
    <copyright>Copyright (c) 2010, Collective We</copyright>


    <entry>
      <title>Boxee and Apple TV</title>
      <link rel="alternate" type="text/html" href="http://www.collectivewe.com/index.php/weblog/boxee_and_apple_tv/" /> 
      <id>tag:collectivewe.com,2010:www.collectivewe.com/3.373</id>
      <issued>2010-02-14T11:25:43+00:00</issued>
      <modified>2010-02-14T11:28:44+00:00</modified>
      <summary></summary>
      <created>2010-02-14T11:25:43+00:00</created>
		<author>
		  <name>Collective We</name>
		  <email>bill@wellingtonnet.net</email>
		  		</author>
      <dc:subject></dc:subject>
      <content type="text/html" mode="escaped" xml:lang="en-US"><![CDATA[<p>I have been running Boxee beta on my AppleTV v3.0.1 for a few weeks now.&nbsp; It has been great&#8230; until this morning, while up soothing a screaming child and watching The Guild.&nbsp; The AppleTV reset itsef and came back up running AppleTV v. 3.0.2 with no more Boxee.&nbsp; Sad day.
</p>]]></content>
    </entry>

    <entry>
      <title>Using Directory Services information to generate a Telephone List</title>
      <link rel="alternate" type="text/html" href="http://www.collectivewe.com/index.php/weblog/using_directory_services_information_to_generate_a_telephone_list/" /> 
      <id>tag:collectivewe.com,2010:www.collectivewe.com/3.372</id>
      <issued>2010-01-04T04:25:27+00:00</issued>
      <modified>2010-01-04T04:41:29+00:00</modified>
      <summary></summary>
      <created>2010-01-04T04:25:27+00:00</created>
		<author>
		  <name>Collective We</name>
		  <email>bill@wellingtonnet.net</email>
		  		</author>
      <dc:subject>AWS, Network Administration, Phones, Technology, Apple Computer, Macintosh, OS X, Open Directory, Microsoft, Windows, Server 2003, Active Directory</dc:subject>
      <content type="text/html" mode="escaped" xml:lang="en-US"><![CDATA[Using Directory Services information to generate a Telephone List<br />
<br />
My organization creates a list of four digit extension numbers of all the employees in the organization, every year or so.  The purpose of course is to provide a quick reference list, next to every telephone in the building.  Until recently, the list has been maintained manually, and over time it has become an unruly mess of fonts, tabs and various styles.  I have found it to be quite useless for some time.<br />
<br />
Last year I decided to tackle this issue, and automate the list generation.  My first attempt, was significantly better than the original manually generated list, but was less than ideal.  It boiled down to running csvde with a long list of arguments on one of my domain controllers in order to generate a .csv file that contained more information than I needed.  Then I moved that file to my mac, and through the use of some shell scripting I was able to trim the un-needed information out of the file and create a new, filtered, .csv file  Following that, I was able to take the filtered .csv and run it through a mail merge document that I created in Word.<br />
<br />
It worked, it generated the document exactly the way I wanted it.  However, there were a few things I didn't like.  My biggest gripe was that I had to use both the Win 2K3 Domain Controller (to generate the first file) and then had to use my Mac to process that file and ultimately generate the word document.<br />
<br />
Over Christmas break this year, I set out to resolve that issue, and do some learning on a couple of topics that have interested me for a while now.<br />
<br />
Apple has provided a command line utility called dscl (Directory Services Command Line) for at least the last two major releases of OS X.  I have only just learned what it can do for me.  I found it to be quite useful in pairing down the number of steps required to generate the telephone list.<br />
<br />
Here is a copy of the script, fairly well commented, for ease of understanding.<br />
<kbd><br />
 #!/bin/bash<br />
<br />
# Phone List Generator v. 2 by bill_wellington at aw.org<br />
# This script will pull live data from Active Directory and output a .csv<br />
# file (named as an argument) including first name, last name, department,<br />
# phone ext. and mobile phone ext.  It goes through a strips out all<br />
# constituents who are students, members of the "Class of...", or who do<br />
# not have a 4 digit extension listed in either their phone number or<br />
# their mobile number.  The list can then be used to generate a phone list<br />
# using MS Word's mail merge functions.<br />
<br />
# create file<br />
touch /tmp/$1.csv<br />
echo &gt; /tmp/$1.csv<br />
<br />
# pull a plist for every user in AD<br />
for i in `dscl /Active\ Directory/All\ Domains/ -list /Users` ; do<br />
		dscl -plist /Active\ Directory/All\ Domains/ -read /Users/${i} FirstName LastName Department PhoneNumber MobileNumber | \<br />
		<br />
	# remove lines matching following regex - these extra xml delimiters that we will not use<br />
	grep -v '^&lt;?xml.*$' | \<br />
	grep -v '^&lt;!DOC.*$' | \<br />
	grep -v '^&lt;plist.*$' | \<br />
	grep -v '^&lt;/plist&gt;' | \<br />
	grep -v '&lt;key&gt;.*$' | \<br />
	<br />
	# remove xml tags around the data we want to keep, insert commas between fields<br />
	sed -e '/&lt;dict&gt;/d' -e 's@&lt;/dict&gt;@@' \<br />
		-e '/&lt;array&gt;/d' -e 's@&lt;/array&gt;@@' \<br />
		-e 's/&lt;string&gt;//' -e 's@&lt;/string&gt;@,@' | \<br />
		<br />
	# remove tab characters (0x09) from original xml output<br />
	sed -e 's/	//g' | \<br />
<br />
	# clean up ampersands<br />
	 sed -e 's/&amp;/\&/g' | \<br />
<br />
	# remove line breaks<br />
	sed -n -e ":a" -e "$ s/\n//gp;N;b a" | \<br />
	<br />
	# remove students and all other without 4 digit extension<br />
	grep -v "Student" | \<br />
	grep -v "Class of " | \<br />
	grep '^.*[0-9][0-9][0-9][0-9].*$' | \<br />
<br />
<br />
	# ok, now we have the data we want, let's put the fields in the right order<br />
	sed -e 's/\([0-9][0-9][0-9][0-9],\)\([0-9][0-9][0-9][0-9],\)/\2\1/' | \<br />
	sed -e "s|\([a-zA-Z \&'/-]*,\)\([a-zA-Z ]*,\)\([a-zA-Z '-]*,\)\(.*\)|\3\2\1\4|" | \<br />
	<br />
	# remove trailing commas from lines with a cell number<br />
	sed -e  's|\(.*,.*,.*,.*,.*\),|\1|' &gt;&gt; /tmp/$1.csv<br />
	<br />
done<br />
<br />
# prepare final .csv<br />
echo "Last Name, First Name, Department, Ext., Cell" &gt; $1.csv<br />
<br />
sort -f /tmp/$1.csv | \<br />
<br />
<br />
#remove blank lines<br />
sed -e '/^$/d' &gt;&gt; $1.csv<br />
<br />
	# add in static numbers<br />
	echo "Activity Bus 1,,,,5448" &gt;&gt; $1.csv<br />
	echo "Activity Bus 2,,,,5449" &gt;&gt; $1.csv<br />
	echo "Auction Office,,,5454," &gt;&gt; $1.csv<br />
	echo "AWSPA Office,,,5454," &gt;&gt; $1.csv<br />
	echo "Bishop's Suite,,,5409," &gt;&gt; $1.csv<br />
	echo "College Counseling,,,4339," &gt;&gt; $1.csv<br />
	echo "Courtesy Phone,,,8604," &gt;&gt; $1.csv<br />
	echo "Dorm Parent Office,,,5423," &gt;&gt; $1.csv<br />
	echo "Dorm Parent Cell 1,,,,5446" &gt;&gt; $1.csv<br />
	echo "Dorm Parent Cell 2,,,,5447" &gt;&gt; $1.csv<br />
	echo "Extended Day,,,8627,5445" &gt;&gt; $1.csv<br />
	echo "Front Office,,,8642," &gt;&gt; $1.csv<br />
	echo "HelpDesk - Tech,,,8999," &gt;&gt; $1.csv<br />
	echo "Housekeeping (Daytime),,,,5438" &gt;&gt; $1.csv<br />
	echo "Kitchen,,,4153," &gt;&gt; $1.csv<br />
	echo "Meeting Rooms,,,," &gt;&gt; $1.csv<br />
	echo "Conference Room,,,8893," &gt;&gt; $1.csv<br />
	echo "Cottage 1st Floor,,,8894," &gt;&gt; $1.csv<br />
	echo "Cottage 2nd Floor,,,8895," &gt;&gt; $1.csv<br />
	echo "Huston Room,,,8891," &gt;&gt; $1.csv<br />
	echo "Sutton Room,,,8892," &gt;&gt; $1.csv<br />
	echo "Security,,,5426,5444" &gt;&gt; $1.csv<br />
<br />
<br />
<br />
# Future Plans This scrpt perhaps through some fancy "osascript" commands<br />
# should be able to launch MS Word, and perform the mail merge.  I need to<br />
# check and see if Word's Mail Merge functions are scriptable using<br />
# AppleScript. <br />
</kbd>]]></content>
    </entry>

    <entry>
      <title>&#8220;Good Fences Make Good Neighbors&#8221;</title>
      <link rel="alternate" type="text/html" href="http://www.collectivewe.com/index.php/weblog/good_fences_make_good_neighbors/" /> 
      <id>tag:collectivewe.com,2009:www.collectivewe.com/3.371</id>
      <issued>2009-11-06T15:18:39+00:00</issued>
      <modified>2009-11-06T15:25:40+00:00</modified>
      <summary></summary>
      <created>2009-11-06T15:18:39+00:00</created>
		<author>
		  <name>Collective We</name>
		  <email>bill@wellingtonnet.net</email>
		  		</author>
      <dc:subject>Personal, Politics</dc:subject>
      <content type="text/html" mode="escaped" xml:lang="en-US"><![CDATA[<p>With the fall of the Berlin Wall in 1989, it is amazing to me that all around the world we are still living with wall that are built to keep people separated.&nbsp; In some cases we are building new walls, in many cases we are still living with the old walls.</p>

<p><a href="http://news.bbc.co.uk/2/hi/in_depth/world/2009/walls_around_the_world/default.stm" title="BBC Special Report" target="_blank">BBC Special Report</a>
</p>]]></content>
    </entry>

    <entry>
      <title>3Com can&#8217;t document their ass from their elbow.</title>
      <link rel="alternate" type="text/html" href="http://www.collectivewe.com/index.php/weblog/3com_cant_document_their_ass_from_their_elbow/" /> 
      <id>tag:collectivewe.com,2009:www.collectivewe.com/3.370</id>
      <issued>2009-09-08T01:06:36+00:00</issued>
      <modified>2009-09-08T01:34:37+00:00</modified>
      <summary></summary>
      <created>2009-09-08T01:06:36+00:00</created>
		<author>
		  <name>Collective We</name>
		  <email>bill@wellingtonnet.net</email>
		  		</author>
      <dc:subject>Network Administration, Switches, Technology</dc:subject>
      <content type="text/html" mode="escaped" xml:lang="en-US"><![CDATA[<p>When I inherited the network I administer, I inherited a bunch of 3Com switches.&nbsp; Over time I have swapped them out with other 3Com products.&nbsp; I find that switching is one of those things where everything works so much better if you use one vendor&#8217;s products&#8230; and since I didn&#8217;t change out all of the switches at once I continued purchasing 3Com products.&nbsp; 3Com fucked me today.&nbsp; I got no courtesy reach around, it was rough, and horrible.&nbsp; As a result I will never purchase another 3Com product.</p>

<p>I am setting up a vSphere cluster with a bunch of Dell R710 servers and an EqualLogic PS4000 SAN.&nbsp; The recommendation is to use Jumbo Frames on the switch that connects the SAN to the servers.&nbsp; I have a <a href="http://www.3com.com/products/en_US/detail.jsp?tab=features&amp;pathtype=purchase&amp;sku=3CBLSG48" title="3Com Baseline Switch 2948-SFP (3CBLSG48)">3Com Baseline Switch 2948-SFP (3CBLSG48)</a>, actually I have several of these, but only one that matters in this case.&nbsp; If you follow the previous link, you will notice that in the center column, ninth bullet point, it says &#8220;Jumbo Frame support for reduced network load.&#8221;&nbsp; Well let me tell you, there is absolutely zero documentation on how to activate Jumbo Frames on this switch.&nbsp; Let&#8217;s take a look at the <a href="http://support.3com.com/infodeli/tools/switches/baseline/3Com_Baseline-Switch-2948-SFP-Plus_User-Guide.pdf" title="here">user manual</a>.&nbsp; Search for the word &#8220;jumbo&#8221; in the user manual and you will find exactly one entry, on page 2 (or 13, depending on how Acrobat numbers the pages.)&nbsp; It is a bullet point that says &#8220;The Switch 2948 features the following advantages: ... Jumbo frames&#8221;</p>

<p>All of this indicates to me that the switch supports Jumbo frames in some shape or form, but since the guide has only this entry, I have absolutely no idea how to configure them.&nbsp; Going through 3Com&#8217;s bastardized web interface didn&#8217;t help either, nothing in there to suggest Jumbo frames.&nbsp; the CLI offered little more than configuring the IP address, or resetting the entire config.&nbsp; In short, completely useless.</p>

<p>But wait.&nbsp;  Jumbo frames are also called 9000 byte MTUs.&nbsp; A search through the manual for &#8220;MTU&#8221;, &#8220;9000&#8221;, and &#8220;Maximum Transmission Unit&#8221; revealed absolutely nothing.&nbsp; Basically you can&#8217;t configure them&#8230; and let me tell you, if they are &#8220;automatically configured&#8221; they sure don&#8217;t work worth a shit.</p>

<p>A call to 3Com resulted in no answer, but it is Labor day today, so I will give them that.</p>

<p>Searching through their knowledge base and their user forums, gleaned not a clue.</p>

<p>Most maddening of all, was a google search for <a href="http://www.google.com/search?client=safari&amp;rls=en&amp;q=3com+2948+jumbo+frames&amp;ie=UTF-8&amp;oe=UTF-8" title="&quot;3com 2948 jumbo frames&quot;">&#8220;3com 2948 jumbo frames&#8221;</a> reveals everybody who is trying to sell one of these switches, but doesn&#8217;t come up with anybody who is trying to make Jumbo frames actually work on this switch.</p>

<p>Basically, what should have been a 10 minute config issue has turned into hours of fruitless labor.&nbsp; </p>

<p>3Com, I hate you.
</p>]]></content>
    </entry>

    <entry>
      <title>Deploying Mac OS X 10.5.x With BootCamp &#45; Part 1</title>
      <link rel="alternate" type="text/html" href="http://www.collectivewe.com/index.php/weblog/deploying_mac_os_x_10.5.x_with_bootcamp_-_part_1/" /> 
      <id>tag:collectivewe.com,2009:www.collectivewe.com/3.368</id>
      <issued>2009-08-31T15:40:40+00:00</issued>
      <modified>2009-09-02T03:06:47+00:00</modified>
      <summary></summary>
      <created>2009-08-31T15:40:40+00:00</created>
		<author>
		  <name>Collective We</name>
		  <email>bill@wellingtonnet.net</email>
		  		</author>
      <dc:subject>AWS, Mobile, Network Administration, WLAN, Technology, Apple Computer, Macintosh, OS X, Open Directory, Microsoft, Windows, Server 2003, Active Directory</dc:subject>
      <content type="text/html" mode="escaped" xml:lang="en-US"><![CDATA[<p>Recently we deployed 110 MacBooks to faculty and students in our school.&nbsp; We did not escape the process unscathed, and instead came away with a few process items that I want to pass along to others.&nbsp; We looked at using <a href="http://www.deploystudio.com/" title="Deploy Studio">Deploy Studio</a> to automate our imaging process.&nbsp; We also looked a <a href="http://www.clonezilla.org/" title="Clonezilla">Clonezilla</a> which has worked really well on our Windows deployments in the past.&nbsp; Clonezilla will take an exact copy of your drive, and replicate it of other drives of similar size, as you might expect.&nbsp; We chose Deploy Studio for the additional post imaging scripting that was available.&nbsp; You can build up a workflow that will automatically bind the OS X partition to AD, and to OD, reset the LKDC, and deal with the byHost preferences, along with numerous other thngs.</p>

<p>Setting up Deploy Studio was fairly straight forward.&nbsp; We have an OS X server that was able to perform the role of our NetBoot server.&nbsp; From there, Deploy Studios setup assistant pretty much configured everything cleanly for us.</p>

<p>We built up our perfect image, with OS X 10.5.8 and BootCamp providing us with a Windows XP SP3 partition.&nbsp; Capturing that data with Deploy Studio was simple, and we were off to the races.&nbsp; Or so we thought.&nbsp; Off our 110 machines, all of them had &#8220;dirty&#8221; NTFS partitions pushed down to them by Deploy Studio.&nbsp; About one-third of those machines ran ChkDsk in less that a minute and then booted up into Windwos Setup with no issues.&nbsp; The other two-thirds of our machines had issues with security descriptors.&nbsp; After more than an hour of ChkDsk repairing these descriptors, the machines would beet into setup and complain that ther were missing or corrupt files.&nbsp; I spent an additional hour with 2 machines and some XP SP 3 CDs trying to locate missing files.&nbsp; I never got the Windows partition into a fully bootable state.&nbsp; Clearly something was very wrong, but what was it, and why was it affecting us so inconsistently?</p>

<p>We found that if we reimaged the failed machines, we would have roughly the same failure rate, but we would have more machines done.&nbsp; We also at this time employed Clonezilla to bang out a number of machines, that would need subsequent handling from us to perform all that we were asking Deploy Studio to script for us.</p>

<p>Ultimately we got the image deployed to all 110 machines, but ended up with a great number of problems with our workflow (particularly on the manually configured Clonezilla machines)&nbsp; We also had a disaster of a time getting the students logged in to the machines, which ultimately led us to a second imaging which I will talk about in Part 2 of this article.
</p>]]></content>
    </entry>

    <entry>
      <title>Macintosh OS X &#45; Active Directory Integration</title>
      <link rel="alternate" type="text/html" href="http://www.collectivewe.com/index.php/weblog/macintosh_os_x_-_active_directory_integration/" /> 
      <id>tag:collectivewe.com,2009:www.collectivewe.com/3.367</id>
      <issued>2009-08-30T06:21:50+00:00</issued>
      <modified>2009-08-30T06:43:51+00:00</modified>
      <summary></summary>
      <created>2009-08-30T06:21:50+00:00</created>
		<author>
		  <name>Collective We</name>
		  <email>bill@wellingtonnet.net</email>
		  		</author>
      <dc:subject>AWS, Geek, Mobile, Network Administration, Servers, Technology, Apple Computer, Macintosh, OS X, Open Directory, Microsoft, Windows, Server 2003, Active Directory</dc:subject>
      <content type="text/html" mode="escaped" xml:lang="en-US"><![CDATA[<p>Having an interesting issue with and OS X/AD integration.&nbsp; I have a Windows 2003 domain with many servers.&nbsp; I also have an OS X server running Open Directory.&nbsp; The OS X server is bound to AD, and all of the Macintosh clients are bound to both AD and to OD.&nbsp; This forms Apple&#8217;s &#8220;Golden Triangle&#8221; and allows users to login to a Mac using their AD credentials, while allowing you to specify &#8220;preferences&#8221; for the machine via the OD server.&nbsp; These preferences can be though of as Group Policies for Macs, however they are nowhere near as detailed as the catalog of settings you can enforce using Group Policy on the WIndows side.</p>

<p>Anyway.. I have a small issue with this system, and I am not yet certain where it comes form.&nbsp; My users all have a home directory mapped to the drive letter P:.&nbsp; This is specified in their AD accounts in the form of \\fileserver\users\students\user_name.</p>

<p>Recently, during a MacBook deploy to a small group of students I discovered that none of them could log in&#8230; or more specifically, they were able to log in, but received a message as the Mac tried to mount the sharepoint.&nbsp; I don&#8217;t have a copy of the message here, (its on my desk at work) but essentially it said that the sharepoint was not available.&nbsp; The students clicked OK to this and the machine proceeded to log them out.</p>

<p>A head scratcher indeed.</p>

<p>The machines are also running BootCamp with WIndows XP, and the students were able to log in and access their mapped drive under XP&#8230; so what gives.&nbsp; Also&#8230; I was able to login to a student computer as myself and get my network home folder mapped to my dock.</p>

<p>With a little bit of thinking, and some experimentation by one of my coworkers, we discovered that if we used the server&#8217;s correct hostname, rather than the generic &#8220;fileserver&#8221; CNAME that had been assigned to the machine, the student&#8217;s could log in.</p>

<p>None of this explains why for the past week we have had faculty (who have little more in the way of privileges than the students) able to log into their newly deployed Macs, pulling their network home form the same server, using the same CNAME, with absolutely no problem.</p>

<p>I can see that I will need to do a good bit of testing to see just what permission level the faculty has, that grants them access to the fileserver by it&#8217;s CNAME record rather than by it&#8217;s A record.&nbsp; It would make sense to me if this failed for users, but that it only effects a subset of them makes me wonder what kind of magic is working behind the scenes.</p>

<p>I will update this as I come up with more info.
</p>]]></content>
    </entry>

    <entry>
      <title>Picton Castle &#45; 10 years later</title>
      <link rel="alternate" type="text/html" href="http://www.collectivewe.com/index.php/weblog/picton_castle_-_10_years_later/" /> 
      <id>tag:collectivewe.com,2009:www.collectivewe.com/3.366</id>
      <issued>2009-07-07T00:48:06+00:00</issued>
      <modified>2009-07-07T00:59:07+00:00</modified>
      <summary></summary>
      <created>2009-07-07T00:48:06+00:00</created>
		<author>
		  <name>Collective We</name>
		  <email>bill@wellingtonnet.net</email>
		  		</author>
      <dc:subject>Picton Castle, Sailing</dc:subject>
      <content type="text/html" mode="escaped" xml:lang="en-US"><![CDATA[<p>Walked on the decks of Picton Castle today.&nbsp; It&#8217;s been years&#8230;&nbsp; ten years in fact, since I last set foot on her decks.&nbsp; It was an interesting experience.&nbsp; Dan is the only person on board that was there when I was on board.&nbsp;  The ship was much the same, and yet, much changed in the small details.&nbsp; Parts of the ship had been painted different colors, the blocks had been replaced by ornately carved blocks.&nbsp; Other differences too.&nbsp; The stove is now diesel fired, rather than coal, the engine room is cleaner than ever before, (but the engine still leaks oil in all the same places.)</p>

<p>I looked longingly at the ship, knowing that I am not likely to get a chance to sail on her again.&nbsp; Certainly not around the world again.
</p>]]></content>
    </entry>

    <entry>
      <title>In Boston &#45; Whipple Hill Users Conference &#45; 09</title>
      <link rel="alternate" type="text/html" href="http://www.collectivewe.com/index.php/weblog/in_boston_-_whipple_hill_users_conference_-_09/" /> 
      <id>tag:collectivewe.com,2009:www.collectivewe.com/3.365</id>
      <issued>2009-07-02T03:41:32+00:00</issued>
      <modified>2009-07-02T03:58:33+00:00</modified>
      <summary></summary>
      <created>2009-07-02T03:41:32+00:00</created>
		<author>
		  <name>Collective We</name>
		  <email>bill@wellingtonnet.net</email>
		  		</author>
      <dc:subject>AWS, Geek, Social Media Networks</dc:subject>
      <content type="text/html" mode="escaped" xml:lang="en-US"><![CDATA[<p>I am in Boston.&nbsp; Home.&nbsp; It&#8217;s pretty great to be home.&nbsp; It&#8217;s even better that work paid for me to come home this summer.&nbsp; I will have to see if I can make that work out again in the future.&nbsp; I am here because we use Podium from <a href="http://whipplehill.com/" title="Whipple Hill">Whipple Hill</a> to generate our web content and to manage our student information system.&nbsp; It&#8217;s OK.&nbsp; It has it&#8217;s quirks.&nbsp; The <a href="http://www.whipplehill.com/events/uc/2009/ucmash09.aspx" title="conference">conference</a> is designed around orienting us to Podium and learning the tricks to make it do what we need it to do.</p>

<p>One of the most exciting things I will take home with me, (home on the West coast, not in Boston) is the idea that Social Media is something we, (the school) have absolutely no control over.&nbsp; Run a Google query similar to this: <kbd>&#8220;My Company Name&#8221; -mycompany.com</kbd> and tell me what you find.&nbsp; The query, for those of you who don&#8217;t use the advanced features of Google, will provide you with all the Google indexed content that mentions your company by name, yet doesn&#8217;t come from your company&#8217;s website.&nbsp; See&#8230; people are talking about you in ways you have zero control over.&nbsp; Well&#8230; the only way in which you can control this type of interaction is to behave ethically as an organization.&nbsp; If you do this, people will talk positively about you.&nbsp; If not&#8230; not so much.</p>

<p>You can check out what people are saying about the <a href="http://search.twitter.com/search?q=WHUC09" title="conference on Twitter">conference on Twitter</a>.
</p>]]></content>
    </entry>

    <entry>
      <title>Subway</title>
      <link rel="alternate" type="text/html" href="http://www.collectivewe.com/index.php/weblog/subway/" /> 
      <id>tag:collectivewe.com,2009:www.collectivewe.com/3.364</id>
      <issued>2009-06-30T22:40:44+00:00</issued>
      <modified>2009-07-01T03:03:48+00:00</modified>
      <summary></summary>
      <created>2009-06-30T22:40:44+00:00</created>
		<author>
		  <name>Collective We</name>
		  <email>bill@wellingtonnet.net</email>
		  		</author>
      <dc:subject>Mobile, Social Media Networks, Technology, Apple Computer, iPod, Blackberry &#45; RIM</dc:subject>
      <content type="text/html" mode="escaped" xml:lang="en-US"><![CDATA[It has been years since I last rode the subway.  Seattle doesn't exactly have one, and neither does Tacoma.  Last time I did this, people either read a book or listened to their walkman.  I look around today and see that nearly everybody is listening to an iPod, phone, and tapping away on a phone of some sort.  I guess that puts me in sync with everybody else around me.

Media has taken over our lives.  It occupies our work lives, our personal lives, and even the spare cycles in between.]]></content>
    </entry>

    <entry>
      <title>Weekend in Jersey</title>
      <link rel="alternate" type="text/html" href="http://www.collectivewe.com/index.php/weblog/weekend_in_jersey/" /> 
      <id>tag:collectivewe.com,2009:www.collectivewe.com/3.363</id>
      <issued>2009-06-28T20:32:20+00:00</issued>
      <modified>2009-06-30T22:45:21+00:00</modified>
      <summary></summary>
      <created>2009-06-28T20:32:20+00:00</created>
		<author>
		  <name>Collective We</name>
		  <email>bill@wellingtonnet.net</email>
		  		</author>
      <dc:subject>Mobile</dc:subject>
      <content type="text/html" mode="escaped" xml:lang="en-US"><![CDATA[My weekend in New Jersey was pretty great.  Hanging out with friends and the spawn of friends is the stuff that dreams are made of.  Right?

Anyway, I had a great time just chilling out, drinking a few cold ones, and having some good laughs.  All on the cheap too.

Heading back to Boston on the Acela now.  Hanging out in the quiet car, tapping out this entry.]]></content>
    </entry>


</feed>