<?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>Ellie Roepken</title>
	<atom:link href="http://ellieroepken.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ellieroepken.com</link>
	<description>Web Developer</description>
	<lastBuildDate>Tue, 17 Jan 2012 19:46:02 +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>Black Out Your Site Against SOPA</title>
		<link>http://ellieroepken.com/2012/01/black-out-your-site-against-sopa/</link>
		<comments>http://ellieroepken.com/2012/01/black-out-your-site-against-sopa/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 02:43:50 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ellieroepken.com/?p=1496</guid>
		<description><![CDATA[It seems like SOPA is almost dead, but there&#8217;s still a protest alive and well planned for tomorrow. I wrote a quickie WordPress plugin that redirects any page requests to sopastrike.com/strike. I know I&#8217;m late and it&#8217;s primitive, but it &#8230; <a href="http://ellieroepken.com/2012/01/black-out-your-site-against-sopa/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It seems like SOPA is almost dead, but there&#8217;s still a protest alive and well planned for tomorrow. I wrote a quickie WordPress plugin that redirects any page requests to sopastrike.com/strike. I know I&#8217;m late and it&#8217;s primitive, but it gets the job done.<span id="more-1496"></span> Here&#8217;s the code:</p>
<pre class="brush:php">/*
Plugin Name: Protest SOPA Plugin
Description: A simple plugin to redirect to the Sopa Strike website on page load on January 18, 2012.
Date: January 17, 2012
*/

function protest_sopa() {
  $month=date('n');
  $day=date('j');
  $year=date('Y');

  if( ($month=='1') &amp;&amp; ($day=='18') &amp;&amp; ($year=='2012') ) {
    header("Location: http://sopastrike.com/strike");
    exit;
  }
}

if(!is_admin()) {
  add_action('init', 'protest_sopa');
}</pre>
<p><a href="/files/protest_sopa.zip">Download</a> the source file here.</p>
]]></content:encoded>
			<wfw:commentRss>http://ellieroepken.com/2012/01/black-out-your-site-against-sopa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Sort by Specific Field Value</title>
		<link>http://ellieroepken.com/2011/10/sql-sort-by-specific-field-value/</link>
		<comments>http://ellieroepken.com/2011/10/sql-sort-by-specific-field-value/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 18:13:25 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ellieroepken.com/?p=1479</guid>
		<description><![CDATA[Did you know that you can sort by a specific field value? I didn&#8217;t! If you want certain items that have a certain value in a field to show up first, this is what your order by clause should kind &#8230; <a href="http://ellieroepken.com/2011/10/sql-sort-by-specific-field-value/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Did you know that you can sort by a specific field value? I didn&#8217;t! If you want certain items that have a certain value in a field to show up first, this is what your order by clause should kind of look like:</p>
<pre class="brush: sql">
ORDER BY field(name_of_field,'value1','value2') DESC
</pre>
<p>If you want an item with a specific value to show up last instead, replace &#8216;DESC&#8217; with &#8216;ASC&#8217;.</p>
]]></content:encoded>
			<wfw:commentRss>http://ellieroepken.com/2011/10/sql-sort-by-specific-field-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summer 2011 Report</title>
		<link>http://ellieroepken.com/2011/08/summer-2011-report/</link>
		<comments>http://ellieroepken.com/2011/08/summer-2011-report/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 07:16:54 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[Career]]></category>
		<category><![CDATA[Web Design/Development]]></category>

		<guid isPermaLink="false">http://ellieroepken.com/?p=1440</guid>
		<description><![CDATA[Now that all of the events I went to this summer are over, it means that summer, for me specifically, is pretty much over. Not all events went as I planned, but I have some good news to report. Overview &#8230; <a href="http://ellieroepken.com/2011/08/summer-2011-report/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Now that all of the events I went to this summer are over, it means that summer, for me specifically, is pretty much over. Not all events went as I planned, but I have some good news to report.<span id="more-1440"></span></p>
<p><span class="Apple-style-span" style="color: #000000; font-weight: bold;">Overview</span></p>
<ul>
<li>I had a wedding to attend at the end of April, so I wasn&#8217;t able to go to DrupalCamp NYC.</li>
<li>Design 4 Drupal Boston was fun and I enjoyed meeting people from Acquia and other people I worked with on the event&#8217;s website.</li>
<li>WordCamp Boston was pretty much a complete failure for me. (I&#8217;d rather not talk about it.) Because of how I felt after my session, I didn&#8217;t see much of the conference.</li>
<li>Otakon was busy and tiring. We walked over 15,000 steps one day and it was near 100 degrees every day we were there.</li>
</ul>
<p>This was not the best summer ever, but I think I&#8217;m stronger for it. I&#8217;m really looking forward to fall and winter events this year. I will most likely be attending WordCamp NYC and DrupalCamp NYC this winter.</p>
<p>Now for the good news! I will be working at Northpoint Solutions as a consultant starting Wednesday, August 17<sup>th</sup>. This means that I am no longer accepting freelance work and I&#8217;m finishing up the projects I already have on my plate.</p>
<p>I have a lot to do before I start at my first job in New York City. Because I live on Long Island, I have to make sure I get train tickets and a parking permit for the train station. I also have to make sure my apartment is clean, buy new clothes, and get used to wearing nice shoes again! (I practically murdered my feet this summer.) I&#8217;m nervous, but also very excited!</p>
<p>I think I&#8217;ll have a lot more time to work on my personal projects now that I&#8217;ll be working a set 40 hours a week rather than all the time. <img src='http://ellieroepken.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ellieroepken.com/2011/08/summer-2011-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google+</title>
		<link>http://ellieroepken.com/2011/07/google-plus/</link>
		<comments>http://ellieroepken.com/2011/07/google-plus/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 06:28:05 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Web Design/Development]]></category>

		<guid isPermaLink="false">http://ellieroepken.com/?p=1340</guid>
		<description><![CDATA[So I&#8217;ve been hearing a lot about Google+. It seems to be picking up steam, so I decided to give it a try. I asked for an invite and one of my sister&#8217;s friends invited me. I&#8217;ve only been on &#8230; <a href="http://ellieroepken.com/2011/07/google-plus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been hearing a lot about Google+. It seems to be picking up steam, so I decided to give it a try. I asked for an invite and one of my sister&#8217;s friends invited me. I&#8217;ve only been on it for a few minutes so far, but it&#8217;s not bad.</p>
<p><a href="https://plus.google.com/115176457972940393551" target="_blank">Here&#8217;s a link to my profile.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ellieroepken.com/2011/07/google-plus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design 4 Drupal Boston Videos</title>
		<link>http://ellieroepken.com/2011/07/design-4-drupal-boston-videos/</link>
		<comments>http://ellieroepken.com/2011/07/design-4-drupal-boston-videos/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 02:19:31 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Web Design/Development]]></category>

		<guid isPermaLink="false">http://ellieroepken.com/?p=1325</guid>
		<description><![CDATA[The videos have been posted for Design 4 Drupal Boston 2011. Here&#8217;s the list. The following video is John Zavocki&#8217;s session on &#8220;Strategies for Designing for Drupal&#8221;. MIT Tech TV]]></description>
			<content:encoded><![CDATA[<p>The videos have been posted for Design 4 Drupal Boston 2011. <a href="http://techtv.mit.edu/collections/drupal:1922" target="_blank">Here&#8217;s the list</a>. The following video is John Zavocki&#8217;s session on &#8220;Strategies for Designing for Drupal&#8221;.<script type="text/javascript" src="http://html5.kaltura.org/js"></script><br />
<script type="text/javascript">     
  mw.setConfig('EmbedPlayer.AttributionButton',false);
  mw.setConfig('EmbedPlayer.EnableOptionsMenu',false);
</script><br />
<object name="ttvplayer" id="ttvplayer" type="application/x-shockwave-flash" allowScriptAccess="always" allowNetworking="all" allowFullScreen="true" height="328" width="517" data="http://www.kaltura.com/index.php/kwidget/wid/_203822/uiconf_id/1898102/entry_id/1_jayrqaa1/"><param name="allowScriptAccess" value="always" /><param name="allowNetworking" value="all" /><param name="allowFullScreen" value="true" /><param name="bgcolor" value="#000000" /><param name="movie" value="http://www.kaltura.com/index.php/kwidget/wid/_203822/uiconf_id/1898102/entry_id/1_jayrqaa1/"/><param name="flashVars" value="autoPlay=false&#038;streamerType=rtmp"/><a href="http://ttv.mit.edu">MIT Tech TV</a></object></p>
]]></content:encoded>
			<wfw:commentRss>http://ellieroepken.com/2011/07/design-4-drupal-boston-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alternathon 2011</title>
		<link>http://ellieroepken.com/2011/07/alternathon-2011/</link>
		<comments>http://ellieroepken.com/2011/07/alternathon-2011/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 23:15:04 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[Charity]]></category>

		<guid isPermaLink="false">http://ellieroepken.com/?p=1319</guid>
		<description><![CDATA[So I&#8217;ve been working on the Alternathon website for a few weeks in whatever spare time I have. I launched it this morning. I just wanted to leave that quick message before going out to get dinner and watch fireworks. &#8230; <a href="http://ellieroepken.com/2011/07/alternathon-2011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been working on the Alternathon website for a few weeks in whatever spare time I have. <a href="http://www.alternathon.org" target="_blank">I launched it this morning</a>.</p>
<p>I just wanted to leave that quick message before going out to get dinner and watch fireworks. Happy Independence Day!</p>
]]></content:encoded>
			<wfw:commentRss>http://ellieroepken.com/2011/07/alternathon-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design 4 Drupal Boston 2011</title>
		<link>http://ellieroepken.com/2011/06/design-4-drupal-boston-2011/</link>
		<comments>http://ellieroepken.com/2011/06/design-4-drupal-boston-2011/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 22:33:20 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Web Design/Development]]></category>

		<guid isPermaLink="false">http://ellieroepken.com/?p=1314</guid>
		<description><![CDATA[Design 4 Drupal was a success! Unfortunately, I couldn&#8217;t stay for the second day, but I really enjoyed it on Saturday. I am already thinking about going back next year. My favorite session was &#8220;Strategies for Design for Drupal&#8221; with &#8230; <a href="http://ellieroepken.com/2011/06/design-4-drupal-boston-2011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Design 4 Drupal was a success! Unfortunately, I couldn&#8217;t stay for the second day, but I really enjoyed it on Saturday. I am already thinking about going back next year. <img src='http://ellieroepken.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  My favorite session was &#8220;Strategies for Design for Drupal&#8221; with John Zavocki. He put designing and theming websites in a whole new perspective. When the videos come out, I&#8217;ll link to it.</p>
<p>Next conference: WordCamp Boston!</p>
]]></content:encoded>
			<wfw:commentRss>http://ellieroepken.com/2011/06/design-4-drupal-boston-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogathon 2011: To Write Love on Her Arms</title>
		<link>http://ellieroepken.com/2011/06/blogathon-2011-to-write-love-on-her-arms/</link>
		<comments>http://ellieroepken.com/2011/06/blogathon-2011-to-write-love-on-her-arms/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 19:10:01 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[Charity]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Web Design/Development]]></category>

		<guid isPermaLink="false">http://ellieroepken.com/?p=1286</guid>
		<description><![CDATA[Blogathon this year, if held by the official committee, is being held on July 29-30, 2011. If it&#8217;s not, I will be holding an alternathon the weekend after that, due to the conflict with Otakon. I will be blogging for &#8230; <a href="http://ellieroepken.com/2011/06/blogathon-2011-to-write-love-on-her-arms/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Blogathon this year, if held by the official committee, is being held on July 29-30, 2011. If it&#8217;s not, I will be holding an alternathon the weekend after that, due to the conflict with Otakon. I will be blogging for To Write Love on Her Arms. <a href="http://blogathon.ellieroepken.com/2011/06/14/to-write-love-on-her-arms/">read more&#8230;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ellieroepken.com/2011/06/blogathon-2011-to-write-love-on-her-arms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using SSH to Install or Update Plugins and Themes in WordPress</title>
		<link>http://ellieroepken.com/2011/06/using-ssh-to-install-or-update-pluginsthemes-in-wordpress/</link>
		<comments>http://ellieroepken.com/2011/06/using-ssh-to-install-or-update-pluginsthemes-in-wordpress/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 15:46:12 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Web Design/Development]]></category>

		<guid isPermaLink="false">http://ellieroepken.com/?p=1119</guid>
		<description><![CDATA[I use WordPress pretty much every day. Downloading through the browser, then unzipping and uploading plugins to my web server sometimes becomes very tedious and time-consuming, and the automatic upgrade feature in WordPress doesn&#8217;t always work for me. Here&#8217;s a &#8230; <a href="http://ellieroepken.com/2011/06/using-ssh-to-install-or-update-pluginsthemes-in-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I use WordPress pretty much every day. Downloading through the browser, then unzipping and uploading plugins to my web server sometimes becomes very tedious and time-consuming, and the automatic upgrade feature in WordPress doesn&#8217;t always work for me. Here&#8217;s a tutorial on how to upgrade quickly without the automatic upgrade feature or changing permissions of your website&#8217;s directories.<span id="more-1119"></span></p>
<p>I&#8217;m still learning about WordPress and it&#8217;s community, so I hope I don&#8217;t get scolded for this. If you have any corrections, please comment.</p>
<p>This is a slightly intermediate tutorial&mdash;advanced users probably already know this, and beginners might not be able to comprehend it. These commands are not specific to WordPress, but to do this you must have:</p>
<ul>
<li>SSH access</li>
<li>a Linux server</li>
</ul>
<p>If you have a shared server, you may or may not have SSH access. You should ask your host if you&#8217;re not sure.</p>
<h2>Adding/Updating Plugins or Themes</h2>
<ol>
<li>SSH into your website hosting account.<br />
<code>ssh user@domain.com</code><br />
It will ask you for a password. Enter your and hit the &#8216;enter&#8217; or &#8216;return&#8217; key.</li>
<li>Navigate to your plugin or themes folder. (Usually it&#8217;s public_html/wp-content/plugins or public_html/wp-content/themes.)</li>
<ul>
<li>Plugins directory: <code>cd public_html/wp-content/plugins</code></li>
<li>Themes directory: <code>cd public_html/wp-content/themes</code></li>
<li>To find out which folder you are in, type <code>pwd</code> and hit enter.</li>
<li>To find out what files and folder are in the folder that you are currently in, type <code>ls</code> and hit enter.</li>
<li>To change to a folder inside of the folder that you are currently in, type <code>cd</code> and the name of the folder and hit enter. To go up one folder, type <code>cd ../</code></li>
</ul>
<li>Copy the download url of the plugin you want to upgrade. If you&#8217;re updating a plugin, you can do this one of two ways: Get the url from the download link on the plugins upgrade page or search on wordpress for the plugin and copy the download link from the plugin page.</li>
<li>Download the file to your server using the &#8216;wget&#8217; command.</li>
<li>Unzip the compressed zip file that you just downloaded using the &#8216;unzip&#8217; command. (Replace &#8216;the-file-name&#8217; with the name of the file you just downloaded.)<br />
<code>unzip the-file-name.zip</code></li>
<ul>
<li>If you&#8217;re updating a plugin, it will ask you if you want to replace the files. Type &#8216;A&#8217; to replace all of the files and hit enter.</li>
</ul>
<li>Delete the zip file using the &#8216;rm&#8217; command, again replacing &#8216;the-file-name&#8217; with the name of the file you downloaded earlier.<br />
<code>rm the-file-name.zip</code></li>
<li>Now if you look at the plugins page in the WordPress Dashboard, it should be there.</li>
</ol>
<p>I&#8217;ve been adding/upgrading plugins this way for a while now, and I&#8217;d say it&#8217;s a little quicker than the automatic installation if you know what you&#8217;re doing and get used to the steps. It&#8217;s certainly a lot faster than downloading the plugin and FTPing everything up to the server.</p>
]]></content:encoded>
			<wfw:commentRss>http://ellieroepken.com/2011/06/using-ssh-to-install-or-update-pluginsthemes-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Speaking at WordCamp Boston!</title>
		<link>http://ellieroepken.com/2011/05/im-speaking-at-wordcamp-boston/</link>
		<comments>http://ellieroepken.com/2011/05/im-speaking-at-wordcamp-boston/#comments</comments>
		<pubDate>Sat, 28 May 2011 19:33:15 +0000</pubDate>
		<dc:creator>Ellie</dc:creator>
				<category><![CDATA[Web Design/Development]]></category>

		<guid isPermaLink="false">http://ellieroepken.com/?p=1229</guid>
		<description><![CDATA[As you can see, my badge on the right has changed from &#8220;attending&#8221; to &#8220;speaking&#8221;. I will be speaking with Sam Kottler about &#8220;Enterprise Theming with Sidebars&#8221;. We haven&#8217;t begun working on the presentation yet, but I&#8217;m so super excited!]]></description>
			<content:encoded><![CDATA[<p>As you can see, my badge on the right has changed from &#8220;attending&#8221; to &#8220;speaking&#8221;. <img src='http://ellieroepken.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  I will be speaking with <a href="http://kottlerdevelopment.com/" target="_blank">Sam Kottler</a> about &#8220;Enterprise Theming with Sidebars&#8221;. We haven&#8217;t begun working on the presentation yet, but I&#8217;m so super excited! <img src='http://ellieroepken.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ellieroepken.com/2011/05/im-speaking-at-wordcamp-boston/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

