<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>btaz</title>
	<link>http://www.btaz.com</link>
	<description>Promoting the art of coding</description>
	<lastBuildDate>Fri, 16 Jul 2010 17:01:58 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<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 tad confusing. The solution in [...]


Related posts:<ol><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 state [...]


Related posts:<ol><li><a href='http://www.btaz.com/databases/oracle/sqlloader-522-lfiopn-failed-for-file-loader-log/' rel='bookmark' title='Permanent Link: SQL*Loader-522: lfiopn failed for file (loader.log)'>SQL*Loader-522: lfiopn failed for file (loader.log)</a></li>
</ol>]]></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 pull&#8221; and [...]


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>
</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. Once [...]


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>
	<item>
		<title>Java primitive data type sizes for byte, short, int, long, float, double and char</title>
		<description><![CDATA[
table {
width:100%;
border:1px solid #e5eff8;
margin:1em auto;
border-collapse:collapse;
}
th {
color:#678197;
border: 1px solid #e5eff8;
padding: 2px;
text-align:center;
font-weight: bold;
text-align: left;
}
td {
color:#678197;
border:1px solid #e5eff8;
padding: 2px;
text-align:left;
}

A handy list for Java data types and sizes
Integer Data Types



Data Type
Size
Digits
Min
Max


byte
8-bit signed
3
-128
127


short
16-bit signed
5
-32,768
32,767


int
32-bit signed
10
-2,147,483,648
2,147,483,647


long
64-bit signed
19
-9,223,372,036,854,775,808
9,223,372,036,854,775,807




Floating Point Data Types



Data Type
Size


float
single-precision 32-bit IEEE 754 floating point


double
double-precision 64-bit IEEE 754 floating point




Boolean Data Types



Data Type
Values


boolean
true or false




Character Data Types



Data Type
Min
Max


char
\u0000 or 0
\uffff [...]


Related posts:<ol><li><a href='http://www.btaz.com/java/java-and-the-current-work-directory/' rel='bookmark' title='Permanent Link: Java and the current work directory'>Java and the current work directory</a></li>
</ol>]]></description>
		<link>http://www.btaz.com/java/java-primitive-data-type-sizes-for-byte-short-int-long-float-double-and-char/</link>
			</item>
	<item>
		<title>How to find project dependencies in a Maven project</title>
		<description><![CDATA[
It&#8217;s very useful to be able to see what is included in your class path especially when you&#8217;re trying to track down a troublesome dependency. Recently I had an issue with a JDOM dependency; however I had not defined a JDOM dependency in my pom.xml file and I couldn&#8217;t quite figure out why this dependency [...]


Related posts:<ol><li><a href='http://www.btaz.com/java/want-to-use-spring-3-0-milestone-release-from-maven/' rel='bookmark' title='Permanent Link: Want to use Spring 3.0 milestone release from Maven?'>Want to use Spring 3.0 milestone release from Maven?</a></li>
<li><a href='http://www.btaz.com/java/maven-log4j-and-javax-jms/' rel='bookmark' title='Permanent Link: Maven, Log4j and javax.jms'>Maven, Log4j and javax.jms</a></li>
<li><a href='http://www.btaz.com/java/maven/18/' rel='bookmark' title='Permanent Link: Maven pom.xml structure'>Maven pom.xml structure</a></li>
</ol>]]></description>
		<link>http://www.btaz.com/java/how-to-find-project-dependencies-in-a-maven-project/</link>
			</item>
	<item>
		<title>How to control or throttle SCP file transfer speed</title>
		<description><![CDATA[I wanted to control how fast SCP copy data between two Linux servers. On a Linux system this can easily be achieved using the &#8220;SCP -l&#8221; switch. In my case I had to make sure to not exceed 0.5 Mbit/s
Since the &#8220;-l&#8221; parameter uses Kbit/s the correct value in my case is 500
scp -l 500 [...]


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/how-to-control-or-throttle-scp-file-transfer-speed/</link>
			</item>
	<item>
		<title>How I fixed the problem and got my Logitech mouse working OS X 10.6 Snow Leopard</title>
		<description><![CDATA[Logitech has yet to release updated keyboard and mice drivers for OS X 10.6 / Snow Leopard. I&#8217;m quite fond of my Logitech MX 510 mouse and wanted this problem fixed as soon as possible.
I used the instruction from the link below which tells you to download the &#8220;Logitech Control Center&#8221;, locate the &#8220;Logitech Control [...]


No related posts.]]></description>
		<link>http://www.btaz.com/os-x-apple-os/how-i-fixed-the-problem-and-got-my-logitech-mouse-working-os-x-10-6-snow-leopard/</link>
			</item>
</channel>
</rss>
