<?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>Meeho!™ &#187; Blog &#187; FreeBSD</title>
	<atom:link href="http://www.meeho.net/blog/category/freebsd/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.meeho.net/blog</link>
	<description>This is the official blog about Meeho!™, the platform for getting your business organized.</description>
	<lastBuildDate>Sat, 04 Jun 2011 23:06:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>scp &#8211; copy a file via SSH from a remote server to your computer</title>
		<link>http://www.meeho.net/blog/2010/03/scp-copy-file-from-remote-ssh-to-your-computer/</link>
		<comments>http://www.meeho.net/blog/2010/03/scp-copy-file-from-remote-ssh-to-your-computer/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 07:13:50 +0000</pubDate>
		<dc:creator>Kasper Tidemann</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tech stuff]]></category>

		<guid isPermaLink="false">http://www.meeho.net/blog/?p=840</guid>
		<description><![CDATA[If you have SSH access to a UNIX/Linux based system somewhere and want to copy a file located on the server to your computer via SSH, you can use the scp command found in most UNIX/Linux systems, including Mac OS X. Say you want to copy a file from the remote server to your own [...]]]></description>
			<content:encoded><![CDATA[<p>If you have SSH access to a UNIX/Linux based system somewhere and want to copy a file located on the server to your computer via SSH, you can use the <em>scp</em> command found in most UNIX/Linux systems, including Mac OS X.</p>
<p>Say you want to copy a file from the remote server to your own computer, a file called <em>my_file.txt</em>. In this case, you would issue the following command in your terminal:</p>
<blockquote><p>scp your_login@addres.of.remote.server:my_file.txt .</p></blockquote>
<p>This makes your computer connect to the server with the login you provide, and copy the <em>my_file.txt</em> file to the directory you are currently working (using the exact same file name locally on your computer, that&#8217;s why there is a dot in the end of the command).</p>
<div class="shr-publisher-840"></div>]]></content:encoded>
			<wfw:commentRss>http://www.meeho.net/blog/2010/03/scp-copy-file-from-remote-ssh-to-your-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Regarding &#8220;undefined method `quote_ident&#8217; for PGconn:Class&#8221;</title>
		<link>http://www.meeho.net/blog/2009/12/om-undefined-method-quote_ident-for-pgconnclass/</link>
		<comments>http://www.meeho.net/blog/2009/12/om-undefined-method-quote_ident-for-pgconnclass/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 01:59:03 +0000</pubDate>
		<dc:creator>Kasper Tidemann</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Tech stuff]]></category>

		<guid isPermaLink="false">http://www.meeho.dk/blog/?p=434</guid>
		<description><![CDATA[If you are a Ruby on Rails developer, use PostgreSQL and receive the error undefined method `quote_ident' for PGconn:Class &#8230; when you have updated your rails to version &#62;2.2, you can solve the above problem by 1) creating a new file in config/initializers with the name new_rails_defaults.rb, and 2) insert the following content: def PGconn.quote_ident(name) [...]]]></description>
			<content:encoded><![CDATA[<p>If you are a Ruby on Rails developer, use PostgreSQL and receive the error</p>
<p><code>undefined method `quote_ident' for PGconn:Class</code></p>
<p>&#8230; when you have updated your rails to version &gt;2.2, you can solve the above problem by <strong>1)</strong> creating a new file in <em>config/initializers</em> with the name <em>new_rails_defaults.rb</em>, and <strong>2)</strong> insert the following content:<br />
<code><br />
def PGconn.quote_ident(name)<br />
%("#{name}")<br />
end<br />
</code></p>
<p>&#8230; so the file looks like this, thus making your rails application work again:</p>
<div id="attachment_427" class="wp-caption aligncenter" style="width: 304px"><img class="size-full wp-image-427" title="new_rails_defaults.rb med koden, her vist i TextMate." src="http://www.meeho.dk/blog/wp-content/uploads/PGconnFixITextMate.jpg" alt="new_rails_defaults.rb med koden, her vist i TextMate." width="294" height="115" /><p class="wp-caption-text">new_rails_defaults.rb with the code shown in TextMate.</p></div>
<div class="shr-publisher-434"></div>]]></content:encoded>
			<wfw:commentRss>http://www.meeho.net/blog/2009/12/om-undefined-method-quote_ident-for-pgconnclass/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

