<?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>3gfp Notebook &#187; Uncategorized</title>
	<atom:link href="http://notebook.3gfp.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://notebook.3gfp.com</link>
	<description>Tech bytes for the tech savvy.</description>
	<lastBuildDate>Sat, 08 May 2010 16:37:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>With hgsubversion, you can pick and choose.</title>
		<link>http://notebook.3gfp.com/2010/05/with-hgsubversion-you-can-pick-and-choose/</link>
		<comments>http://notebook.3gfp.com/2010/05/with-hgsubversion-you-can-pick-and-choose/#comments</comments>
		<pubDate>Sat, 08 May 2010 16:37:24 +0000</pubDate>
		<dc:creator>sr105</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://notebook.3gfp.com/?p=249</guid>
		<description><![CDATA[Something that was not obvious (to me) in the hgsubversion documentation is that you can clone any part of a subversion repository.


#!/bin/bash
# 
# With hgsubversion, you can clone *ANY* folder in a subversion repository. 
# (Well, really any non-empty folder)
# Let me repeat, you do not have to clone the entire repository! It could be
# [...]]]></description>
			<content:encoded><![CDATA[<p>Something that was not obvious (to me) in the hgsubversion documentation is that you can clone any part of a subversion repository.</p>

<pre class="brush:shell">
#!/bin/bash
# 
# With hgsubversion, you can clone *ANY* folder in a subversion repository. 
# (Well, really any non-empty folder)
# Let me repeat, you do not have to clone the entire repository! It could be
# a branch or even a folder within a branch. If you clone a branch folder,
# your pushed changesets will go into the branch.
# 
# Requires:
#   subversion installed
#   rebase extension
#   hgsubversion extension
#
# We have the following repositories:
#     SVN repo <-> hg-svn
# 
# SVN repo:       company subversion repo on remote server, https://ip/svn
# hg-svn:         local developer copy of SVN repo using hgsubversion 
# 
# Our goal is to clone/checkout only a sub-folder, make changes, and see
# what happens.
# 
# Example:

# Turn on debugging so we can see the commands as they're issued.
set -x
# Clean up after any previous run.
rm -rf folder_test

mkdir folder_test
cd folder_test

# Create a "company" SVN repository.
svnadmin create SVN
svn co file://`pwd`/SVN SVN_temp

# Put something in the SVN repository or we won't be able
# to see why some of the steps are necessary.
cd SVN_temp/
svn mkdir trunk tags branches
svn ci -m "Initial folders"
echo "Company file" > trunk/company.txt
svn add trunk/company.txt
svn mkdir trunk/subfolder
echo "text" >> trunk/subfolder/anotherfile.txt
svn add trunk/subfolder/anotherfile.txt
svn ci -m "Added some files"
cd ..

# Create our clone of SVN. Just grab the folder you want. It could be
# a branch or even a folder in a branch.
hg clone file://`pwd`/SVN/trunk/subfolder hg-svn

# Make some changes
cd hg-svn
echo "more text" >> anotherfile.txt
echo "text" >> newfile.txt
hg add newfile.txt
hg com -m "Made some change in hg."
hg push
cd ..

# Look at the complete subversion repository to see what happened.
cd SVN_temp
svn up

# See that out line was added.
cat trunk/subfolder/anotherfile.txt

# See the new file.
set +x
echo "=========================="
echo "Results:"
find . | egrep -v '\.svn'
cd ..

# Use the following command to see the log of changes:
# svn log -v SVN_temp
</pre>
]]></content:encoded>
			<wfw:commentRss>http://notebook.3gfp.com/2010/05/with-hgsubversion-you-can-pick-and-choose/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pushing a new feature from a mercurial repo into an SVN repo</title>
		<link>http://notebook.3gfp.com/2010/05/pushing-a-new-feature-from-a-mercurial-repo-into-an-svn-repo/</link>
		<comments>http://notebook.3gfp.com/2010/05/pushing-a-new-feature-from-a-mercurial-repo-into-an-svn-repo/#comments</comments>
		<pubDate>Fri, 07 May 2010 13:54:14 +0000</pubDate>
		<dc:creator>sr105</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://notebook.3gfp.com/?p=244</guid>
		<description><![CDATA[Update: Added optional code to show how you would put feature in a branch first rather than just committing directly to the trunk.


#!/bin/bash
# 
# Merging a separate feature repository into a folder in an SVN repository by 
# way of two hg repositories.
# 
# Inspired by: http://hgtip.com/tips/advanced/2009-11-17-combining-repositories/
# 
# Requires:
#   subversion installed
#   [...]]]></description>
			<content:encoded><![CDATA[<p>Update: Added optional code to show how you would put feature in a branch first rather than just committing directly to the trunk.</p>

<pre class="brush:shell">
#!/bin/bash
# 
# Merging a separate feature repository into a folder in an SVN repository by 
# way of two hg repositories.
# 
# Inspired by: http://hgtip.com/tips/advanced/2009-11-17-combining-repositories/
# 
# Requires:
#   subversion installed
#   convert extension
#   mq extension (for strip)
#   rebase extension
#   hgsubversion extension
#
# We have the following four repositories:
#     SVN repo <-> hg-svn <-> hg-svn-work
#     feature
# 
# SVN repo:       company subversion repo on remote server, https://ip/svn
# hg-svn:         local developer copy of SVN repo using hgsubversion 
# hg-svn-work:    a local working copy of hg-svn. (Why? In my case,
#                 it's inside a Linux virtual machine running on a Mac.
#                 hg-svn is on the Mac.)
# feature:        a completely separate hg repository containing some new 
#                 program developed in isolation. (Perhaps a contract job?)
# 
# Our goal is to put feature and all of its history into SVN, but we must
# place it into a sub-folder /new/feature.
# 
# Steps:
# 1. Use hg convert to re-map feature/* to feature/new/feature/*.
# 2. Hg pull the converted feature repo into hg-svn-work.
# 3. Hg rebase the pulled feature onto the previous tip.
# 4. Hg push the changes to hg-svn
# 5. Hg push from hg-svn into the SVN repo.
# 6. Hg pull changes from hg-svn into hg-svn-work
# 7. Hg strip the pulled feature changesets from step 2.
# 
# Using a feature branch:
#   It would be nice to put feature into its own subversion branch
#   first and then merge it back into the trunk. If you'd like to do
#   this, enable USE_A_BRANCH below.
USE_A_BRANCH=1  # enable = 1

# Example:

# Turn on debugging so we can see the commands as they're issued.
set -x
# Clean up after any previous run.
rm -rf feature_test

mkdir feature_test
cd feature_test

# Create a "company" SVN repository.
svnadmin create SVN
svn co file://`pwd`/SVN SVN_temp

# Put something in the SVN repository or we won't be able
# to see why some of the steps are necessary.
cd SVN_temp/
svn mkdir trunk tags branches
svn ci -m "Initial folders"
echo "Company file" > trunk/company.txt
svn add trunk/company.txt
svn ci -m "Added company.txt"
cd ..

if [ "$USE_A_BRANCH" = "1" ]; then
    # Create a feature branch in subversion
    svn copy file://`pwd`/SVN/trunk file://`pwd`/SVN/branches/feature -m "Added feature branch"
fi

# Create our first and second level clones of SVN.
if [ "$USE_A_BRANCH" = "1" ]; then
    # Make sure to clone the new branch!
    hg clone file://`pwd`/SVN/branches/feature hg-svn
else
    hg clone file://`pwd`/SVN/trunk hg-svn
fi
hg clone hg-svn hg-svn-work

# Create a new feature in its own repository. It needs more than one
# changeset to show how hgsubversion will rebase after pushing each 
# changeset.
hg init feature
cd feature
echo "Some text" >> readme.txt
hg add readme.txt 
hg com -m "Added readme.txt"
echo "Some more text" >> readme.txt
hg com -m "Added more text"
cd ..

# Create a clone/copy of feature where we move everything into the
# subfolder that it needs to be in for the company SVN layout.
echo "rename . new/feature" > map.txt
hg convert --filemap map.txt feature feature-conv
rm map.txt

# Pull the converted feature repository into our working
# copy of the SVN repository. Save the current tip since we will
# need it to rebase.
cd hg-svn-work/
OLD_TIP=`hg log --template "{rev}\n" -r tip`
hg pull -f ../feature-conv
# All of the new changesets start from OLD_TIP + 1. Rebase them on
# OLD_TIP.
hg rebase --source $(($OLD_TIP + 1)) --dest $OLD_TIP
# Push the changes up one level to hg-svn
hg push
cd ..

# Clean up the feature copy.
rm -rf feature-conv

cd hg-svn/
# Update hg-svn since hgsubversion will not detect any outgoing 
# changesets otherwise.
hg up
# Push the changes to SVN. Each changeset pushed will cause a rebase.
# If you are pushing a lot of changesets (e.g. I did 85), this will take a
# while since the algorithm is O(n^2). The first push of N changesets rebases
# N-1 changesets, then the next rebases N-2, etc. It will appear pleasantly
# faster as it goes.
hg push
cd ..

# Pull the newly rebased changesets back to our working repository. 
# Unfortunately, we've now done half of an svn push/rebase here. We need
# to manually strip away all of the revisions we pulled from feature-conv
# earlier as they've all been duplicated now.
cd hg-svn-work/
hg pull
hg strip -f -n $(($OLD_TIP + 1))
cd ..

cd SVN_temp
svn up

if [ "$USE_A_BRANCH" = "1" ]; then
    # Optionally, merge the svn feature branch back to the trunk
    # Note: I don't know (yet) of a simpler way to do this.
    DIR=$(dirname $(pwd))
    svn merge file://$DIR/SVN/branches/feature trunk
    svn ci -m "Merging feature branch back to trunk"
    svn delete branches/feature
    svn ci -m "Closing feature branch"
fi

set +x
echo "=========================="
echo "Results:"
find . | egrep -v '\.svn'
cd ..

# Use the following command to see the log of changes:
# svn log -v SVN_temp
</pre>
]]></content:encoded>
			<wfw:commentRss>http://notebook.3gfp.com/2010/05/pushing-a-new-feature-from-a-mercurial-repo-into-an-svn-repo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spotlight Fails Again</title>
		<link>http://notebook.3gfp.com/2009/08/spotlight-fails-again/</link>
		<comments>http://notebook.3gfp.com/2009/08/spotlight-fails-again/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 19:32:23 +0000</pubDate>
		<dc:creator>sr105</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neveragain.sr105.com/?p=137</guid>
		<description><![CDATA[It&#8217;s like a broken record. It&#8217;s like a broken record. Here&#8217;s another example.


]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s like a broken record. <a href="http://neveragain.sr105.com/2009/08/one-reason-to-dislike-spotlight/">It&#8217;s like a broken record.</a> Here&#8217;s another example.</p>

<p><a href="http://neveragain.sr105.com/wp-content/uploads/2009/08/Spotlight-Fails-Again.png"><img src="http://neveragain.sr105.com/wp-content/uploads/2009/08/Spotlight-Fails-Again-300x263.png" alt="Spotlight Fails Again to Find File Shown in Finder Window" title="Spotlight Fails Again" width="300" height="263" class="size-medium wp-image-138" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://notebook.3gfp.com/2009/08/spotlight-fails-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the hostname for Ubuntu Jaunty</title>
		<link>http://notebook.3gfp.com/2009/08/changing-the-hostname-for-ubuntu-jaunty/</link>
		<comments>http://notebook.3gfp.com/2009/08/changing-the-hostname-for-ubuntu-jaunty/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 14:03:26 +0000</pubDate>
		<dc:creator>sr105</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neveragain.sr105.com/?p=76</guid>
		<description><![CDATA[
    
            
        Linux is just never quite ready for the mainstream because of little things like not being able to set the name of your computer. Here&#8217;s how to do it graphically in [...]]]></description>
			<content:encoded><![CDATA[<div>
    <div class="LessonContent">
            <div class="LessonSummary">
        <p>Linux is just never quite ready for the mainstream because of little things like not being able to set the name of your computer. Here&#8217;s how to do it graphically in Ubuntu Jaunty.</p>  
    </div>
    
            <div class="LessonStep top">
            <h2 class="StepTitle">You need install the &#8220;Network&#8221; application</h2>
        <div class="StepImage" align="center" style="margin:10px 0px; background-color: rgb(240,240,240);">
<img style="padding:0px 3px 0px 3px;" src="http://neveragain.sr105.com/wp-content/uploads/2009/08/You_need_install_the_Network_application3.png" width="406" height="324" alt="You_need_install_the_Network_application3.png" />
</div> <div class="StepInstructions">
    <p>It used to be installed in previous versions, but it&#8217;s missing from Jaunty.</p>
</div>
    </div>
    <div class="LessonStep top">
            <h2 class="StepTitle">Find &#038; Install Network</h2>
        <div class="StepImage" align="center" style="margin:10px 0px; background-color: rgb(240,240,240);">
<img style="padding:0px 3px 0px 3px;" src="http://neveragain.sr105.com/wp-content/uploads/2009/08/Find___Install_Network3.png" width="532" height="388" alt="Find___Install_Network3.png" />
</div> <div class="StepInstructions">
    <p>1. Select &quot;All&quot;<br />
2. Select &quot;All Open Source applications&quot;<br />
3. Search for &quot;Network&quot;<br />
4. Select &quot;Network&quot; from the list. (You&#8217;ll have to scroll the list half-way down)<br />
5. Apply Changes</p>
</div>
    </div>
    <div class="LessonStep top">
            <h2 class="StepTitle">Apply</h2>
        <div class="StepImage" align="center" style="margin:10px 0px; background-color: rgb(240,240,240);">
<img style="padding:0px 3px 0px 3px;" src="http://neveragain.sr105.com/wp-content/uploads/2009/08/Apply3.png" width="463" height="291" alt="Apply3.png" />
</div> 
    </div>
    <div class="LessonStep top">
            <h2 class="StepTitle">You may need to enter your password</h2>
        <div class="StepImage" align="center" style="margin:10px 0px; background-color: rgb(240,240,240);">
<img style="padding:0px 3px 0px 3px;" src="http://neveragain.sr105.com/wp-content/uploads/2009/08/You_may_need_to_enter_your_password3.png" width="402" height="251" alt="You_may_need_to_enter_your_password3.png" />
</div> 
    </div>
    <div class="LessonStep top">
            <h2 class="StepTitle">Wait while the software is installed</h2>
        <div class="StepImage" align="center" style="margin:10px 0px; background-color: rgb(240,240,240);">
<img style="padding:0px 3px 0px 3px;" src="http://neveragain.sr105.com/wp-content/uploads/2009/08/Wait_while_the_software_is_installed3.png" width="467" height="251" alt="Wait_while_the_software_is_installed3.png" />
</div> 
    </div>
    <div class="LessonStep top">
            <h2 class="StepTitle">Double-click Network</h2>
        <div class="StepImage" align="center" style="margin:10px 0px; background-color: rgb(240,240,240);">
<img style="padding:0px 3px 0px 3px;" src="http://neveragain.sr105.com/wp-content/uploads/2009/08/Double-click_Network3.png" width="435" height="226" alt="Double-click_Network3.png" />
</div> 
    </div>
    <div class="LessonStep top">
            <h2 class="StepTitle">Unlock the Network Settings</h2>
        <div class="StepImage" align="center" style="margin:10px 0px; background-color: rgb(240,240,240);">
<img style="padding:0px 3px 0px 3px;" src="http://neveragain.sr105.com/wp-content/uploads/2009/08/Unlock_the_Network_Settings3.png" width="442" height="391" alt="Unlock_the_Network_Settings3.png" />
</div> 
    </div>
    <div class="LessonStep top">
            <h2 class="StepTitle">Authenticate: Enter your password (again)</h2>
        <div class="StepImage" align="center" style="margin:10px 0px; background-color: rgb(240,240,240);">
<img style="padding:0px 3px 0px 3px;" src="http://neveragain.sr105.com/wp-content/uploads/2009/08/Authenticate_Enter_your_password__again_3.png" width="419" height="290" alt="Authenticate_Enter_your_password__again_3.png" />
</div> 
    </div>
    <div class="LessonStep top">
            <h2 class="StepTitle">Select General and Change your Hostname</h2>
        <div class="StepImage" align="center" style="margin:10px 0px; background-color: rgb(240,240,240);">
<img style="padding:0px 3px 0px 3px;" src="http://neveragain.sr105.com/wp-content/uploads/2009/08/Select_General_and_Change_your_Hostname3.png" width="443" height="390" alt="Select_General_and_Change_your_Hostname3.png" />
</div> <div class="StepInstructions">
    <p>1. Select the General tab<br />
2. Change your hostname<br />
3. Click anywhere else</p>
</div>
    </div>
    <div class="LessonStep top">
            <h2 class="StepTitle">Confirm the Change</h2>
        <div class="StepImage" align="center" style="margin:10px 0px; background-color: rgb(240,240,240);">
<img style="padding:0px 3px 0px 3px;" src="http://neveragain.sr105.com/wp-content/uploads/2009/08/Confirm_the_Change3.png" width="400" height="182" alt="Confirm_the_Change3.png" />
</div> 
    </div>
    <div class="LessonStep top">
            <h2 class="StepTitle">Close the Add/Remove program</h2>
        <div class="StepImage" align="center" style="margin:10px 0px; background-color: rgb(240,240,240);">
<img style="padding:0px 3px 0px 3px;" src="http://neveragain.sr105.com/wp-content/uploads/2009/08/Close_the_AddRemove_program3.png" width="436" height="226" alt="Close_the_AddRemove_program3.png" />
</div> 
    </div>
    <div class="LessonStep top">
            <h2 class="StepTitle">Restart your computer</h2>
        <div class="StepImage" align="center" style="margin:10px 0px; background-color: rgb(240,240,240);">
<img style="padding:0px 3px 0px 3px;" src="http://neveragain.sr105.com/wp-content/uploads/2009/08/Restart_your_computer3.png" width="152" height="207" alt="Restart_your_computer3.png" />
</div> <div class="StepInstructions">
    <p>A lot of programs will not work properly unless you restart.</p>
</div>
    </div>
    <div class="LessonStep top">
            <h2 class="StepTitle">For future use, find Network under the System -&gt; Administration menu</h2>
        <div class="StepImage" align="center" style="margin:10px 0px; background-color: rgb(240,240,240);">
<img style="padding:0px 3px 0px 3px;" src="http://neveragain.sr105.com/wp-content/uploads/2009/08/For_future_use__find_Network_under_the_System_-_Administration_menu3.png" width="440" height="263" alt="For_future_use__find_Network_under_the_System_-_Administration_menu3.png" />
</div> 
    </div>

    </div>  
</div>
]]></content:encoded>
			<wfw:commentRss>http://notebook.3gfp.com/2009/08/changing-the-hostname-for-ubuntu-jaunty/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>On Mental Inertia</title>
		<link>http://notebook.3gfp.com/2009/08/on-mental-inertia/</link>
		<comments>http://notebook.3gfp.com/2009/08/on-mental-inertia/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 14:52:24 +0000</pubDate>
		<dc:creator>sr105</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neveragain.sr105.com/?p=57</guid>
		<description><![CDATA[Mental inertia is our tendency to hold on to an idea, sometimes fiercely, in spite of all evidence to the contrary. Is the idea new? Is it real or is it just stubbornness? Can it be treated in others? Can we treat ourselves?

Well, it&#8217;s not new&#8230;

The human understanding when it has once adopted an opinion [...]]]></description>
			<content:encoded><![CDATA[<p>Mental inertia is our tendency to hold on to an idea, sometimes fiercely, in spite of all evidence to the contrary. Is the idea new? Is it real or is it just stubbornness? Can it be treated in others? Can we treat ourselves?</p>

<p><strong>Well, it&#8217;s not new&#8230;</strong></p>

<blockquote>The human understanding when it has once adopted an opinion (either as being the received opinion or as being agreeable to itself) draws all things else to support and agree with it. And though there be a greater number and weight of instances to be found on the other side, yet these it either neglects and despises, or else by some distinction sets aside and rejects, in order that by this great and pernicious predetermination the authority of its former conclusions may remain inviolate.
— Sir Francis Bacon
Aphorism 46,&#8217; Novum Organum, Book I (1620) </blockquote>

<p><strong>and apparently, it&#8217;s not just stubbornness&#8230;</strong></p>

<blockquote>There are two competing ideas on the process that governs the formation and maintenance of beliefs: 1) people maintain a belief because they have limited access to opposing beliefs, or 2) because they actively filter information in a way that avoids conflicting views. A new meta-analysis of past studies confirms the existence of active avoidance; when people are offered an opposing viewpoint, they will ignore it in favor of a supportive viewpoint in two out of three instances. 
— Ars Technica
<a href="http://arstechnica.com/science/news/2009/07/study-people-avoid-viewpoints-that-conflict-with-their-own.ars">Study: choir prefers being preached to by 2:1 margin</a></blockquote>

<p>That study revealed things that most of us have noticed to be true: more &#8220;close-minded&#8221; people tend to prefer their bias more than others and bias increases with age.</p>

<p><strong>Can it be treated in others?</strong></p>

<p>Unfortunately, the study only confirmed that the effect is real, but can say nothing of how it works. What it says, to me based on my own experiences with highly polarized people, is that the harder you hit someone with an opposing viewpoint, the more resolutely they will dig their mental feet in the ground. A long term, subtle approach may be the only effective means. And what is worse, it seems that the longer and more subtler the approach, the better the results with the highly annoying side effect that it takes a long time.</p>

<p>This reminds me of a tactic used in corporate meetings, but that could really apply anywhere. If you wish to get an opponent to take your idea, often it is best to suggest the idea as though it came from the opponent and then to remark on what a fabulous idea it is. More often than not, people&#8217;s vanity will work in your favor. No one likes to admit they were wrong even when the idea was never really theirs to begin with.</p>

<p><strong>Can we treat ourselves?</strong></p>

<p>The first step to solving a problem, is admitting that you have one. We all have firm ideas, and future research will probably lend insight as to why we all suffer from Mental Inertia. The only effective self-treatment is to try to be conscious of it. Associate your displeasure with other people&#8217;s stubbornness with Mental Inertia. It&#8217;ll help us all to realize when we&#8217;re guilty ourselves.</p>

<p>So, should we abandon all of our firmly held beliefs? No, by all means, hold them dear, just be willing to honestly listen to new and contrary ideas.</p>
]]></content:encoded>
			<wfw:commentRss>http://notebook.3gfp.com/2009/08/on-mental-inertia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Right-Clicking in CoRD</title>
		<link>http://notebook.3gfp.com/2009/08/right-clicking-in-cord/</link>
		<comments>http://notebook.3gfp.com/2009/08/right-clicking-in-cord/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 18:06:57 +0000</pubDate>
		<dc:creator>sr105</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neveragain.sr105.com/?p=49</guid>
		<description><![CDATA[Noticed yesterday that trying to right click using a touchpad were not working correctly with CoRD. The trick?

Right-Clicking
From Cory Foy:

do a “Shift-Ctrl-Click” to access all the Right-Click goodness
]]></description>
			<content:encoded><![CDATA[<p>Noticed yesterday that trying to right click using a touchpad were not working correctly with CoRD. The trick?</p>

<p><strong>Right-Clicking</strong>
From <a href="http://blog.cornetdesign.com/2008/08/right-click-mapping-for-cord-on-osx/">Cory Foy</a>:</p>

<blockquote>do a “Shift-Ctrl-Click” to access all the Right-Click goodness</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://notebook.3gfp.com/2009/08/right-clicking-in-cord/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using CoRD Full Screen</title>
		<link>http://notebook.3gfp.com/2009/08/using-cord-full-screen/</link>
		<comments>http://notebook.3gfp.com/2009/08/using-cord-full-screen/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 18:05:24 +0000</pubDate>
		<dc:creator>sr105</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neveragain.sr105.com/?p=54</guid>
		<description><![CDATA[
        
        CoRD is a great Windows Remote Desktop client, however, it can be a little confusing to use in Full Screen. The trick is to start in Full Screen mode. Then, you can switch back-and-forth at will. If you start [...]]]></description>
			<content:encoded><![CDATA[<div class="LessonContent">
        <div class="LessonSummary">
        <p>CoRD is a great Windows Remote Desktop client, however, it can be a little confusing to use in Full Screen. The trick is to start in Full Screen mode. Then, you can switch back-and-forth at will. If you start in Windowed mode, it will disconnect when you try to connect Full Screen. I think this is due to a single resolution being negotiated on startup. So, in the former mode, it scales down from Full Screen to use a windowed mode.</p>   
    </div>
    
        <div class="LessonStep top">
            <h3 class="StepTitle">CoRD &#8211; Use Local Screen Size</h3>
        <div class="StepImage">
    <img src="http://neveragain.sr105.com/wp-content/uploads/2009/08/CoRD_-_Use_Local_Screen_Size.png" width="540" height="189" alt="CoRD_-_Use_Local_Screen_Size.png" />
</div> <div class="StepInstructions">
    <p>First things first, tell CoRD to use your local screen size for full screen if it&#8217;s not already set in the Preferences.</p>
</div>
    </div>
    <div class="LessonStep top">
            <h3 class="StepTitle">CoRD &#8211; Set Servers to Start Full Screen By Default</h3>
        <div class="StepImage">
    <img src="http://neveragain.sr105.com/wp-content/uploads/2009/08/CoRD_-_Set_Servers_to_Start_Full_Screen_By_Default.png" width="449" height="210" alt="CoRD_-_Set_Servers_to_Start_Full_Screen_By_Default.png" />
</div> <div class="StepInstructions">
    <p>If you&#8217;d like the full screen behavior by default for all new servers and connections you can set it here.</p>
</div>
    </div>
    <div class="LessonStep top">
            <h3 class="StepTitle">CoRD &#8211; Set a Server to Start Full Screen</h3>
        <div class="StepImage">
    <img src="http://neveragain.sr105.com/wp-content/uploads/2009/08/CoRD_-_Set_a_Server_to_Start_Full_Screen.png" width="403" height="345" alt="CoRD_-_Set_a_Server_to_Start_Full_Screen.png" />
</div> <div class="StepInstructions">
    <p>Or if you just want full screen on a case-by-case basis, set it on each individual server.</p>
</div>
    </div>

</div>
]]></content:encoded>
			<wfw:commentRss>http://notebook.3gfp.com/2009/08/using-cord-full-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One Reason to Dislike Spotlight</title>
		<link>http://notebook.3gfp.com/2009/08/one-reason-to-dislike-spotlight/</link>
		<comments>http://notebook.3gfp.com/2009/08/one-reason-to-dislike-spotlight/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 16:39:24 +0000</pubDate>
		<dc:creator>sr105</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neveragain.sr105.com/?p=42</guid>
		<description><![CDATA[It doesn&#8217;t do what it is supposed to do.

In this screenshot, I&#8217;m searching for the file that contains my Windows 7 Beta keys. See for yourself how well Spotlight performs. I keep thinking that I&#8217;ve been too harsh on Spotlight. I should give it another chance. Times passes, I think to myself, &#8220;where did I [...]]]></description>
			<content:encoded><![CDATA[<p><em>It doesn&#8217;t do what it is supposed to do.</em>
<div id="attachment_43" class="wp-caption aligncenter" style="width: 310px"><a href="http://neveragain.sr105.com/wp-content/uploads/2009/08/Spotlight-Does-Not-Work.png"><img src="http://neveragain.sr105.com/wp-content/uploads/2009/08/Spotlight-Does-Not-Work-300x219.png" alt="Image of Spotlight failing" title="Spotlight Does Not Work" width="300" height="219" class="size-medium wp-image-43" /></a><p class="wp-caption-text">Image of Spotlight failing</p></div>
In this screenshot, I&#8217;m searching for the file that contains my Windows 7 Beta keys. See for yourself how well Spotlight performs. I keep thinking that I&#8217;ve been too harsh on Spotlight. I should give it another chance. Times passes, I think to myself, &#8220;where did I put that file with the Windows 7 keys? I&#8217;ll bet I named it something obvious. Let&#8217;s use spotlight!&#8221; Then it spits in my face.</p>
]]></content:encoded>
			<wfw:commentRss>http://notebook.3gfp.com/2009/08/one-reason-to-dislike-spotlight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>94 Mbps</title>
		<link>http://notebook.3gfp.com/2009/07/94-mbps/</link>
		<comments>http://notebook.3gfp.com/2009/07/94-mbps/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 15:25:43 +0000</pubDate>
		<dc:creator>sr105</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://neveragain.sr105.com/?p=38</guid>
		<description><![CDATA[Wow, 94 Mbps! I&#8217;m transfering a 25 GB VMware Image from one machine to another through a 10/100 Mbps switch and am seeing 94 Mbps of throughput. The transfer is from an Ubuntu Linux machine to a MacBook Pro using the following command:
tar -c Ubuntu-8.10.vmwarevm &#124; ssh user@mymac.ip -- tar -x

I would have normally used [...]]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_39" class="wp-caption alignleft" style="width: 191px"><img src="http://neveragain.sr105.com/wp-content/uploads/2009/07/Region-capture-6.png" alt="94Mbps on a 100 Mbps link" title="94_Mbps" width="181" height="177" class="size-full wp-image-39" /><p class="wp-caption-text">94Mbps on a 100 Mbps link</p></div>
Wow, 94 Mbps! I&#8217;m transfering a 25 GB VMware Image from one machine to another through a 10/100 Mbps switch and am seeing 94 Mbps of throughput. The transfer is from an Ubuntu Linux machine to a MacBook Pro using the following command:
<code>tar -c Ubuntu-8.10.vmwarevm | ssh user@mymac.ip -- tar -x</code></p>

<p>I would have normally used scp to do the transfer, but had read ssh + tar was much faster due to scp&#8217;s implementation being inefficient. Guess, it&#8217;s true. Rock on, folks.</p>
]]></content:encoded>
			<wfw:commentRss>http://notebook.3gfp.com/2009/07/94-mbps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pesky Content Filters</title>
		<link>http://notebook.3gfp.com/2008/12/pesky-content-filters/</link>
		<comments>http://notebook.3gfp.com/2008/12/pesky-content-filters/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 15:12:56 +0000</pubDate>
		<dc:creator>sr105</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wordpress.3gfp.com:8080/?p=23</guid>
		<description><![CDATA[Sometimes companies can have some over zealous content filtering web-proxies/firewalls. To combat this, I&#8217;ve used this little SOCKS proxy called nylon in the past. Run it on your own Linux machine like so:

nylon -f -a company_ip

I like to run it in the foreground so I don&#8217;t forget to turn it off. Another note is that [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes companies can have some over zealous content filtering web-proxies/firewalls. To combat this, I&#8217;ve used this little SOCKS proxy called <a title="Nylon SOCKS proxy server" href="http://monkey.org/~marius/pages/?page=nylon">nylon</a> in the past. Run it on your own Linux machine like so:</p>

<p><code>nylon -f -a company_ip</code></p>

<p>I like to run it in the foreground so I don&#8217;t forget to turn it off. Another note is that for some reason I wasn&#8217;t able to get nylon to work with Firefox unless I told Firefox to use the older SOCKS v4 protocol. Nylon hasn&#8217;t been updated in a couple of years, perhaps it has a v5 bug?</p>

<p>Another option that I haven&#8217;t tried, but appears to work with windows as well is <a title="3proxy" href="http://3proxy.ru/">3proxy</a> (with the world&#8217;s worst website).</p>

<p>Finally, the two solutions above can give you full internet access and not just web pages. However, viewing web pages through a proxy in this manner can be quite sluggish, so it might be worth your time to use <a title="Squid Caching Web Proxy" href="http://www.squid-cache.org/">squid</a> as your web proxy since it caches content.</p>

<p>Here&#8217;s to freedom.</p>
]]></content:encoded>
			<wfw:commentRss>http://notebook.3gfp.com/2008/12/pesky-content-filters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->