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

<channel>
	<title>Darian Shimy &#187; Everything Else</title>
	<atom:link href="http://www.darianshimy.com/category/everything-else/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.darianshimy.com</link>
	<description></description>
	<lastBuildDate>Sat, 01 Oct 2011 06:06:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>ruby-oci8 library problems</title>
		<link>http://www.darianshimy.com/2011/09/ruby-oci8-library-problems/</link>
		<comments>http://www.darianshimy.com/2011/09/ruby-oci8-library-problems/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 03:25:52 +0000</pubDate>
		<dc:creator>Darian Shimy</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://www.darianshimy.com/?p=550</guid>
		<description><![CDATA[We started using Oracle with a Ruby on Rails 2.3.x project. I will say, it has been nothing but a pain. After getting the Oracle Instant Client installed and the ruby-oci library compiled, I kept hitting this error during the &#8230; <a href="http://www.darianshimy.com/2011/09/ruby-oci8-library-problems/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We started using Oracle with a Ruby on Rails 2.3.x project. I will say, it has been nothing but a pain. After getting the Oracle Instant Client installed and the ruby-oci library compiled, I kept hitting this error during the deployment (BTW: this was on Ubuntu 10.04):</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">ERROR: ActiveRecord oracle_enhanced adapter could not load ruby-oci8 library. Please install ruby-oci8 gem.</pre></div></div>

<p>But it was installed. Testing from irb:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">irb(main):001:0&amp;gt; require 'rubygems'
=&amp;gt; true
irb(main):002:0&amp;gt; require 'oci8'
LoadError: libaio.so.1: cannot open shared object file: No such file or directory - /usr/lib/ruby/gems/1.8/gems/ruby-oci8-2.0.6/lib/oci8lib_18.so
	from /usr/lib/ruby/gems/1.8/gems/ruby-oci8-2.0.6/lib/oci8lib_18.so
	from /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
	from /usr/lib/ruby/gems/1.8/gems/ruby-oci8-2.0.6/lib/oci8.rb:38
	from /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:36:in `gem_original_require'
	from /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:36:in `require'
	from (irb):2
	from :0</pre></div></div>

<p>After some snooping around, I found the libaio library missing. Sigh.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">$ apt-get install libaio-dev</pre></div></div>

<p>Now it works.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darianshimy.com/2011/09/ruby-oci8-library-problems/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Rails 2.3.8 Deprecation Warning</title>
		<link>http://www.darianshimy.com/2010/05/rails-2-3-8-deprecation-warning/</link>
		<comments>http://www.darianshimy.com/2010/05/rails-2-3-8-deprecation-warning/#comments</comments>
		<pubDate>Tue, 25 May 2010 23:00:34 +0000</pubDate>
		<dc:creator>Darian Shimy</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://www.darianshimy.com/?p=476</guid>
		<description><![CDATA[If you happen to come across the following deprecation warning: DEPRECATION WARNING: Giving :session_key to SessionStore is deprecated, please use :key instead. &#40;called from new at /Users/dshimy/.rvm/gems/ruby-1.8.7-p249/gems/actionpack-2.3.8/lib/action_controller/middleware_stack.rb:72&#41; Take a look at your config/environment.rb file for the following: config.action_controller.session = &#123; &#8230; <a href="http://www.darianshimy.com/2010/05/rails-2-3-8-deprecation-warning/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you happen to come across the following deprecation warning:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">DEPRECATION WARNING: Giving :session_key to SessionStore is deprecated, please use :key instead. <span style="color: #7a0874; font-weight: bold;">&#40;</span>called from new at <span style="color: #000000; font-weight: bold;">/</span>Users<span style="color: #000000; font-weight: bold;">/</span>dshimy<span style="color: #000000; font-weight: bold;">/</span>.rvm<span style="color: #000000; font-weight: bold;">/</span>gems<span style="color: #000000; font-weight: bold;">/</span>ruby-1.8.7-p249<span style="color: #000000; font-weight: bold;">/</span>gems<span style="color: #000000; font-weight: bold;">/</span>actionpack-2.3.8<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>action_controller<span style="color: #000000; font-weight: bold;">/</span>middleware_stack.rb:<span style="color: #000000;">72</span><span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

<p>Take a look at your config/environment.rb file for the following:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">config.<span style="color:#9900CC;">action_controller</span>.<span style="color:#9900CC;">session</span> = <span style="color:#006600; font-weight:bold;">&#123;</span>
    <span style="color:#ff3333; font-weight:bold;">:secret_key</span>    <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'_sample_session'</span>,
    <span style="color:#ff3333; font-weight:bold;">:secret</span>        <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'00000000000000000000'</span>
<span style="color:#006600; font-weight:bold;">&#125;</span></pre></div></div>

<p>and change it to:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">config.<span style="color:#9900CC;">action_controller</span>.<span style="color:#9900CC;">session</span> = <span style="color:#006600; font-weight:bold;">&#123;</span>
    <span style="color:#ff3333; font-weight:bold;">:key</span>    <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'_sample_session'</span>,
    <span style="color:#ff3333; font-weight:bold;">:secret</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">'00000000000000000000'</span>
<span style="color:#006600; font-weight:bold;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.darianshimy.com/2010/05/rails-2-3-8-deprecation-warning/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>My DSL is not that slow</title>
		<link>http://www.darianshimy.com/2010/03/my-dsl-is-not-that-slow/</link>
		<comments>http://www.darianshimy.com/2010/03/my-dsl-is-not-that-slow/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 17:24:44 +0000</pubDate>
		<dc:creator>Darian Shimy</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://www.darianshimy.com/?p=472</guid>
		<description><![CDATA[I went to download a file and saw the following estimated download times: Although, DSL and Cable providers have been adding higher speeds to their offerings, isn&#8217;t it time to lump them together into &#8216;broadband.&#8217;]]></description>
			<content:encoded><![CDATA[<p>I went to download a file and saw the following estimated download times:</p>
<p><img class="aligncenter size-full wp-image-473" title="Estimated Download Times" src="http://www.darianshimy.com/wp-content/uploads/2010/03/Screen-shot-2010-03-29-at-10.14.26-AM.png" alt="" width="440" height="125" />Although, DSL and Cable providers have been adding higher speeds to their offerings, isn&#8217;t it time to lump them together into &#8216;broadband.&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darianshimy.com/2010/03/my-dsl-is-not-that-slow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can we ditch the Fax Machine yet?</title>
		<link>http://www.darianshimy.com/2010/03/can-we-ditch-the-fax-machine-yet/</link>
		<comments>http://www.darianshimy.com/2010/03/can-we-ditch-the-fax-machine-yet/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 17:19:53 +0000</pubDate>
		<dc:creator>Darian Shimy</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://www.darianshimy.com/?p=469</guid>
		<description><![CDATA[I recently needed to fax a document to Apple regarding the iPhone.  Here is the comment I added to the fax cover page: You requested information to be sent via an obsolete technology.  Although a fax machine may look nice &#8230; <a href="http://www.darianshimy.com/2010/03/can-we-ditch-the-fax-machine-yet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently needed to fax a document to Apple regarding the iPhone.  Here is the comment I added to the fax cover page:</p>
<blockquote><p>You requested information to be sent via an obsolete technology.   Although a fax machine may look nice next to  your mom’s 8-track collection, you really should consider using  technologies that were developed after the mid-1970’s.  Just a thought.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.darianshimy.com/2010/03/can-we-ditch-the-fax-machine-yet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Banned from Twitter Search</title>
		<link>http://www.darianshimy.com/2009/10/im-banned-from-twitter-search/</link>
		<comments>http://www.darianshimy.com/2009/10/im-banned-from-twitter-search/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 07:22:45 +0000</pubDate>
		<dc:creator>Darian Shimy</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[blacklisted]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.darianshimy.com/?p=455</guid>
		<description><![CDATA[Being in the Social Media Monitoring space, I often need to test certain functionality with Twitter Search.  For my account, this is very difficult.  For some reason, none of my tweets ever show up in Twitter Search.  Have I been &#8230; <a href="http://www.darianshimy.com/2009/10/im-banned-from-twitter-search/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.darianshimy.com/wp-content/uploads/2009/10/twitter_logo_header.png"><img class="alignleft size-full wp-image-456" title="twitter_logo_header" src="http://www.darianshimy.com/wp-content/uploads/2009/10/twitter_logo_header.png" alt="twitter_logo_header" width="155" height="36" /></a>Being in the <a href="http://www.biz360.com">Social Media Monitoring</a> space, I often need to test certain functionality with Twitter Search.  For my <a href="http://twitter.com/dshimy">account</a>, this is very difficult.  For some reason, none of my tweets ever show up in Twitter Search.  Have I been blacklisted?  I know twitter search doesn&#8217;t access all tweets, but I figured it would have seen one of mine.</p>
<p>Well, I am not alone.  Twitter has a help desk article on the subject <a href="http://help.twitter.com/forums/10713/entries/42646">here</a>.  I tried to create a ticket, but it looks like they were hiding the link.  No worries, Rails apps have easy to guess URLS, <a href="http://help.twitter.com/requests/new">http://help.twitter.com/requests/new</a>.</p>
<p>Submitted a ticket, we&#8217;ll see if anything comes from it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darianshimy.com/2009/10/im-banned-from-twitter-search/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ReadWrite Real-Time Web Summit</title>
		<link>http://www.darianshimy.com/2009/10/readwrite-real-time-web-summit/</link>
		<comments>http://www.darianshimy.com/2009/10/readwrite-real-time-web-summit/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 04:43:38 +0000</pubDate>
		<dc:creator>Darian Shimy</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://www.darianshimy.com/?p=441</guid>
		<description><![CDATA[This Thursday I&#8217;ll be at the ReadWrite Real-Time Web Summit in Mountain View, CA.  If anyone else is planning on attending, let me know.]]></description>
			<content:encoded><![CDATA[<p>This Thursday I&#8217;ll be at the <a href="http://www.eventbee.com/view/realtimesummit">ReadWrite Real-Time Web Summit</a> in Mountain View, CA.  If anyone else is planning on attending, let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darianshimy.com/2009/10/readwrite-real-time-web-summit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Apps SLA</title>
		<link>http://www.darianshimy.com/2009/09/google-apps-sla/</link>
		<comments>http://www.darianshimy.com/2009/09/google-apps-sla/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 18:01:35 +0000</pubDate>
		<dc:creator>Darian Shimy</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[customer service]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.darianshimy.com/?p=309</guid>
		<description><![CDATA[Today we received notice from Google that we would be receiving credit for the loss of service earlier in the week. Between 12:45 PM to 2:15 PM PDT &#124; 19:45 &#8211; 21:15 GMT on Tuesday, September 1, 2009, Google Apps &#8230; <a href="http://www.darianshimy.com/2009/09/google-apps-sla/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today we received notice from Google that we would be receiving credit for the loss of service earlier in the week.</p>
<blockquote><p>Between 12:45 PM to 2:15 PM PDT | 19:45 &#8211; 21:15 GMT on Tuesday, September 1, 2009, Google Apps Gmail users were unable to access their accounts through the Gmail web interface. &#8230; As a result of this incident, we are extending a 3-day SLA credit to your account. This credit will be reflected in an automatic 3-day extension to your Google Apps term date, and no action is needed on the part of your administrators.</p></blockquote>
<p>Looks like <a href="http://www.google.com">Google</a> like <a href="http://www.netflix.com">Netflix</a> know how to handle customer service.  If only the second worst <a href="https://www.wireless.att.com">cell phone company</a> would do the same.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darianshimy.com/2009/09/google-apps-sla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No Good News Day</title>
		<link>http://www.darianshimy.com/2009/04/no-good-news-day/</link>
		<comments>http://www.darianshimy.com/2009/04/no-good-news-day/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 03:16:00 +0000</pubDate>
		<dc:creator>Darian Shimy</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://www.darianshimy.com/2009/04/no-good-news-day/</guid>
		<description><![CDATA[I&#8217;m not a marketing, PR or CorpComm guy, but I can say with all the BS news for April Fools, no company in their right mind would release good news today.&#160; However, this would be the best time to release &#8230; <a href="http://www.darianshimy.com/2009/04/no-good-news-day/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not a marketing, PR or CorpComm guy, but I can say with all the BS news for April Fools, no company in their right mind would release good news today.&nbsp; However, this would be the best time to release bad news as it will either be dismissed as an April Fools joke, or be washed out with the other crap clogging my RSS feeder.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darianshimy.com/2009/04/no-good-news-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Handle Negativity in Social Media</title>
		<link>http://www.darianshimy.com/2009/03/how-to-handle-negativity-in-social-media/</link>
		<comments>http://www.darianshimy.com/2009/03/how-to-handle-negativity-in-social-media/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 00:02:00 +0000</pubDate>
		<dc:creator>Darian Shimy</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://www.darianshimy.com/2009/03/how-to-handle-negativity-in-social-media/</guid>
		<description><![CDATA[Quite often I am asked if a company should engage a person who is disparaging their brand or products.  The answer is, &#8220;Absolutely, yes!&#8221;  My response comes in two flavors: If someone wrote something that was not based on factual &#8230; <a href="http://www.darianshimy.com/2009/03/how-to-handle-negativity-in-social-media/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Quite often I am asked if a company should engage a person who is disparaging their brand or products.  The answer is, &#8220;Absolutely, yes!&#8221;  My response comes in two flavors:</p>
<ol>
<li>If someone wrote something that was not based on factual information and drew conclusions based on incorrect data, provide the correct information in a positive light.  Saying something along the lines of, &#8220;Thanks for the post.  I represent XYZ and wanted to give you some information you may not have seen when you wrote your post,&#8221; goes a long way to calm an emotional author while still presenting your side of the issue</li>
<li>If someone is stating a personal opinion, &#8220;Company XYZ sucks,&#8221; reach out to them and try to help them.  They feel that way because they had a bad experience or your product really does suck.  A good response is, &#8220;I&#8217;m sorry to hear you have been having problems with our service, would you mind providing specifics so I might be able to help you?&#8221;  (Notice the out in the previous sentence.)</li>
</ol>
<p>When responding, remember the following:</p>
<ol>
<li>You don&#8217;t need to win every time, but you do need to show up</li>
<li>Don&#8217;t bash the author, that will guarantee a humiliating defeat</li>
<li>People can disagree with you as long as they have the correct information</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.darianshimy.com/2009/03/how-to-handle-negativity-in-social-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m on Friendfeed</title>
		<link>http://www.darianshimy.com/2009/03/im-on-friendfeed/</link>
		<comments>http://www.darianshimy.com/2009/03/im-on-friendfeed/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 00:38:00 +0000</pubDate>
		<dc:creator>Darian Shimy</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[announcements]]></category>

		<guid isPermaLink="false">http://www.darianshimy.com/2009/03/im-on-friendfeed/</guid>
		<description><![CDATA[Actually, I&#8217;ve been on for a while, but have not gotten around to using it.&#160; Feel free to subscribe: http://friendfeed.com/dshimy Thanks!]]></description>
			<content:encoded><![CDATA[<p>Actually, I&#8217;ve been on for a while, but have not gotten around to using it.&nbsp; Feel free to subscribe:</p>
<blockquote><p><a href="http://friendfeed.com/dshimy">http://friendfeed.com/dshimy</a></p></blockquote>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.darianshimy.com/2009/03/im-on-friendfeed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

