<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>btaz</title>
	<link>http://www.btaz.com</link>
	<description>Promoting the art of coding</description>
	<lastBuildDate>Thu, 17 Mar 2011 06:41:23 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0.4" -->

	<item>
		<title>Los Angeles Hadoop Users Group- LA-HUG</title>
		<description><![CDATA[LA now has its own HUG. The first meetup will be held on Wednesday 2/9/2011. This is a great opportunity for anyone in the Los Angeles area with interest in Hadoop and related technologies to discuss and meet. The first talk is:  &#8220;Operationalizing Hadoop&#8221; with Charles Zedlewski (Cloudera’s VP Product) http://www.meetup.com/LA-HUG/ Related posts:Hadoop World


Related posts:<ol><li><a href='http://www.btaz.com/misc/hadoop-world/' rel='bookmark' title='Permanent Link: Hadoop World'>Hadoop World</a></li>
</ol>]]></description>
		<link>http://www.btaz.com/hadoop-2/los-angeles-hadoop-users-group-la-hug/</link>
			</item>
	<item>
		<title>fatal: The remote end hung up unexpectedly</title>
		<description><![CDATA[I committed changes to my GIT project, tried to push them to the remote server (git push) and got the following cryptic error message: fatal: The remote end hung up unexpectedly The GitFaq states that: Git push fails with &#8220;fatal: The remote end hung up unexpectedly&#8221;? If, when attempting git push, you get a message [...]


Related posts:<ol><li><a href='http://www.btaz.com/scm/git/fatal-git-checkout-updating-paths-is-incompatible-with-switching-branches/' rel='bookmark' title='Permanent Link: fatal: git checkout: updating paths is incompatible with switching branches.'>fatal: git checkout: updating paths is incompatible with switching branches.</a></li>
<li><a href='http://www.btaz.com/scm/git/git-fatal-you-have-not-concluded-your-merge-merge_head-exists/' rel='bookmark' title='Permanent Link: GIT Fatal You Have not Concluded Your Merge MERGE_HEAD Exists'>GIT Fatal You Have not Concluded Your Merge MERGE_HEAD Exists</a></li>
</ol>]]></description>
		<link>http://www.btaz.com/misc/fatal-the-remote-end-hung-up-unexpectedly/</link>
			</item>
	<item>
		<title>Hadoop World</title>
		<description><![CDATA[I just came back from the Hadoop World conference in New York and I have to say that it was quite exciting. Processing huge amounts of data used to be a problem for just a few companies like Google, Yahoo, Facebook and a few others, but has now become a problem for many. The conference [...]


Related posts:<ol><li><a href='http://www.btaz.com/hadoop-2/los-angeles-hadoop-users-group-la-hug/' rel='bookmark' title='Permanent Link: Los Angeles Hadoop Users Group- LA-HUG'>Los Angeles Hadoop Users Group- LA-HUG</a></li>
</ol>]]></description>
		<link>http://www.btaz.com/misc/hadoop-world/</link>
			</item>
	<item>
		<title>Unix/Linux Sort Multiple Columns, Tab Delimited and Reverse Sort Order</title>
		<description><![CDATA[Sorting a tab delimited file using the Unix sort command is easy once you which parameters to use. An advanced file sort can get difficult if it has multiple columns, uses tab characters as the column separator, you want to reverse the sort order on some columns, and where you want the columns sorted in [...]


Related posts:<ol><li><a href='http://www.btaz.com/unixlinux/how-to-automatically-provide-an-answer-to-unix-commands/' rel='bookmark' title='Permanent Link: How to automatically provide an answer to Unix commands'>How to automatically provide an answer to Unix commands</a></li>
</ol>]]></description>
		<link>http://www.btaz.com/unixlinux/unixlinux-sort-multiple-columns-tab-delimited-and-reverse-sort-order/</link>
			</item>
	<item>
		<title>ls full path</title>
		<description><![CDATA[How do you get the Unix command ls to show you the full path? Unfortunately there&#8217;s no argument for ls that will do this directly. However this will work fine and give you what you want. ls -d $PWD/* or ls -ld $PWD/* No related posts.


No related posts.]]></description>
		<link>http://www.btaz.com/unixlinux/ls-full-path/</link>
			</item>
	<item>
		<title>Window Stuck Under Toolbar in OS X</title>
		<description><![CDATA[Sometimes a window can get stuck under the top toolbar in OS X. This often happens when I use Citrix in OS X to run Windows applications. When this happens it&#8217;s not possible to grab the window nor  to close it. A simple solution for this is to press [fn] [shift] [F2] which will move [...]


No related posts.]]></description>
		<link>http://www.btaz.com/os-x-apple-os/window-stuck-under-toolbar-in-os-x/</link>
			</item>
	<item>
		<title>fatal: git checkout: updating paths is incompatible with switching branches.</title>
		<description><![CDATA[Using GIT I tried to pull down a new remote branch using: git checkout --track -b my-branch-name origin/my-branch-name When I did this I got this error message: fatal: git checkout: updating paths is incompatible with switching branches. Did you intend to checkout 'origin/my-branch-name' which can not be resolved as commit? This error message was a [...]


Related posts:<ol><li><a href='http://www.btaz.com/misc/fatal-the-remote-end-hung-up-unexpectedly/' rel='bookmark' title='Permanent Link: fatal: The remote end hung up unexpectedly'>fatal: The remote end hung up unexpectedly</a></li>
<li><a href='http://www.btaz.com/scm/git/git-fatal-you-have-not-concluded-your-merge-merge_head-exists/' rel='bookmark' title='Permanent Link: GIT Fatal You Have not Concluded Your Merge MERGE_HEAD Exists'>GIT Fatal You Have not Concluded Your Merge MERGE_HEAD Exists</a></li>
</ol>]]></description>
		<link>http://www.btaz.com/scm/git/fatal-git-checkout-updating-paths-is-incompatible-with-switching-branches/</link>
			</item>
	<item>
		<title>DbVisualizer auto commit problem</title>
		<description><![CDATA[I had some issues with DbVisualizer and auto commit. I wanted to be able to turn it off from the SQL commander. The official documentation states that you can do this using: The Auto Commit setting is enabled by default and can be adjusted in the Connection Properties. You may also adjust the  auto commit [...]


No related posts.]]></description>
		<link>http://www.btaz.com/java/jdbc/dbvisualizer-auto-commit-problem/</link>
			</item>
	<item>
		<title>GIT Fatal You Have not Concluded Your Merge MERGE_HEAD Exists</title>
		<description><![CDATA[fatal: You have not concluded your merge. (MERGE_HEAD exists) I got this message because when I performed a &#8220;git pull&#8221;. I searched for a solution for this problem on the Internet and it wasn&#8217;t until I found this post that I was able to resolve this issue. The problem was that I: Performed a &#8220;git [...]


Related posts:<ol><li><a href='http://www.btaz.com/scm/git/fatal-git-checkout-updating-paths-is-incompatible-with-switching-branches/' rel='bookmark' title='Permanent Link: fatal: git checkout: updating paths is incompatible with switching branches.'>fatal: git checkout: updating paths is incompatible with switching branches.</a></li>
<li><a href='http://www.btaz.com/misc/fatal-the-remote-end-hung-up-unexpectedly/' rel='bookmark' title='Permanent Link: fatal: The remote end hung up unexpectedly'>fatal: The remote end hung up unexpectedly</a></li>
</ol>]]></description>
		<link>http://www.btaz.com/scm/git/git-fatal-you-have-not-concluded-your-merge-merge_head-exists/</link>
			</item>
	<item>
		<title>SQL*Loader-522: lfiopn failed for file (loader.log)</title>
		<description><![CDATA[I used the Oracle SQL Loader to push some data into a table and got the following error: SQL*Loader-522: lfiopn failed for file (loader.log) This somewhat cryptic error message turned out to be that Oracle SQL Loader didn&#8217;t have write permissions in the work directory i.e. in the directory where I executed the sqlldr command. [...]


Related posts:<ol><li><a href='http://www.btaz.com/java/jdbc/dbvisualizer-auto-commit-problem/' rel='bookmark' title='Permanent Link: DbVisualizer auto commit problem'>DbVisualizer auto commit problem</a></li>
<li><a href='http://www.btaz.com/scm/svn-inconsistent-line-ending-style-when-trying-to-commit-a-binary-file/' rel='bookmark' title='Permanent Link: svn: Inconsistent line ending style when trying to commit a binary file'>svn: Inconsistent line ending style when trying to commit a binary file</a></li>
<li><a href='http://www.btaz.com/unixlinux/ls-full-path/' rel='bookmark' title='Permanent Link: ls full path'>ls full path</a></li>
</ol>]]></description>
		<link>http://www.btaz.com/databases/oracle/sqlloader-522-lfiopn-failed-for-file-loader-log/</link>
			</item>
</channel>
</rss>

