<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Sheryl's Blog</title>
	<atom:link href="http://www.sherylcanter.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sherylcanter.com/wordpress</link>
	<description>Ongoing explorations...</description>
	<pubDate>Mon, 29 Dec 2008 18:18:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>Integrate FlashChat in Drupal 5 or Drupal 6</title>
		<link>http://www.sherylcanter.com/wordpress/2008/12/integrate-flashchat-in-drupal-5-or-drupal-6/</link>
		<comments>http://www.sherylcanter.com/wordpress/2008/12/integrate-flashchat-in-drupal-5-or-drupal-6/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 22:46:40 +0000</pubDate>
		<dc:creator>Sheryl Canter</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.sherylcanter.com/wordpress/?p=268</guid>
		<description><![CDATA[FlashChat is a mature, full-featured chat program that is free without source code, $5 with. It can be integrated nicely with Drupal, but it&#8217;s not easy to figure out how. Here&#8217;s how.
The current version of FlashChat (5.0.10) contains a configuration file for Drupal integration (drupalCMS.php) that doesn&#8217;t work. So for starters, download the Drupal 5 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tufat.com/s_flash_chat_chatroom.htm">FlashChat</a> is a mature, full-featured chat program that is free without source code, $5 with. It can be integrated nicely with Drupal, but it&#8217;s not easy to figure out how. Here&#8217;s how.</p>
<p>The current version of FlashChat (5.0.10) contains a configuration file for Drupal integration (drupalCMS.php) that doesn&#8217;t work. So for starters, download the <a href="http://forum.tufat.com/showthread.php?t=50869">Drupal 5 &#038; 6 Integration Kit</a>.</p>
<p>That solves many problems, but not quite all.</p>
<p><span id="more-268"></span></p>
<h3>Installation</h3>
<p>The integration kit contains a mostly-working drupalCMS.php script, and a &#8220;Who&#8217;s in chat&#8221; block module for Drupal 5 and Drupal 6. It takes just a few small tweaks to make these operational.</p>
<p>The new drupalCMS.php needs no changes if your database host is something simple like &#8220;localhost&#8221;. But mine wasn&#8217;t - mine is &#8220;localhost:/tmp/mysql5.sock&#8221;, encoded in my Drupal settings.php file ($db_url variable) as &#8220;localhost%3a%2ftmp%2fmysql5.sock&#8221;. If your database host looks like mine, then you need to make one small change.</p>
<p>In drupalCMS.php, search for:</p>
<pre>
      $parts[host]
</pre>
<p>and replace this with:</p>
<pre>
      rawurldecode($parts[host])
</pre>
<p><i>Edit 29-Dec-08: Veronica just fixed the host parameter code in her Drupal Kit.</i></p>
<p>I encountered one more installation problem. This last problem is a bug in the general installation code, not the Drupal-specific code.</p>
<p>When I got to Step 7 and tried to install FlashChat bots, I got a 500 Server Error. This turned out to be because the install program was setting permissions of 777 to the flashchat temp directory and all subdirectories. My Web host is running SuExec, so allowing the world write permissions will always generate a 500 Server Error.</p>
<p>So when I got to Step 7 and the error, I used an FTP program to set the permission of temp and its subdirectories to 775 (no write permission for the world) and refreshed the page. That allowed it to load successfully and install the bots.</p>
<h3>Displaying FlashChat within Drupal</h3>
<p>When FlashChat is launched from within Drupal, it uses the Drupal users table and automatically logs in users who are logged into Drupal. So far, so good.</p>
<p>But by default, it opens into its own browser window. You lose all your Drupal theming, blocks, headers, and footers. I didn&#8217;t like that.</p>
<p>It&#8217;s very simple to make FlashChat display within a Drupal page. Just create a new page and enter this code:</p>
<pre>
      &lt;?php

      echo '&lt;iframe width="100%" height="450" src="flashchat/flashchat.php"&gt;&lt;/iframe&gt;';

      ?&gt;
</pre>
<p>Note that the source string shown here assumes that FlashChat is installed in a subdirectory under the Drupal root called &#8220;flashchat&#8221;. If you put it somewhere else, adjust the code.</p>
<h3>Beware the Block Quirk</h3>
<p>The FlashChat module for a &#8220;Who&#8217;s in chat&#8221; block works very nicely, but beware: <b>You must go into the Admin area for the FlashChat module and save settings <i>before</i> enabling the block, or an error will prevent you from accessing your site.</b> The FlashChat variables are not saved to the Drupal variables table until you go into the Admin area and save settings.</p>
<p>If you&#8217;re reading this after already encountering this error, just launch phpMyAdmin and delete the flashchat entry from the blocks table. That will get Drupal running again.</p>
<p>There are two things you should check when you are in the FlashChat Module Admin area:</p>
<ul>
<li>Make sure the name of the FlashChat directory is correct. The default is &#8220;chat&#8221;, but I called mine &#8220;flashchat&#8221;.</li>
<li>You will want to remove the link to &#8220;Go to chat&#8221; if you want an embedded chat (or edit the code). The &#8220;Go to chat&#8221; link opens FlashChat in a separate window without the Drupal sidebars, header, and footer.</li>
</ul>
<p>To change the link so it opens to your embedded chat, find this line in flashchat.module (the line is wrapping here, but it&#8217;s one line in the file):</p>
<pre>
      if($chatLinkText) $chatLink = '&lt;a href="' . base_path() . $chat .
          'flashchat.php" target="_blank" title="' . $chatLinkTitle . '" alt="' .
          $chatLinkTitle . '"&gt;' . $chatLinkText . '&lt;/a&gt;&lt;br&gt;';
</pre>
<p>Replace it with this:</p>
<pre>
      if ($chatLinkText)
          $chatLink = '&lt;a href="' . base_path() . 'fchat" title="' . $chatLinkTitle .
          '" alt="' . $chatLinkTitle . '"&gt;' . $chatLinkText . '&lt;/a;gt;&lt;br&gt;';
</pre>
<p>And then make sure that your Drupal page with the chat uses the url &#8220;fchat&#8221;. Don&#8217;t call it &#8220;flashchat&#8221; or it will launch FlashChat in a separate window (if your directory is called &#8220;flashchat&#8221;).</p>
<h3>Configuring FlashChat</h3>
<p>I find the default colors for FlashChat to be unreadable and headache-inducing, but happily this can be changed to match your Drupal theme. You can change many other aspects of the program from the adminstration area, as well:</p>
<p>http://<i>yoursite.com</i>/<i>chatdir</i>/admin/index.php</p>
<p>There&#8217;s a bug in the sounds feature in FlashChat 5.0.10 - settings are ignored. If you&#8217;re desperate to mute the sounds, you can delete the /flashchat/sounds/ folder.</p>
<p>There are some things that are not figurable in FlashChat that should be, and new chatters can&#8217;t see ongoing discussions from before they joined the chat. If these problems bother you, take a look at the <a href="http://www.sherylcanter.com/wordpress/2008/12/phpfreechat-in-drupal/">phpFreeChat module for Drupal 5.x</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sherylcanter.com/wordpress/2008/12/integrate-flashchat-in-drupal-5-or-drupal-6/feed/</wfw:commentRss>
		</item>
		<item>
		<title>phpFreeChat in Drupal</title>
		<link>http://www.sherylcanter.com/wordpress/2008/12/phpfreechat-in-drupal/</link>
		<comments>http://www.sherylcanter.com/wordpress/2008/12/phpfreechat-in-drupal/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 19:36:47 +0000</pubDate>
		<dc:creator>Sheryl Canter</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.sherylcanter.com/wordpress/?p=251</guid>
		<description><![CDATA[If you&#8217;re running Drupal on a Web site and want to integrate chat software, check out the phpFreeChat module, which integrates the standalone phpFreeChat program into Drupal 5.x. I&#8217;m the current maintainer of this module, and just uploaded v1.3.
There&#8217;s a copy of the phpFreeChat module on my own Web site because I shared it from [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re running <a href="http://drupal.org">Drupal</a> on a Web site and want to integrate chat software, check out the <a href="http://drupal.org/project/phpfreechat">phpFreeChat module</a>, which integrates the standalone phpFreeChat program into Drupal 5.x. I&#8217;m the current maintainer of this module, and just uploaded v1.3.</p>
<p>There&#8217;s a copy of the phpFreeChat module on <a href="http://www.permutations.com/drupal/phpfreechat.php">my own Web site</a> because I shared it from there while I figured out CVS, and don&#8217;t want to break the link. There&#8217;s also a phpFreeChat-compatible theme on my site that I haven&#8217;t uploaded to Drupal yet.</p>
<p>phpFreeChat is a great program (I added an &#8220;away&#8221; feature in the Drupal version), but has a limitation that may be a problem for some people: it conflicts with jquery if it&#8217;s on the same page. For most people this isn&#8217;t an issue, but if it is for you, you can use FlashChat - another feature-rich chat. I figured out how to integrate this with Drupal 5.x, and will post the configuration file and instructions shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sherylcanter.com/wordpress/2008/12/phpfreechat-in-drupal/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Another Installation Already in Progress (But it&#8217;s Not)</title>
		<link>http://www.sherylcanter.com/wordpress/2008/12/another-installation-already-in-progress-but-its-not/</link>
		<comments>http://www.sherylcanter.com/wordpress/2008/12/another-installation-already-in-progress-but-its-not/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 21:24:41 +0000</pubDate>
		<dc:creator>Sheryl Canter</dc:creator>
		
		<category><![CDATA[Tips for Power Users]]></category>

		<guid isPermaLink="false">http://www.sherylcanter.com/wordpress/?p=222</guid>
		<description><![CDATA[I keep encountering an annoying error message as I try to set up my new 64-bit Vista laptop. Often when I try to install a program, I&#8217;m told that another installation is already in progress and I must complete that one first. But no other installation is in progress, and simply rebooting doesn&#8217;t help.
I googled [...]]]></description>
			<content:encoded><![CDATA[<p>I keep encountering an annoying error message as I try to set up my new 64-bit Vista laptop. Often when I try to install a program, I&#8217;m told that another installation is already in progress and I must complete that one first. But no other installation is in progress, and simply rebooting doesn&#8217;t help.</p>
<p>I googled this problem, and found some complicated advice about failed installations and the Windows Installer Cleanup Utility. But I find that this error occurs when a program installs just fine in every respect except that it leaves the Windows Installer Service running.</p>
<p>There&#8217;s a easy way to fix this.</p>
<p><span id="more-222"></span></p>
<p>Right-click on the Computer icon, wherever it exists on your system, and select Manage. (I&#8217;m using the Classic Start menu, so the Computer icon is on my desktop. If you&#8217;re using the new Start menu, the icon is in the Start menu.) This opens the Computer Management utility.</p>
<p><img src="http://www.sherylcanter.com/wordpress/wp-content/uploads/2008/12/windowsinstallerservice.jpg" alt="Windows Installer Service" title="Windows Installer Service" width="544" height="403" align="top" /></p>
<p><img src="http://www.sherylcanter.com/wordpress/wp-content/uploads/2008/12/windowsinstallerproperties.jpg" alt="" title="Windows Installer Service Properties" width="419" height="472" align="left" hspace="12" />Select Services, right click on Windows Installer in the list and select Properties. If you&#8217;re having the problem, the Windows Installer service is started, and the Stop button is disabled. Simply rebooting doesn&#8217;t stop the service. Here&#8217;s how you stop it.</p>
<p>In the Properties dialog, change Startup type to &#8220;Disabled&#8221;, click OK, and reboot your computer. This stops the service. After your computer reboots, again open Computer Management (right-click on Computer and select Manage), open Windows Installer Properties, and change the Startup type back to Manual. Now you&#8217;re good to go and can start a new installation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sherylcanter.com/wordpress/2008/12/another-installation-already-in-progress-but-its-not/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Brother Printer? Can&#8217;t Install Software on 64-Bit Vista?</title>
		<link>http://www.sherylcanter.com/wordpress/2008/12/brother-printer-cant-install-software-on-64-bit-vista/</link>
		<comments>http://www.sherylcanter.com/wordpress/2008/12/brother-printer-cant-install-software-on-64-bit-vista/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 17:27:17 +0000</pubDate>
		<dc:creator>Sheryl Canter</dc:creator>
		
		<category><![CDATA[Tips for Power Users]]></category>

		<guid isPermaLink="false">http://www.sherylcanter.com/wordpress/?p=219</guid>
		<description><![CDATA[Here the solution to an annoying problem that took me some time to track down. I&#8217;m posting the problem and the solution to help any other fellow sufferers there may be out there.
I have a brand new ThinkPad running 64-bit Vista. But when I tried to install Microsoft Office 2007, no joy - it would [...]]]></description>
			<content:encoded><![CDATA[<p>Here the solution to an annoying problem that took me some time to track down. I&#8217;m posting the problem and the solution to help any other fellow sufferers there may be out there.</p>
<p>I have a brand new ThinkPad running 64-bit Vista. But when I tried to install Microsoft Office 2007, no joy - it would copy the files from DVD then stall until I cancelled it. Same thing happened with Office updates. When I tried to install the Java Development Kit (JDK), I got an error message saying that another install process was running and that had to complete first.</p>
<p>After much pain, I finally tracked this down to the Brother XP spl Service (BrSplService - brsvc01a.exe), installed with the software for my Brother MFC 420CN. I still have no idea what this does, but I did find a <a href="http://welcome.solutions.brother.com/BSC/public/us/us/en/faq/faq/000000/000600/000083/faq000683_002.html?reg=us&#038;c=us&#038;lang=en&#038;prod=mfc3420c_us">patch for the problem</a> on the Brother site. Problem solved.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sherylcanter.com/wordpress/2008/12/brother-printer-cant-install-software-on-64-bit-vista/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Change Outlook Recurring Appointments without Losing Your History</title>
		<link>http://www.sherylcanter.com/wordpress/2008/12/change-outlook-recurring-appointments-without-losing-exceptions/</link>
		<comments>http://www.sherylcanter.com/wordpress/2008/12/change-outlook-recurring-appointments-without-losing-exceptions/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 22:06:30 +0000</pubDate>
		<dc:creator>Sheryl Canter</dc:creator>
		
		<category><![CDATA[Tips for Power Users]]></category>

		<guid isPermaLink="false">http://www.sherylcanter.com/wordpress/?p=195</guid>
		<description><![CDATA[In the old days, before everyone had a personal computer, paper appointment books provided a permanent record of what we did when. Sometimes that&#8217;s useful - sometimes you need to refer back. Today, I use Outlook on the PC and Pocket PC to keep track of my appointments. And when things are electronic, there is [...]]]></description>
			<content:encoded><![CDATA[<p>In the old days, before everyone had a personal computer, paper appointment books provided a permanent record of what we did when. Sometimes that&#8217;s useful - sometimes you need to refer back. Today, I use Outlook on the PC and Pocket PC to keep track of my appointments. And when things are electronic, there is the potential for problems.</p>
<p><img src="http://www.sherylcanter.com/wordpress/wp-content/uploads/2008/12/exceptions_lost_clip.jpg" alt="" title="exceptions_lost_clip" width="497" height="114" hspace="8" align="right" class="alignright size-full wp-image-202" />I have a recurring weekly appointment in Outlook, and I wanted to change the time of the appointment. That should be easy, right? You&#8217;d think you could change all the times going forward? But noooooo. Outlook warns you that if you make a change, all exceptions will be lost. But actually, it&#8217;s worse than that. It changes the time of every appointment - including appointments that occurred in the past. Happily I found a workaround.</p>
<p><span id="more-195"></span></p>
<p>This tip comes from a <a href="http://www.outlook-tips.net/archives/2006/20060110.htm">site devoted to Outlook tips</a>. It&#8217;s a great site - I&#8217;ve used it before. Here&#8217;s what you do.</p>
<p>Export your calendar folder to an Excel file. (And when you&#8217;re done with that, close Outlook and make a backup copy of your .PST file, just in case of disaster - you never know.) The export function doesn&#8217;t support recurring appointments, and for our purposes, this is a good thing! It allows you to convert the dates you want to keep into non-recurring, individual appointments.</p>
<p>Edit the Excel file to contain just the recurring appointment between the dates you want to keep. This is easy to do if you sort on the appointment subject. Delete everything that is not the recurring appointment. Then import the edited Excel file back into Outlook. If you have long notes, you may need to copy and paste them into the non-recurring version since there&#8217;s a length limit for exports.</p>
<p>When you&#8217;ve assured yourself that all is well, delete the recurring appointment, then create a new recurring appointment for the new time (or just stop at deleting, if there are no more appointments in the future). Problem solved!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sherylcanter.com/wordpress/2008/12/change-outlook-recurring-appointments-without-losing-exceptions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Good-bye PC Magazine (Print Edition)</title>
		<link>http://www.sherylcanter.com/wordpress/2008/11/good-bye-pc-magazine-print-edition/</link>
		<comments>http://www.sherylcanter.com/wordpress/2008/11/good-bye-pc-magazine-print-edition/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 18:51:24 +0000</pubDate>
		<dc:creator>Sheryl Canter</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.sherylcanter.com/wordpress/?p=181</guid>
		<description><![CDATA[This morning it was announced that the print edition of PC Magazine will end with the January 2009 issue. Former Editor-in-Chief Michael Miller blogged about this on PCMag.com. 
Memories, memories. I started at PC Magazine very shortly after Michael Miller became Editor-in-Chief in 1991. In fact, my first interview was with the previous Editor-in-Chief, Bill [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sherylcanter.com/wordpress/wp-content/uploads/2008/11/pcm_15_header.gif" alt="" title="PC Magazine Logo" alt="PC Magazine Logo" width="65" height="78" align="left" hspace="12" />This morning it was announced that the print edition of <i>PC Magazine</i> will end with the January 2009 issue. <a href="http://blogs.pcmag.com/miller/2008/11/requiem_for_pc_magazine_print.php">Former Editor-in-Chief Michael Miller blogged about this on PCMag.com</a>. </p>
<p>Memories, memories. I started at <i>PC Magazine</i> very shortly after Michael Miller became Editor-in-Chief in 1991. In fact, my first interview was with the previous Editor-in-Chief, Bill Machrone.</p>
<p>I confess to mixed feelings about the end of the print edition.</p>
<p><span id="more-181"></span></p>
<p>For many years I loved working at <i>PC Magazine</i>, and I worked hard. Putting together the Utilities column every two weeks was an escalating challenge over the ten years I was editor. The utilities got increasingly complex as more and more functionality was added to the operating system.</p>
<p>But then <i>PC Magazine</i> fell on hard financial times and there was wave after wave of layoffs. Eventually the ax came around to me. I&#8217;d been working as a full-time freelancer under a handshake agreement (yes, I&#8217;m naive) with then-editor Joel Dreyfuss, who had since left the magazine. The bean counters who&#8217;d taken management control were legally able to lay me off without severance pay, and they did - quite abruptly. That was how it ended for me after 12 years of 70-hour work weeks, producing what for a long time was the most popular column in the magazine.</p>
<p>So while I&#8217;m mostly over my anger (it&#8217;s been a while now since I left), I admit to a little bit of schadenfreude. Did the print magazine fail due to mismanagement after Michael Miller left, or is print just on the way out, or both? Hard to say.</p>
<p>In any case, I am sad that my relationship with <i>PC Magazine</i> ended on a sour note because I spent so many happy years there. The good old days in the 1990s were a great ride. I&#8217;ll try to focus on that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sherylcanter.com/wordpress/2008/11/good-bye-pc-magazine-print-edition/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Configuring Pidgin from Behind a Firewall</title>
		<link>http://www.sherylcanter.com/wordpress/2008/11/configuring-pidgin-behind-firewall/</link>
		<comments>http://www.sherylcanter.com/wordpress/2008/11/configuring-pidgin-behind-firewall/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 22:25:10 +0000</pubDate>
		<dc:creator>Sheryl Canter</dc:creator>
		
		<category><![CDATA[Tips for Power Users]]></category>

		<guid isPermaLink="false">http://www.sherylcanter.com/wordpress/?p=154</guid>
		<description><![CDATA[I use the open source, instant messaging client Pidgin to connect to multiple IM services at once. From my home computer, I had no problem configuring the program to work with AIM, SMS messaging (my cell phone), MSN Messenger, Google Talk, and Yahoo Messenger. But at work I encountered firewall problems with the last three.
Here&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sherylcanter.com/wordpress/wp-content/uploads/2008/11/pidgin.jpg" alt="Pidgin" title="Pidgin" width="109" height="185" align="left" hspace="8" />I use the open source, instant messaging client <a href="http://pidgin.im/download/">Pidgin</a> to connect to multiple IM services at once. From my home computer, I had no problem configuring the program to work with AIM, SMS messaging (my cell phone), MSN Messenger, Google Talk, and Yahoo Messenger. But at work I encountered firewall problems with the last three.</p>
<p>Here&#8217;s how I was finally able to connect (listing only the changes from the default). I&#8217;m running Pidgin 2.5.2. All the setting changes are on the &#8220;Advanced&#8221; page of the account setup dialog. Of course, what worked for me might not work for you, but hopefully it will help. </p>
<p><span id="more-154"></span></p>
<h4>MSN Messenger</h4>
<p>I checked &#8220;Use HTTP Method&#8221; and voilà! With that one small change it connected.</p>
<h4>Google Talk</h4>
<ul>
<li>Check &#8220;Force old (port 5223) SSL.</li>
<li>In the &#8220;Connect port&#8221; field, enter 443.</li>
<li>In the &#8220;Connect server&#8221; field, enter &#8220;talk.google.com&#8221;</li>
</ul>
<p>It may not have been necessary to enter talk.google.com explicitly, but it doesn&#8217;t hurt and it works now so I don&#8217;t want to touch it!</p>
<h4>Yahoo Messenger</h4>
<p>This one was the big pain - pain to find, that is. The solution is actually very simple. I just had to change the port. The Pidgin support site lists a bunch of ports that are known to work with Yahoo: 20, 23, 25, 80, 119, 5050, 8001, 8002. But not all the ports may work on your computer. Naturally, the one that worked for me was the last one I tried: Port 23. And now - finally - it&#8217;s working.</p>
<p>I had some other miscellaneous difficulties. For a while, I couldn&#8217;t get Google Talk to recognize that I was online. The solution was to delete the account and recreate it. And for a while my buddy icons weren&#8217;t displaying. But after exiting and restarting Pidgin a few times, they now all display.</p>
<p>Hope this helps someone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sherylcanter.com/wordpress/2008/11/configuring-pidgin-behind-firewall/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Immigration Issue No One Talks About</title>
		<link>http://www.sherylcanter.com/wordpress/2008/11/immigration-issue-no-one-talks-about/</link>
		<comments>http://www.sherylcanter.com/wordpress/2008/11/immigration-issue-no-one-talks-about/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 20:26:06 +0000</pubDate>
		<dc:creator>Sheryl Canter</dc:creator>
		
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.sherylcanter.com/wordpress/?p=121</guid>
		<description><![CDATA[Why do so many people attempt to enter the U.S. illegally? The answer is not just that this is a desirable country to live in. That doesn&#8217;t explain why, for example, so many Mexicans risk their lives crossing a desert on foot rather than getting a proper visa. Why not come here legally?
I asked this [...]]]></description>
			<content:encoded><![CDATA[<p>Why do so many people attempt to enter the U.S. illegally? The answer is not just that this is a desirable country to live in. That doesn&#8217;t explain why, for example, so many Mexicans risk their lives crossing a desert on foot rather than getting a proper visa. Why not come here legally?</p>
<p>I asked this question of a very nice man who has worked at a store in my neighborhood for years, and came to this country by risking his life walking through the Mexican desert. (The trick to survival, he said, is to cross in winter when it&#8217;s cooler.) Why did he do it? The answer is simple - there&#8217;s no way he could have gotten a visa. Coming here legally was not one of his options.</p>
<p><b>Poor people looking for opportunity cannot get visas to enter the U.S.</b></p>
<p><span id="more-121"></span></p>
<p>If you&#8217;re educated and have a job waiting for you at a big American company, you can get a visa. But if you&#8217;re a poor Mexican who wants to come to this country for the opportunity it offers for education and advancement, forget it.</p>
<p>The Statue of Liberty in New York Harbor is inscribed with a lovely poem that begins:</p>
<blockquote><p>Give me your tired, your poor&#8230;</p></blockquote>
<p>That was America&#8217;s attitude when <a href="http://www.sherylcanter.com/wordpress/2008/11/connection-to-carpathia/">my great grandfather arrived at Ellis Island in 1907</a>, but it&#8217;s false advertising today. Today, America&#8217;s motto seems to be:</p>
<blockquote><p>Give me your best and brightest. If you&#8217;re tired and poor, KEEP OUT!</p></blockquote>
<p>So what I&#8217;d like to know is, why has immigration criteria changed so drastically, and why do policymakers never talk about it? You hear debates on walls and amnesty, and everyone seems to agree that illegal immigration should be stopped. But you never hear discussion of the oppressive visa-granting criteria that drives illegal immigration in the first place.</p>
<p>Somewhere along the line, America changed. We went from being a haven for the downtrodden and persecuted, to a clique that only the privileged and elite can join. Is this the kind of country we want?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sherylcanter.com/wordpress/2008/11/immigration-issue-no-one-talks-about/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Connection to the Ship that Rescued 705 Titanic Survivors</title>
		<link>http://www.sherylcanter.com/wordpress/2008/11/connection-to-carpathia/</link>
		<comments>http://www.sherylcanter.com/wordpress/2008/11/connection-to-carpathia/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 04:23:37 +0000</pubDate>
		<dc:creator>Sheryl Canter</dc:creator>
		
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.sherylcanter.com/wordpress/?p=50</guid>
		<description><![CDATA[My great grandfather emigrated to the U.S. from Hungary in 1907 with his wife and two young sons (one being my grandfather). In 2002, my mother found his passenger record on the Ellis Island Web site, and forwarded it to our family in email. It contains a detail we didn&#8217;t notice at the time.
The ship [...]]]></description>
			<content:encoded><![CDATA[<p>My great grandfather emigrated to the U.S. from Hungary in 1907 with his wife and two young sons (one being my grandfather). In 2002, my mother found his passenger record on the Ellis Island Web site, and forwarded it to our family in email. It contains a detail we didn&#8217;t notice at the time.</p>
<p><img src="http://www.sherylcanter.com/wordpress/wp-content/uploads/2008/11/ellis-island-passenger-record-mihaly-engel.jpg" alt="" title="Ellis Island Passenger Record for Mihaly Engel" width="366" height="306" align="left" hspace="12" />The ship that brought my great grandfather to America was the Carpathia. Less than five years later, this same ship would answer the Titanic&#8217;s desperate distress call.</p>
<p>To maximize speed, Carpathia&#8217;s captain <a href="http://www.titanic-titanic.com/carpathia.shtml">cut off heat and hot water to the cabins</a> and diverted all available steam to the engines. The ship finally reached the Titanic lifeboats at 4am, and rescued 705 survivors.</p>
<p>And there&#8217;s video - video of the very ship that brought my great grandfather to the U.S., as it returned to port with Titanic survivors.</p>
<p><span id="more-50"></span></p>
<p><b>Three short video clips from 18 Apr 1912, as the Carpathia returned to New York from the scene of the Titanic disaster.</b></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/YQw5RglP5KA&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/YQw5RglP5KA&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Hvpl6Sj9wF8&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Hvpl6Sj9wF8&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/W5E2EhNoHYs&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/W5E2EhNoHYs&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>I also found some still pictures taken during and after the Titanic rescue, uploaded to <a href="http://blog.flickr.net/en/2008/05/23/surviviors-of-the-titanic-on-carpathia/">Flickr</a> from the Library of Congress.</p>
<p><img src="http://farm3.static.flickr.com/2252/2515742163_2a6763a5fb.jpg" alt="Titanic Lifeboats on the Way to Carpathia" title="Titanic Lifeboats on the Way to Carpathia" /><br />
<i>Titanic Lifeboats on the Way to Carpathia</i></p>
<p><img src="http://farm3.static.flickr.com/2418/2516565506_63b0527ce1.jpg" alt="Survivors of Titanic on Carpathia" title="Survivors of Titanic on Carpathia" /><br />
<i>Survivors of Titanic on Carpathia</i></p>
<p><img src="http://farm3.static.flickr.com/2057/2163081051_9dbb263230.jpg" alt="Titanic Lifeboats on the Way to Carpathia" title="Titanic Lifeboats on the Way to Carpathia" /><br />
<i>Titanic Lifeboats in the Way to Carpathia</i></p>
<p>The Titanic rescue wasn&#8217;t Carpathia&#8217;s last brush with history. It was sunk near the end of World War I by torpedoes from German U-boats. In 2000, the <a href="http://www.titanic-titanic.com/carpathia_found.shtml">wreck of Carpathia was found off the east coast of Ireland</a>.</p>
<p>I never would have known about our family connection to the Carpathia if my brother hadn&#8217;t recognized the ship name while showing our great grandfather&#8217;s passenger record to his daughter. She was studying Ellis Island in school.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sherylcanter.com/wordpress/2008/11/connection-to-carpathia/feed/</wfw:commentRss>
		</item>
		<item>
		<title>2 Elegant Little Programs</title>
		<link>http://www.sherylcanter.com/wordpress/2008/11/2-elegant-little-programs/</link>
		<comments>http://www.sherylcanter.com/wordpress/2008/11/2-elegant-little-programs/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 21:07:02 +0000</pubDate>
		<dc:creator>Sheryl Canter</dc:creator>
		
		<category><![CDATA[Tips for Power Users]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[Windows Development]]></category>

		<guid isPermaLink="false">http://www.sherylcanter.com/wordpress/?p=24</guid>
		<description><![CDATA[I&#8217;m still trying to decide how I will use this blog, now that computer technology is no longer my main focus. But yesterday I installed the latest Wordpress software, imported posts from my old MovableType blog, and wrote an .htaccess file to preserve the old MT links, so I have computer technology on the mind. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still trying to decide how I will use this blog, now that computer technology is no longer my main focus. But yesterday I installed the latest Wordpress software, imported posts from my old MovableType blog, and wrote an .htaccess file to preserve the old MT links, so I have computer technology on the mind. Here are two great utilities - one for programmers, one for everybody.</p>
<h3>What Color Is That?</h3>
<p><img src="http://www.sherylcanter.com/wordpress/wp-content/uploads/2008/11/colorcop.jpg" alt="&quot;Color Cop&quot; color picker" title="Color Cop" width="204" height="301" align="left" hspace="8" />I use Dreamweaver 8 (Macromedia version) for Web development and while I like it a lot, it&#8217;s a resource hog - so much so that I can&#8217;t launch my bitmap editing program at the same time to access its color selection feature.</p>
<p>I wanted a color selection program with a tiny footprint - something that does everything I need but nothing more. After looking at over a dozen of them, I finally found one that&#8217;s just about perfect - all the more so because it&#8217;s free: <a href="http://colorcop.net/">Color Cop</a>. (Voluntary donations are accepted.)</p>
<p>Color Cop lets you identify any color on the screen, enter a color code to see what it looks like, use a standard Windows color selector to find a color, determine whether a color is Websafe, snap to the closest Websafe color, and sample colors using multi-pixel averages. It&#8217;s nicely designed, intuitive to use, and the entire executable is just 96K.</p>
<p>The elegance of Color Cop reminded me of another very elegant program I found that has nothing to do with programming.</p>
<p><span id="more-24"></span></p>
<h3>Do I Need a Coat?</h3>
<p>I live in New York City on the fifth floor of a walk-up. I like to tell myself that this is actually a <i>good</i> thing - saves me money on a gym. But on the downside, it&#8217;s inconvenient to walk outside to check the weather before deciding what coat to wear. I wanted a little tray program that would tell me the weather, but most weather programs are huge and full of features I don&#8217;t want or need like hurricane and tornedo alerts (not terribly relevant for New York).</p>
<p><img src="http://www.sherylcanter.com/wordpress/wp-content/uploads/2008/11/desktopforecast_tray.jpg" alt="" title="Desktop Forecast tray icons" width="127" height="35" align="left" hspace="8" />I finally came across a gem of a program called <a href="http://www.desktopforecast.com/">DesktopForecast</a>. It costs all of $4.95, and it&#8217;s totally worth it. Its two little tray icons give you the main information you need at a glance. A right-click opens a context menu with more information. And if that&#8217;s still not enough for you, you can link to the Yahoo Weather site for the full scoop.</p>
<p><img src="http://www.sherylcanter.com/wordpress/wp-content/uploads/2008/11/desktopforecast.jpg" alt="" title="desktopforecast" width="303" height="436" class="alignnone size-full wp-image-33" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sherylcanter.com/wordpress/2008/11/2-elegant-little-programs/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
