<?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>Jamie Starke</title>
	<atom:link href="http://www.jamiestarke.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jamiestarke.com</link>
	<description>PhD student, CHISEL lab, University of Victoria, Canada</description>
	<lastBuildDate>Sat, 28 Jan 2012 23:42:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Fixed: ExecJS RuntimeError and FATAL ERROR: v8::Context::New() when deploying Rails to Shared Hosting</title>
		<link>http://www.jamiestarke.com/2012/01/28/fixed-execjs-runtimeerror-and-fatal-error-v8contextnew-when-deploying-rails-to-shared-hosting/</link>
		<comments>http://www.jamiestarke.com/2012/01/28/fixed-execjs-runtimeerror-and-fatal-error-v8contextnew-when-deploying-rails-to-shared-hosting/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 23:42:08 +0000</pubDate>
		<dc:creator>Jamie Starke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jamiestarke.com/?p=435</guid>
		<description><![CDATA[I&#8217;ve recently been working on setting up a rails app for a site I&#8217;m building for one of my side projects.  While I&#8217;ve mostly been working on this in my spare time, I decided that it would be important, to one day be able to deploy it to a larger audience (like friends and family). &#8230; </p><p><a class="more-link block-button" href="http://www.jamiestarke.com/2012/01/28/fixed-execjs-runtimeerror-and-fatal-error-v8contextnew-when-deploying-rails-to-shared-hosting/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jamiestarke.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-28-at-2.51.40-PM1.png"><img class="alignright size-medium wp-image-437" title="ExecJS::RuntimeError in Home#index" src="http://www.jamiestarke.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-28-at-2.51.40-PM1-300x164.png" alt="" width="300" height="164" /></a>I&#8217;ve recently been working on setting up a rails app for a site I&#8217;m building for one of my side projects.  While I&#8217;ve mostly been working on this in my spare time, I decided that it would be important, to one day be able to deploy it to a larger audience (like friends and family). After trying to get rails set up on my old hosting, and being told that Rails 3 wasn&#8217;t supported. I recently moved to Vexxhost. Two things enticed me: 1) they&#8217;re Canadian; 2) Their hosting is bloody cheap.</p>
<p>So after moving my PHP sites over, I got to work on deploying my currently simple rails app.  And that&#8217;s when I hit a problem.</p>
<h2>The Problem</h2>
<blockquote>
<h1>ExecJS::RuntimeError in Home#index</h1>
<p>Showing <em>/home/jrstarke/apps/___/releases/20120128224905/app/views/layouts/application.html.erb</em> where line <strong>#6</strong> raised:</p>
<pre><code>FATAL ERROR: v8::Context::New() V8 is no longer usable (in /home/jrstarke/apps/___/releases/20120128224905/app/assets/javascripts/charities.js.coffee)</code></pre>
</blockquote>
<p>Now if you&#8217;re finding yourself  in a similar situation, Stop. Take a breath. You&#8217;re not very far.</p>
<p>The reason you are finding this is because Rails is clever. The .erb and .js.coffee files in application are compiled, compressed, and this all happens dynamically. They call this the &#8216;Asset Pipeline&#8217;.</p>
<p>The problem is that if you&#8217;re shared hosting is anything like Vexxhost (and I imagine most that use cpanel are), their servers in their shared hosting are based on efficiency.  This compiling of assets dynamically takes time and resources, and really, once you&#8217;d deployed it to the server, they don&#8217;t usually change much (with the exception of a new version, but then that won&#8217;t change much either until the next version).</p>
<h2>The Solution</h2>
<p>It turns out that the solution isn&#8217;t all that hard, in fact, most of it I found through a great article on the Ruby on Rails site about <a href="http://guides.rubyonrails.org/asset_pipeline.html#in-production">The Asset Pipeline &#8211; In Production Environments</a>.</p>
<p>The trick is that you essentially need to turn off the asset pipeline. During the dynamic compilation on the fly of assets into a more static compilation. Without further ado, to the solution.</p>
<p>First you need to go into your <code>config/application.rb</code> and disable the application pipeline. You will look for the following line:</p>
<p><code>config.assets.enabled = true</code></p>
<p>and turn it to false</p>
<p><code>config.assets.enabled = false</code></p>
<p>Next, next go to your <code>Gemfile</code> and comment out the following 3 lines:</p>
<p><code>gem 'sass-rails', " ~&gt; 3.1.1"<br />
gem 'coffee-rails', "~&gt; 3.1.1"<br />
gem 'uglifier'</code></p>
<p>These are all the changes we need to make, but before we can deploy the application, we need to compile the assets, ourselves.  This is where you will use the following line.</p>
<p><code>bundle exec rake assets:precompile</code></p>
<p>At this point use whatever tool you normally use to deploy your app (in my case, Capistrano). If you&#8217;re using Capistrano, don&#8217;t forget to commit the new assets that would have just been created in your <code>public/assets</code> folder.</p>
<p>Next you&#8217;ll need to log into your cpanel, or whatever actually controls your app, stop and restart it. Even if your deploy tool (like Capistrano) just said it restarted your app, don&#8217;t believe it, just restart it. This part caught me for a few hours trying to fix this bug. Even though Capistrano said it restarted the app, it still seemed to hold onto the old gems (sass and coffee) until I actually restarted.</p>
<p>With any luck, try your app now, and if your system is anything like mine, it will have worked.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamiestarke.com/2012/01/28/fixed-execjs-runtimeerror-and-fatal-error-v8contextnew-when-deploying-rails-to-shared-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacBook Pro unable to connect to internet after waking from sleep</title>
		<link>http://www.jamiestarke.com/2012/01/22/macbook-pro-unable-to-connect-to-internet-after-waking-from-sleep/</link>
		<comments>http://www.jamiestarke.com/2012/01/22/macbook-pro-unable-to-connect-to-internet-after-waking-from-sleep/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 05:59:26 +0000</pubDate>
		<dc:creator>Jamie Starke</dc:creator>
				<category><![CDATA[Other Articles]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[DIR-655]]></category>
		<category><![CDATA[MacBook Pro]]></category>

		<guid isPermaLink="false">http://www.jamiestarke.com/?p=426</guid>
		<description><![CDATA[The Problem I recently I&#8217;ve been having some problems with my MacBook Pro.  At first, I would seem to get disconnected from the internet randomly.  After a few weeks, I finally figured out what the pattern was to the problem. One morning sat down on the couch, opened my MacBook, and as was becoming normal, &#8230; </p><p><a class="more-link block-button" href="http://www.jamiestarke.com/2012/01/22/macbook-pro-unable-to-connect-to-internet-after-waking-from-sleep/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-428" title="Screen Shot 2012-01-22 at 9.41.26 PM" src="http://www.jamiestarke.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-22-at-9.41.26-PM-300x197.png" alt="" width="300" height="197" /></p>
<h3>The Problem</h3>
<p>I recently I&#8217;ve been having some problems with my MacBook Pro.  At first, I would seem to get disconnected from the internet randomly.  After a few weeks, I finally figured out what the pattern was to the problem.</p>
<p>One morning sat down on the couch, opened my MacBook, and as was becoming normal, I was unable to connect to the internet. The AirPort icon on the menu bar was fully black (meaning that the signal was good).</p>
<p>So I went into the browser and tried to to the router address.  To my surprise, I could fully connect to router. I mean fully. I could log in. I could change the settings. I could ping different websites. It all worked flawlessly. But as soon as I went back to my browser and attempted to connect to a website, any browser, it would complain that I wasn&#8217;t connected to the internet.</p>
<p>I would turn off the Wi-Fi a few times, and eventually it would connect fully. So then an idea came to me: Maybe it was related to the fact that I just woke it from sleep. I thought back. Every time I could remember, I had just opened the computer, and it would have difficulty connecting.</p>
<p>So I tried it. I made sure I could access different websites. All signs were a go. Then I closed the lid, and waited for the status light to start flashing. After it did, I would wait a few seconds, and then open the lid. I logged in, opened Chrome, and tried gmail. Gmail is currently unavailable it would tell me. So I opened Safari, and tried again. Same story. After going to the AirPort icon turning it off and on a few times, it came back. I decided to try it again. Sure enough same story. So I tried it a few more times.</p>
<p>After having successfully reproduced this exact approach 6 times, I decided it was time to call Apple. I talked to a rep one day, who walked me through a few steps, that failed to get any results, and before we could go through everything, I had to leave for a meeting. I called back a few days later, and got a Wonderful rep. named Ryan. After 17 minutes on the phone, my problem was solved. I was ecstatic.</p>
<h3>The Solution</h3>
<p>So the solution to the problem was actually pretty simple. I post it here, so that it might help others (or me if the problem recurs sometime). Remember to back up before hand, as it is possible that you might lose something.</p>
<p>I would also recommend storing your Wi-Fi password on your computer (especially if your password is as complex as mine is).</p>
<p>Here&#8217;s what worked for me:</p>
<ol>
<li>Open Finder.</li>
<li>From the Menu at the top, choose &#8216;Go&#8217; -&gt; &#8216;Computer&#8217;.</li>
<li>Open your hard drive (probably called &#8216;Macintosh HD&#8217;).</li>
<li>Open the &#8216;Library&#8217; folder.</li>
<li>Open the &#8216;Preferences&#8217; folder.</li>
<li>Locate the &#8216;SystemConfiguration&#8217; folder (likely at the bottom).</li>
<li>Drag this folder to your desktop (as far as I can tell, this is to back it up incase something goes wrong)</li>
<li>Once the copy is complete, drag the original to the trash.</li>
<li>In Finder, open Applications (If you don&#8217;t have it on the sideback, use &#8216;Go&#8217; -&gt; &#8216;Applications&#8217;).</li>
<li>Open the &#8216;Utilities&#8217; folder.</li>
<li>Open &#8216;Keychain Access&#8217;.</li>
<li>Select &#8216;login&#8217; from the list of Keychains.</li>
<li>In the list to the right, locate an object with the name of your wireless network.</li>
<li>Select it and press &#8216;delete&#8217; on your keyboard.</li>
<li>Select &#8216;System&#8217; from the list of Keychains.</li>
<li>Repeat steps 13 and 14 above.</li>
<li>Restart your MacBook.</li>
<li>Once your computer has restarted, connect to your wireless network.</li>
</ol>
<p>With any luck your computer will now no longer have issues with your wireless network. This worked perfectly with my D-Link DIR-655 router, on which I could reproduce the wireless network issues flawlessly. Since I performed the steps above, my wireless connection has worked flawlessly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamiestarke.com/2012/01/22/macbook-pro-unable-to-connect-to-internet-after-waking-from-sleep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best software for On-line Communities?</title>
		<link>http://www.jamiestarke.com/2011/12/01/best-software-for-on-line-communities/</link>
		<comments>http://www.jamiestarke.com/2011/12/01/best-software-for-on-line-communities/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 03:23:38 +0000</pubDate>
		<dc:creator>Jamie Starke</dc:creator>
				<category><![CDATA[Other Articles]]></category>
		<category><![CDATA[graduate student association]]></category>
		<category><![CDATA[online community software]]></category>

		<guid isPermaLink="false">http://www.jamiestarke.com/?p=419</guid>
		<description><![CDATA[I&#8217;m Looking for advice as to what the best software is for creating online communities. I&#8217;m currently trying to set up a Graduate Students&#8217; Association in my Computer Science department at the University of Victoria. After talking to a number of Graduate students in my department about what they think would be useful to them, &#8230; </p><p><a class="more-link block-button" href="http://www.jamiestarke.com/2011/12/01/best-software-for-on-line-communities/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m Looking for advice as to what the best software is for creating online communities.</p>
<p>I&#8217;m currently trying to set up a Graduate Students&#8217; Association in my Computer Science department at the University of Victoria.</p>
<p>After talking to a number of Graduate students in my department about what they think would be useful to them, I received a number of great suggestions. Based on the suggestions, I came up with 3 features that I think would be useful:</p>
<ul>
<li>A Blog: Which will allow the Grad. Association to keep grad students informed about important upcoming events.</li>
<li>A Forum or discussion board: Will allow grad. students to discuss whatever they feel is important to them or their work.</li>
<li>A Wiki: This will allow grad. students to easily create useful resources for other grad students.</li>
</ul>
<p>There are many possible choices, but it all seems to come down to trade-offs.</p>
<h2>As A Service or Host your own</h2>
<p>There are two major options for hosting the community. You can either choose to use an As a Service model, where someone else manages the infrastructure, or the Host your own, where you take the software and run it on an infrastructure you control.</p>
<p>The obvious trade off here is Control for maintenance and cost. By going with an as a service, you will decrease costs, and maintenance, but you also decrease your control. By hosting your own, you increase the three.</p>
<p>In the maintenance category, I would like to reduce as much maintenance as possible, as this will likely be run by busy grad students. At the same time though, if we lose all control, we are completely at the liberty of the service to decide what we can do, and how long we can keep it up.</p>
<h2>Separate Services or an All-in-one</h2>
<p>Again, it is possible that we can use a number of different systems (such as a blog system, a forum and a wiki), or we can find a system that does all three.</p>
<p>In this case we have a trade off between consistency and maintenance versus precision. Of course, if you use 3 systems, you have to deal with maintaining 3 systems, and if you have 3 systems, it is unlikely that the three systems can be consistent.</p>
<p>In the precision category though, any one system will likely be good at a small number of features, and will be less good a others. So by going three systems, they&#8217;ll likely be better at the particular thing they do.</p>
<p>For this, I&#8217;d like to make the ease of use as easy as possible. If it is really hard for the users to go from one aspect to the other, like the discusion forum to the wiki or the blog, they are less likely to do it, unless it is absolutely necessary. If it&#8217;s not possible to link to the other systems consistently, this will be particularly hard.</p>
<h2>Community Advice</h2>
<p>I&#8217;ve use WordPress for blogs before, and they work pretty well. I&#8217;ve also considered CMS systems like TikiWiki, but it appears to be particularly buggy. I&#8217;ve also used Drupal, and it&#8217;s particularly bad for maintenance (which makes me die a little inside).</p>
<p>So this is where I look for advice from the community. <strong>What software can you recommend?</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamiestarke.com/2011/12/01/best-software-for-on-line-communities/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to collect a Network Log for Google Chrome</title>
		<link>http://www.jamiestarke.com/2011/09/08/how-to-collect-a-network-log-for-google-chrome/</link>
		<comments>http://www.jamiestarke.com/2011/09/08/how-to-collect-a-network-log-for-google-chrome/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 03:15:31 +0000</pubDate>
		<dc:creator>Jamie Starke</dc:creator>
				<category><![CDATA[Other Articles]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Chrome]]></category>

		<guid isPermaLink="false">http://www.jamiestarke.com/?p=367</guid>
		<description><![CDATA[Are you having some weird networking problems and want to report a bug to Google Chrome? The most helpful thing you can do to speed up the process is get a network log so that the Chromium team can have a better chance at diagnosing the problem. In this tutorial, we will walk you through &#8230; </p><p><a class="more-link block-button" href="http://www.jamiestarke.com/2011/09/08/how-to-collect-a-network-log-for-google-chrome/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jamiestarke.com/wp-content/uploads/2011/09/chrome-dump.png"><img class="alignright size-medium wp-image-375" title="chrome dump" src="http://www.jamiestarke.com/wp-content/uploads/2011/09/chrome-dump-300x182.png" alt="" width="300" height="182" /></a>Are you having some weird networking problems and want to report a bug to Google Chrome? The most helpful thing you can do to speed up the process is get a network log so that the Chromium team can have a better chance at diagnosing the problem.</p>
<p>In this tutorial, we will walk you through how to collect a Chrome Net-Internals log, and a WireShark Capture.</p>
<p><strong>Pre-requisites:</strong></p>
<ul>
<li>Google Chrome</li>
<li>Wireshark (<a title="Wireshark Download" href="http://www.wireshark.org/download.html" target="_blank">Download</a>)</li>
</ul>
<h3><strong>What is Wireshark?</strong></h3>
<p>Wireshark is a tool for collecting network traffic.  This will allow the Chrome team to get a better idea of what might be causing the network issues.</p>
<h3><strong>Reduce Background Noise</strong></h3>
<p>Before attempting to make a network log, it is important to try to reduce the background noise.  Normally our computers have a number of programs running in the background, many of which are connecting to external sources.  To give yourself the best chance for success, turn off all unnecessary programs, for the duration of the log.  After you finish, feel free to turn everything back on.</p>
<h3><strong>Collecting the Logs</strong></h3>
<p>To collect your network logs, perform the following steps:</p>
<ol>
<li>Close Google Chrome and all it&#8217;s windows</li>
<li>Restart Google Chrome (if it isn&#8217;t already open)</li>
<li>Open the Net-internals page in a new window or tab (make sure to leave this open) using the following address:
<pre>about:net-internals</pre>
</li>
<li>Open Wireshark</li>
<ol>
<li>From the <em>Capture</em> menu, select <em>Interfaces</em></li>
<li>Find <a style="color: #ff4b33;" href="http://www.jamiestarke.com/wp-content/uploads/2011/09/Wireshark-Capture.png"><img class="size-medium wp-image-373 alignright" style="border-style: initial; border-color: initial;" title="Wireshark Capture" src="http://www.jamiestarke.com/wp-content/uploads/2011/09/Wireshark-Capture-300x76.png" alt="" width="300" height="76" /></a>the Description describing your network interface (It will likely have the growing number next to it). Press the <em>Start</em> button to the right of this connection</li>
</ol>
<li>Return to Google Chrome</li>
<li>Open a new tab or window and perform whatever operation you want to log (For example, go to gmail.com if you want to demonstrate a slow loading behaviour). Continue until you feel you have a sufficient sample (in the case that it never completes)</li>
<li>Open the net-internals page you left open.</li>
<ol>
<li>Under <em>Dump data</em> press the <em>Dump to file</em> button</li>
<li>This log will be downloaded to your downloads folder</li>
</ol>
<li>Go to Wireshark</li>
<ol>
<li>From the <em>Capture</em> menu, select <em>Stop</em></li>
<li>From the <em>File</em> menu, select <em>Save As&#8230;</em></li>
<li>Enter a descriptive File name (for example &#8216;gmail-capture&#8217;) and for convenience, save it to a location you will remember (such as &#8220;My Documents&#8221;)</li>
</ol>
</ol>
<p>You will now have both a Google Chrome net-internals log, and a wireshark log. Make sure to keep track of where you saved them, and when appropriate, attach them to the bug report.</p>
<p>If you have any questions about this tutorial, please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamiestarke.com/2011/09/08/how-to-collect-a-network-log-for-google-chrome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Are Google&#8217;s Services Running Slow in Chrome? Try Disabling Spdy</title>
		<link>http://www.jamiestarke.com/2011/09/02/are-googles-services-running-slow-in-chrome-try-disabling-spdy/</link>
		<comments>http://www.jamiestarke.com/2011/09/02/are-googles-services-running-slow-in-chrome-try-disabling-spdy/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 20:51:00 +0000</pubDate>
		<dc:creator>Jamie Starke</dc:creator>
				<category><![CDATA[Other Articles]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Chrome]]></category>

		<guid isPermaLink="false">http://www.jamiestarke.com/?p=347</guid>
		<description><![CDATA[Update:&#160;After further testing, the issue seems to be with the NSS-SSL library, rather than SPDY, however the steps below will still likely resolve your speed issues. Update #2:&#160;I am no longer having this issue. It appears to be some odd interplay between the NSS-SSL protocol in Chrome/Firefox and the Traffic shaper at my University, that &#8230; </p><p><a class="more-link block-button" href="http://www.jamiestarke.com/2011/09/02/are-googles-services-running-slow-in-chrome-try-disabling-spdy/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jamiestarke.com/wp-content/uploads/2011/09/chrome1.png" data-mce-href="http://www.jamiestarke.com/wp-content/uploads/2011/09/chrome1.png"><img class="alignright size-medium wp-image-357" title="Loading Chrome" src="http://www.jamiestarke.com/wp-content/uploads/2011/09/chrome1-300x204.png" alt="" width="300" height="204" data-mce-src="http://www.jamiestarke.com/wp-content/uploads/2011/09/chrome1-300x204.png"></a></p>
<p><strong>Update:</strong>&nbsp;After further testing, the issue seems to be with the NSS-SSL library, rather than SPDY, however the steps below will still likely resolve your speed issues.</p>
<p><strong>Update #2:</strong>&nbsp;I am no longer having this issue. It appears to be some odd interplay between the NSS-SSL protocol in Chrome/Firefox and the Traffic shaper at my University, that has since been reconfigured. This means that it is now more important than ever that if you&#8217;re experiencing this issue, to <a title="Issue 69813:	Very slow connection to gmail" href="http://code.google.com/p/chromium/issues/detail?id=69813" target="_blank" data-mce-href="http://code.google.com/p/chromium/issues/detail?id=69813">report it to the Google Chrome team</a>.</p>
<p>Are you trying to connect to your Gmail, and it seems to take forever to connect? What about Google Docs? Google Plus? All of the above? It might not be Chrome that is the problem, but actually Google&#8217;s SPDY protocol behind the scenes.</p>
<p>So what is SPDY? It is a protocol that Google uses, where it keeps a single persistent connection to Google for all of your Google Accounts information. This is utilized by a number of Google Services, including Gmail, Google Docs, and most recently Google Plus. When this is working properly, it allows Google to do what Google does best: Speeding up the web. However, when it fails, it will bring down your Google world, in a thunder of Loading icons.</p>
<h3><strong>It it Google Chrome?</strong></h3>
<p>The most important first step is it make sure that the problem is actually Google Chrome. To do this, try a different web browser, such as Internet Explorer if you&#8217;re on Windows, or Safari if you&#8217;re on a Mac.</p>
<p>If you tried a different web browser and the problem still happens, then it is likely due to a different problem, such as a slow internet connection. If however&nbsp;tried the same thing in a different web browser, and it worked fine, then it is probably Google Chrome.</p>
<p><a title="Issue 69813:	Very slow connection to gmail" href="http://code.google.com/p/chromium/issues/detail?id=69813" target="_blank" data-mce-href="http://code.google.com/p/chromium/issues/detail?id=69813">Google knows about this issue</a> (I know, because helped provide information for one of the bug reports), but so far they haven&#8217;t narrowed it down.</p>
<h3><strong>Collect a log</strong></h3>
<p>If you are finding that you have a problem like this, then it might be useful to provide some details to the Chrome team so that they can hopefully make it better. &nbsp;At this stage, this is <strong>optional</strong>, but <strong>highly encouraged</strong>. &nbsp;This will be your best bet at getting any Google Chrome issues resolved though in the long run. &nbsp;If you are willing to collect a log, you can do so by following my tutorial <a href="http://www.jamiestarke.com/2011/09/08/how-to-collect-a-network-log-for-google-chrome/" target="_blank" data-mce-href="http://www.jamiestarke.com/2011/09/08/how-to-collect-a-network-log-for-google-chrome/">How to collect a Network Log for Google Chrome</a>.</p>
<h3><strong>The Fix</strong></h3>
<p>Disclaimer: This fix is only temporary, and your best bet is to <a href="http://code.google.com/p/chromium/issues/detail?id=69813" target="_blank" data-mce-href="http://code.google.com/p/chromium/issues/detail?id=69813">comment on the open Google Chrome Issue for this phenomena</a>.</p>
<p>The good news is that there is a solution you can use for the problem (<strong>although it is temporary</strong>, as I will cover after). This wasn&#8217;t discovered by me, but rather one of my colleagues (<a href="http://www.ctreude.ca/" data-mce-href="http://www.ctreude.ca/">Christoph Treude</a>). Essentially what you have to do is disable spdy and Chrome&#8217;s enhanced SSL, which can be done using the following steps:</p>
<h4>Windows</h4>
<ul>
<li>Right click on the short-cut you&#8217;re using to start Chrome</li>
<li>Select Properties</li>
<li>Modify Target from</li>
<ul>
<li>
<pre>...\chrome.exe"</pre>
<p>into</p>
</li>
<li>
<pre>...\chrome.exe" --use-spdy=off --use-system-ssl</pre>
<p>(note: the command line arguments have to go after the quotation marks)</p>
</li>
</ul>
<li>Click Apply</li>
<li>Close all Chrome windows</li>
<li>Restart Chrome</li>
</ul>
<h4>Mac</h4>
<ul>
<li>Open the terminal (In your Applications -&gt; Utilities folder)</li>
<li>Type into terminal to change to Chrome&#8217;s Directory using:
<pre>cd /Applications/Google\ Chrome.app/Contents/MacOS</pre>
</li>
<li>Rename Google Chrome to Chrome in the terminal:
<pre>mv Google\ Chrome Chrome</pre>
</li>
<li>Copy the following 3 lines for the contents of our execution script:
<pre>#!/bin/sh
# This will execute your Google Chrome with SPDY disabled, and set it to use your System SSL
/Applications/Google\ Chrome.app/Contents/MacOS/Chrome --use-spdy=off --use-system-ssl</pre>
</li>
<li><strong>Type&nbsp;</strong>the following into the Terminal to make a file from what you just copied:
<pre>pbpaste &gt; Google\ Chrome</pre>
</li>
<li>Type the following into the terminal to it so our new Google Chrome can run:
<pre>chmod +x Google\ Chrome</pre>
</li>
<li>Close Google Chrome using the Apple menu, or Command-Q:</li>
<li>Restart Google Chrome</li>
</ul>
<p><strong>If you had this problem and this solution worked for you</strong>, I would recommend you add your voice to the <a title="Issue 69813:	Very slow connection to gmail" href="http://code.google.com/p/chromium/issues/detail?id=69813" target="_blank" data-mce-href="http://code.google.com/p/chromium/issues/detail?id=69813">discussion on the bug,</a> as during my last correspondence, they suggested that this might be a problem localized to my network (which it might, but I suspect it isn&#8217;t). This solution is only temporary, as if you end up creating a new shortcut somewhere, or you update Google Chrome, you will likely have to redo the fix, or the problem may come back.</p>
<h3><strong>Collect a Log (If you didn&#8217;t above)</strong></h3>
<p>If you found this solution worked for you, but you didn&#8217;t collect a log above, perhaps now would be a good time to do so. &nbsp;However, first we will have to disable the fix above (as the problem will not exhibit itself while the fix is in place). Don&#8217;t worry, once you have your log, you can easily turn it back on using the steps above.</p>
<h4>Disable fix on Windows</h4>
<ul>
<li>Right click on the short-cut you&#8217;re using to start Chrome</li>
<li>Select Properties</li>
<li>Modify Target from</li>
<ul>
<li>
<pre>...\chrome.exe" --use-spdy=off --use-system-ssl</pre>
<p>into</p>
</li>
<li>
<pre>...\chrome.exe"</pre>
</li>
</ul>
<li>Click Apply</li>
<li>Close all Chrome windows</li>
<li>Restart Chrome</li>
</ul>
<h4>Disable Fix on Mac</h4>
<ul>
<li>Open the terminal (In your Applications -&gt; Utilities folder)</li>
<li>Type into terminal to change to Chrome&#8217;s Directory using:
<pre>cd /Applications/Google\ Chrome.app/Contents/MacOS</pre>
</li>
<li>Rename Chrome back to Google Chrome in the terminal:
<pre>mv Chrome Google\ Chrome</pre>
</li>
<li>Close Google Chrome using the Apple menu, or Command-Q:</li>
<li>Restart Google Chrome</li>
</ul>
<h4>Collecting the Log on Both</h4>
<p>So you&#8217;ve decided to help out? I&#8217;m glad, this will increase both of our chances at having this resolved. &nbsp;As I mentioned above, you can collect your Network Log by by following my tutorial&nbsp;<a href="http://www.jamiestarke.com/2011/09/08/how-to-collect-a-network-log-for-google-chrome/" target="_blank" data-mce-href="http://www.jamiestarke.com/2011/09/08/how-to-collect-a-network-log-for-google-chrome/">How to collect a Network Log for Google Chrome</a>.</p>
<h3><strong>Submit to the Issue</strong></h3>
<p>If you found that this worked for you, you&#8217;re not alone, but unfortunately, as I mentioned above, this solution is only temporary, and you will likely need to redo it the next time you update Google Chrome, or change your shortcuts. &nbsp;So perhaps now would be a good time to help Google Chrome find a long term solution. &nbsp;&nbsp;There is already an open issue for Google Chrome about this phenomena, and you can easily <a href="http://code.google.com/p/chromium/issues/detail?id=69813#makechanges" target="_blank" data-mce-href="http://code.google.com/p/chromium/issues/detail?id=69813#makechanges">submit your information to that issue</a>. &nbsp;If you need help doing so, let me know, but the Network Logs mentioned above would be highly beneficial to this process.</p>
<h3><strong>Could this be better?</strong></h3>
<p>So what do I think would be a better solution? For the most part, the average user doesn&#8217;t even know what Google Chrome is doing behind the scenes.</p>
<p>The solution above would work, but it isn&#8217;t exactly, user friendly. I suggested that in a case like this, perhaps after a few seconds of attempting to connect with SPDY (Google themselves have suggested that <a title="Using site speed in web search ranking" href="http://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html" target="_blank" data-mce-href="http://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html">users spend less time at slow pages</a>), and not getting any data (which Will Chan said was the case in my case), maybe it would be a good opportunity to say to the user that it&#8217;s failing to connect with one method, and to attempt connecting with another.</p>
<p>In this case, the system could try something like the solution above does, disable spdy and ssl, and try then. Sure it&#8217;s not a perfect solution, but unless you have to do something explicitly in Chrome (which few people do), this would probably stop you from Switching to an alternative browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamiestarke.com/2011/09/02/are-googles-services-running-slow-in-chrome-try-disabling-spdy/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>In search of a New Side Project</title>
		<link>http://www.jamiestarke.com/2011/08/28/in-search-of-a-new-side-project/</link>
		<comments>http://www.jamiestarke.com/2011/08/28/in-search-of-a-new-side-project/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 20:52:48 +0000</pubDate>
		<dc:creator>Jamie Starke</dc:creator>
				<category><![CDATA[Other Articles]]></category>
		<category><![CDATA[Side Project]]></category>

		<guid isPermaLink="false">http://www.jamiestarke.com/2011/08/28/in-search-of-a-new-side-project/</guid>
		<description><![CDATA[So last weekend, I wrote on Google Plus about how I was looking for a new side project. Although I still haven&#8217;t decided on one, I did decide that as I find one, it might be fun to document the journey and the lessons learned. Lesson one: Finding a side project is hard. You always &#8230; </p><p><a class="more-link block-button" href="http://www.jamiestarke.com/2011/08/28/in-search-of-a-new-side-project/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>So last weekend, I wrote on Google Plus about how I was looking for a new side project. Although I still haven&#8217;t decided on one, I did decide that as I find one, it might be fun to document the journey and the lessons learned.  </p>
<p>Lesson one: <strong>Finding a side project is hard</strong>.  </p>
<p>You always want to have something that is going to be meaningful, and perhaps even help people (it&#8217;s always easy to minimally do something that helps yourself, until you actively try to do this, then it&#8217;s next to impossible to notice any problems you are actually finding.</p>
<p>What I&#8217;ve figured out so far:</p>
<ul>
<li>Probably something&#8217;s technology based.
<ul>
<li>It&#8217;s something I&#8217;m skilled at, so I might as well utilize that right?</li>
</ul>
</li>
<li>Not necessarily software engineering based.</li>
<li>I&#8217;d like to do something that can help someone.</li>
<li>Having kids does not apply. I just don&#8217;t feel like I&#8217;m ready for kids yet.</li>
<li>I would be eager to incorporate some new technologies, if they apply, just for the experience:
<ul>
<li>iOS</li>
<li>HTML5</li>
<li>Windows Phone</li>
<li>Android</li>
</ul>
</li>
<li>Although I enjoy the odd game, I am not a game designer, and would prefer something that helps with productivity, although I am open to suggestions.</li>
<li>I have both Windows and Mac machines at my disposal, as well as an iPhone and iPad.</li>
<li>Money is a bonus, not the goal.
<ul>
<li>I&#8217;ve run a small tech support business before. The money was decent, but it was rarely rewarding.</li>
<li>Previous side projects that I enjoyed were creating websites, and web based tools (like <a href="http://tweet-seeker.appspot.com/">TweetSeeker</a>) although I never really made any money off them. TweetSeeker was a work in progress related to a research project that got shelved. Since then, as no one else seems to use it, I just can&#8217;t get motivated to advance it.</li>
</ul>
</li>
<li>This is to be thought of as a 20% time project (mostly Saturdays, or slow Sundays)</li>
</ul>
<p>So if anyone else has some ideas, or questions that might help me narrow it down, I&#8217;d love the feedback. Comments, or emails are greatly appreciated.</p>
<p>As I mentioned before, I&#8217;ll write about the side project as it unfolds, and I&#8217;ll tag it as &#8220;Side Project&#8221; for easy finding.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamiestarke.com/2011/08/28/in-search-of-a-new-side-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google+ should have Share defaults at the Circle level</title>
		<link>http://www.jamiestarke.com/2011/07/01/google-should-have-share-defaults-at-the-circle-level/</link>
		<comments>http://www.jamiestarke.com/2011/07/01/google-should-have-share-defaults-at-the-circle-level/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 21:57:47 +0000</pubDate>
		<dc:creator>Jamie Starke</dc:creator>
				<category><![CDATA[Other Articles]]></category>
		<category><![CDATA[Circles]]></category>
		<category><![CDATA[Google Plus]]></category>
		<category><![CDATA[Sharing]]></category>

		<guid isPermaLink="false">http://www.jamiestarke.com/?p=326</guid>
		<description><![CDATA[Earlier this week, I heard about Googles latest social offering. After checking out all the videos and information about the Google+ Project online, I was eager to hop in and try it out. I quickly put my name in for an invite, and the. I waited. And when I got tired of waiting (a few &#8230; </p><p><a class="more-link block-button" href="http://www.jamiestarke.com/2011/07/01/google-should-have-share-defaults-at-the-circle-level/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>Earlier this week, I heard about Googles latest social offering. After checking out all the videos and information about the Google+ Project online, I was eager to hop in and try it out. I quickly put my name in for an invite, and the. I waited. And when I got tired of waiting (a few hours, pretty sad), I started looking for people that had invites.  I think it was the next day that I found a friend on Facebook had some, and I quickly leaped at the opportunity.</p>
<p>For the last few days, I&#8217;ve been using Google+, and I can quickly see the potential for this to become my member one social network. Hangouts are pretty awesome, and though I&#8217;ve only used this a little, I could see the potential for this to replace Skype plus.  One of the biggest sells to be though was the ability to select groups of friend with whom I could share content. This made some much sense to me, that it wasn&#8217;t until this morning that I found a problem with it.</p>
<p>It wasn&#8217;t a huge problem, it just caught me a little off guard at first. When you first post some content on Google+ you select a group that you want to share it with.  For example my wife shared a few photos from a recent trip that we took.  I thought these were pretty cool, and I might want to share them with my colleagues. To my surprise, I did. It was kind of odd really, it seemed clearly like a bug.  But after checking the help dialogs, I found that this was in fact intentional. You could on the other hand disable sharing on a post by post basis.</p>
<p>A friend of mine brought up a good point.  Enough if you were to disable the ability to share a post, picture or otherwise, they could just as easily screenshot it and share the screenshot, or just telling others what you said.</p>
<p>This is where I believe the basis of any true trustworthy sharing should come in.</p>
<blockquote><p>You should never share anything with someone who, knowing your wishes, you can not trust to abstain from sharing beyond those wishes.</p></blockquote>
<p>But what if someone didn&#8217;t know it wasn&#8217;t ok to share with others? Can they really be to blame?  Of course not. Although we can all believe in common sense, there are situations where a user might feel that certain content is worth sharing, but doesn&#8217;t realize this is ok. But setting every post to disable sharing can be very tedious.</p>
<p>But what if there were a better way? You probably have social circles which which you would be more comfortable sharing more personal details than you would with other groups. These personal details you likely wouldnt want being shared. So why not be able to set the sharing defaults based on your circles?</p>
<p>Although it can&#8217;t replace the trust rule above, it can augment it. The sharing link would then act as a flag or a signal to your circles. Share link is there would mean &#8220;feel free to share this&#8221;, and no share link would imply &#8220;please respect my wishes and not share this&#8221;.</p>
<p>This is just my idea for what could make Circles on Google+ even more useful, but I would love feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamiestarke.com/2011/07/01/google-should-have-share-defaults-at-the-circle-level/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Towards Understanding Twitter Use in Software Engineering: Preliminary Findings Ongoing Challenges and Future Questions</title>
		<link>http://www.jamiestarke.com/2011/03/21/towards-understanding-twitter-use-in-software-engineering-preliminary-findings-ongoing-challenges-and-future-questions/</link>
		<comments>http://www.jamiestarke.com/2011/03/21/towards-understanding-twitter-use-in-software-engineering-preliminary-findings-ongoing-challenges-and-future-questions/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 15:37:42 +0000</pubDate>
		<dc:creator>Jamie Starke</dc:creator>
				<category><![CDATA[Workshop Papers]]></category>

		<guid isPermaLink="false">http://www.jamiestarke.com/?p=287</guid>
		<description><![CDATA[Gargi Bougie, Jamie Starke, Margaret-Anne Storey and Daniel German. In Proceedings of the 2nd International Workshop on Web 2.0 for Software Engineering. 2011. PDF of the Paper &#124; DOI Link &#124; ACM Link © ACM, 2011. This is the author&#8217;s version of the work. It is posted here by permission of ACM for your personal use. &#8230; </p><p><a class="more-link block-button" href="http://www.jamiestarke.com/2011/03/21/towards-understanding-twitter-use-in-software-engineering-preliminary-findings-ongoing-challenges-and-future-questions/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>Gargi Bougie, Jamie Starke, Margaret-Anne Storey and Daniel German. In Proceedings of the 2nd International Workshop on Web 2.0 for Software Engineering. 2011. <a href="http://www.jamiestarke.com/wp-content/uploads/2011/03/WEB2SE2011.pdf">PDF of the Paper</a> | <a href="http://dx.doi.org/10.1145/1984701.1984707">DOI Link</a> | <a href="http://dl.acm.org/authorize?414148">ACM Link</a><br />
<span style="font-size: xx-small;">© ACM, 2011. This is the author&#8217;s version of the work. It is posted here by permission of ACM for your personal use. Not for redistribution. To appear in Proceedings of the 2nd International Workshop on Web 2.0 for Software Engineering</span></p>
<p><span id="more-287"></span>There has been some research conducted around the motivation for the use of Twitter and the value brought by micro-blogging tools to individuals and business environments. This paper builds on our understanding of how the phenomenon affects the population which birthed the technology: Software Engineers. We find that the Software Engineering community extensively leverages Twitter&#8217;s capabilities for conversation and information sharing and that use of the tool is notably different between distinct Software Engineering groups. Our work exposes topics for future research and outlines some of the challenges in exploring this type of data.</p>
<p><a rel="nofollow" href="http://www.wordle.net/">http://www.wordle.net/</a> overview of the paper:</p>
<p><a href="http://www.jamiestarke.com/wp-content/uploads/2011/03/Screen-shot-2011-03-21-at-8.34.39-AM.png"><img class="alignleft size-medium wp-image-293" title="Screen shot 2011-03-21 at 8.34.39 AM" src="http://www.jamiestarke.com/wp-content/uploads/2011/03/Screen-shot-2011-03-21-at-8.34.39-AM-300x151.png" alt="" width="300" height="151" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamiestarke.com/2011/03/21/towards-understanding-twitter-use-in-software-engineering-preliminary-findings-ongoing-challenges-and-future-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TweetSeeker</title>
		<link>http://www.jamiestarke.com/2011/02/24/tweetseeker/</link>
		<comments>http://www.jamiestarke.com/2011/02/24/tweetseeker/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 05:04:59 +0000</pubDate>
		<dc:creator>Jamie Starke</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.jamiestarke.com/?p=271</guid>
		<description><![CDATA[2011 TweetSeeker is a web-based tool for exploring Twitter users status updates.TweetSeeker is currently available online at tweet-seeker.appspot.com. Tweet seeker allows users to refine the tweets that they&#8217;re interested in for a specific user. Currently, queries are able to be refined by date ranges, but I tope to ad many more in the future.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jamiestarke.com/wp-content/uploads/2011/02/Screen-shot-2011-02-23-at-9.01.00-PM.png"><img class="alignleft size-medium wp-image-272" title="Screen shot of TweetSeeker" src="http://www.jamiestarke.com/wp-content/uploads/2011/02/Screen-shot-2011-02-23-at-9.01.00-PM-300x166.png" alt="" width="300" height="166" /></a>2011</p>
<p>TweetSeeker is a web-based tool for exploring Twitter users status updates.<span id="more-271"></span>TweetSeeker is currently available online at <a href="http://tweet-seeker.appspot.com/" target="_blank">tweet-seeker.appspot.com</a>.</p>
<p>Tweet seeker allows users to refine the tweets that they&#8217;re interested in for a specific user. Currently, queries are able to be refined by date ranges, but I tope to ad many more in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamiestarke.com/2011/02/24/tweetseeker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Out with Drupal, In with WordPress</title>
		<link>http://www.jamiestarke.com/2011/01/31/out-with-drupal-in-with-wordpress/</link>
		<comments>http://www.jamiestarke.com/2011/01/31/out-with-drupal-in-with-wordpress/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 02:13:14 +0000</pubDate>
		<dc:creator>Jamie Starke</dc:creator>
				<category><![CDATA[Other Articles]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jamiestarke.com/?p=267</guid>
		<description><![CDATA[For anyone that checks my site regularly, I&#8217;m sure you&#8217;ve noticed some fairly big changes over the last day or so. I recently decided to move to WordPress, over my old Drupal site. There were many reasons for this. Drupal is an immensely powerful CMS, but with great power, comes great responsibility. Specifically, I found &#8230; </p><p><a class="more-link block-button" href="http://www.jamiestarke.com/2011/01/31/out-with-drupal-in-with-wordpress/">Continue reading &#187;</a>]]></description>
			<content:encoded><![CDATA[<p>For anyone that checks my site regularly, I&#8217;m sure you&#8217;ve noticed some fairly big changes over the last day or so.</p>
<p>I recently decided to move to WordPress, over my old Drupal site. There were many reasons for this. Drupal is an immensely powerful CMS, but with great power, comes great responsibility. Specifically, I found that there were frequently critical updates that were required for my Drupal installation, and it was my responsibility to take care of them. This involved downloading the latest versions of the Drupal core and any modules, going on to my home laptop, opening Cyberduck (ftp), connecting to the server, backing up my database, putting the site in maintenance mode, uploading the new versions of any modules, then running the database upgrade scripts. If it sounds like a lot of work, believe me, it is.</p>
<p>Even after all that work, I was never really happy with my installation. It always felt like it was slow, and people would comment that my site is slow. I was constantly looking into ways to speed it up, and eventually I came to the realization that I was putting more time into maintaining my Drupal installation than I was putting into adding new content to my site. If you ever find yourself doing this, run&#8230;</p>
<p>I started to look into alternatives. I had worked with <a href="http://wordpress.org/">WordPress</a> before and it seemed to work well, but I figured I would check to see if anyone else had recommendations. I sent out a tweet, and only received 1 response.  <a href="http://ctreude.wordpress.com/">Christoph</a> told me that he had been using <a href="http://wordpress.org/">WordPress</a> for a while and it had &#8220;Practically no maintenance effort&#8221;.  That was just the nudge I needed (thanks <a href="http://ctreude.wordpress.com/">Christoph</a>). To my surprise, many things are so easy on WordPress, that I was able to even install a number of Plugins I needed, from my iPhone!</p>
<p>So all my content is now up on the new site, although the urls have all changed (ya, WordPress takes care of that, on Drupal I did it mostly myself, but I know, it too could be automated on Drupal). So, welcome to my new home online.  I hope that you find everything you&#8217;re looking for.  If not, let me know (contact info on the right side), and I&#8217;ll do my best to fix it up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamiestarke.com/2011/01/31/out-with-drupal-in-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 20.548 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-01-28 17:00:32 -->
<!-- Compression = gzip -->
