<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Jason L. Froebe - Tech tips and How Tos for Fellow Techies</title>
	<atom:link href="http://froebe.net/blog/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://froebe.net/blog</link>
	<description>Tips &#38; Tricks for Databases (Sybase, Oracle, MySQL, PostgreSQL, SQLite), Windows, Linux, Solaris, Perl, Java, Bash and so much much more</description>
	<lastBuildDate>Mon, 23 Aug 2010 16:25:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Sybase&#8217;s PowerBuilder v12 is powerful, .NET based, and wonderful!  Why you shouldn&#8217;t use it by Alex</title>
		<link>http://froebe.net/blog/2009/08/27/sybases-powerbuilder-v12-is-powerful-net-based-and-wonderful-why-you-shouldnt-use-it/comment-page-1/#comment-10723</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 23 Aug 2010 16:25:17 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1100#comment-10723</guid>
		<description>Most of the people I know that moved from Powerbuilder to .NET have seen their projects moving from few months to couple of years. At least the ones working with a database of few hundred tables.
There is a reason why you can&#039;t find an example in .NET where there&#039;s an updatable dataset with outer joins. It&#039;s because .NET forces you to write tons of code (all manual) as soon as you enter into something more complicated that a single table. 
So: marketing (and consultants that live on hourly fees) try to convince you that outer joins are EVIL and they write million articles telling you that:

select orderid, orderno,
(select companycode from company where companyid = orderid),
(select companyname from company where companyid = orderid),
(select vendorcode from vendor where vendorid = orderid),
(select vendorname from vendor where vendorid = orderid),
(select vendoraddress from vendor where vendorid = orderid),
(select vendorphone from vendor where vendorid = orderid)
from orders
))

is better than:

select orderid, orderno, companycode, companyname, vendorcode, vendorname, vendorphone
from orders 
left outer join company on orders.companyid = orderform.companyid
left outer join vendor on orders.vendorid = vendor.vendorid

or that:

select orderid, orderno, 
(select companycode from company where companyid = orderid),
(select companyname from company where companyid = orderid),
(select vendorcode from vendor where vendorid = orderid),
(select vendorname from vendor where vendorid = orderid),
(select vendoraddress from vendor where vendorid = orderid),
(select vendorphone from vendor where vendorid = orderid)
from orders
where 
companyid in (select companyid from company where companycode like &#039;%C&#039;)
and
vendorid in (select vendorid from vendor where vendorcode like &#039;%V&#039;)

it&#039;s better than:

select orderid, orderno, companycode, companyname, vendorcode, vendorname, vendoraddress, vendorphone
from orders, company, vendor 
where 
orders.companyid = company.companyid and companycode like &#039;%C&#039; 
orders.vendorid = vendor.vendorid and vendorcode like &#039;%V&#039;

and here I made a simple example, the more complex the more disastrous the so called &quot;new best practices&quot; wants you to work.

Not to mention the difficulties in .NET of getting the database table name or column name from a column in a dataset (especially if you have aliases). Yes I know you can call GetSchemaInfo but it does not return for instance the real table if the original SQL script has Aliases (the last time I have checked).

So first they told us the story that the way to work with database is only using stored procedures, then they added LINQ, then they realized that people was still struggling and they added Entity Framework.

If you follow the evolution of the .NET framework you would have to rewrite your app every year (focusing on the flavour data-access method of the day (all flawed in real world cases) and less on what you need to do.

In Powerbuilder you just collect all tables you need for your data entry graphically and without effort with few clicks, select the table that needs to be updated and then write:

dw_1.AcceptText()
dw_1.Update()
commit using sqlca;

And that works on multiple databases (SQL Server, Sybase, Oracle etc).

3 lines, yes, I know it&#039;s horrifying that it&#039;s so easy to do database applications with Powerbuilder, but for us, it&#039;s better to be productive than trendy.
I know people that stated: I can&#039;t accept that the system writes the CRUD for ME! ADO.NET allows me to do it myself and this is the correct separation between presentation and logic 
(and they end up 99.99% writing by hand the same statement PB would write automatically).
For one table it&#039;s ok, but when you start something serious it becomes incredibly tedious.

I can recompile an application from version 5 of Powerbuilder to version 11.5 almost without changes (and not because there are no difference between the versions but because PB  always improved something that works and does not require a different way of doing the same things every 6 months)

Visual inheritance in Powerbuilder is an absolutely brilliant work of productivity.
Visual Studio does not even come close.
Now I remember I have to check out PB 12 (it seems that PB supports visual inheritance for WFC that is generally not supported by the .NET framework :-) ).

Sorry for my bad English, it&#039;s not my first language :-)</description>
		<content:encoded><![CDATA[<p>Most of the people I know that moved from Powerbuilder to .NET have seen their projects moving from few months to couple of years. At least the ones working with a database of few hundred tables.<br />
There is a reason why you can&#8217;t find an example in .NET where there&#8217;s an updatable dataset with outer joins. It&#8217;s because .NET forces you to write tons of code (all manual) as soon as you enter into something more complicated that a single table.<br />
So: marketing (and consultants that live on hourly fees) try to convince you that outer joins are EVIL and they write million articles telling you that:</p>
<p>select orderid, orderno,<br />
(select companycode from company where companyid = orderid),<br />
(select companyname from company where companyid = orderid),<br />
(select vendorcode from vendor where vendorid = orderid),<br />
(select vendorname from vendor where vendorid = orderid),<br />
(select vendoraddress from vendor where vendorid = orderid),<br />
(select vendorphone from vendor where vendorid = orderid)<br />
from orders<br />
))</p>
<p>is better than:</p>
<p>select orderid, orderno, companycode, companyname, vendorcode, vendorname, vendorphone<br />
from orders<br />
left outer join company on orders.companyid = orderform.companyid<br />
left outer join vendor on orders.vendorid = vendor.vendorid</p>
<p>or that:</p>
<p>select orderid, orderno,<br />
(select companycode from company where companyid = orderid),<br />
(select companyname from company where companyid = orderid),<br />
(select vendorcode from vendor where vendorid = orderid),<br />
(select vendorname from vendor where vendorid = orderid),<br />
(select vendoraddress from vendor where vendorid = orderid),<br />
(select vendorphone from vendor where vendorid = orderid)<br />
from orders<br />
where<br />
companyid in (select companyid from company where companycode like &#8216;%C&#8217;)<br />
and<br />
vendorid in (select vendorid from vendor where vendorcode like &#8216;%V&#8217;)</p>
<p>it&#8217;s better than:</p>
<p>select orderid, orderno, companycode, companyname, vendorcode, vendorname, vendoraddress, vendorphone<br />
from orders, company, vendor<br />
where<br />
orders.companyid = company.companyid and companycode like &#8216;%C&#8217;<br />
orders.vendorid = vendor.vendorid and vendorcode like &#8216;%V&#8217;</p>
<p>and here I made a simple example, the more complex the more disastrous the so called &#8220;new best practices&#8221; wants you to work.</p>
<p>Not to mention the difficulties in .NET of getting the database table name or column name from a column in a dataset (especially if you have aliases). Yes I know you can call GetSchemaInfo but it does not return for instance the real table if the original SQL script has Aliases (the last time I have checked).</p>
<p>So first they told us the story that the way to work with database is only using stored procedures, then they added LINQ, then they realized that people was still struggling and they added Entity Framework.</p>
<p>If you follow the evolution of the .NET framework you would have to rewrite your app every year (focusing on the flavour data-access method of the day (all flawed in real world cases) and less on what you need to do.</p>
<p>In Powerbuilder you just collect all tables you need for your data entry graphically and without effort with few clicks, select the table that needs to be updated and then write:</p>
<p>dw_1.AcceptText()<br />
dw_1.Update()<br />
commit using sqlca;</p>
<p>And that works on multiple databases (SQL Server, Sybase, Oracle etc).</p>
<p>3 lines, yes, I know it&#8217;s horrifying that it&#8217;s so easy to do database applications with Powerbuilder, but for us, it&#8217;s better to be productive than trendy.<br />
I know people that stated: I can&#8217;t accept that the system writes the CRUD for ME! ADO.NET allows me to do it myself and this is the correct separation between presentation and logic<br />
(and they end up 99.99% writing by hand the same statement PB would write automatically).<br />
For one table it&#8217;s ok, but when you start something serious it becomes incredibly tedious.</p>
<p>I can recompile an application from version 5 of Powerbuilder to version 11.5 almost without changes (and not because there are no difference between the versions but because PB  always improved something that works and does not require a different way of doing the same things every 6 months)</p>
<p>Visual inheritance in Powerbuilder is an absolutely brilliant work of productivity.<br />
Visual Studio does not even come close.<br />
Now I remember I have to check out PB 12 (it seems that PB supports visual inheritance for WFC that is generally not supported by the .NET framework <img src='http://froebe.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ).</p>
<p>Sorry for my bad English, it&#8217;s not my first language <img src='http://froebe.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using AviDemux 2.4.1 to convert a video to h.264 mpeg4 for the Sony Playstation 3 by Claire</title>
		<link>http://froebe.net/blog/2008/06/18/using-avidemux-241-to-convert-a-video-to-h264-mpeg4-for-the-sony-playstation-3/comment-page-1/#comment-10722</link>
		<dc:creator>Claire</dc:creator>
		<pubDate>Mon, 23 Aug 2010 14:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=507#comment-10722</guid>
		<description>Thank you for this, my boyfriend has been wanting to do this for months now. I was luck I found your post, no idea how I got here though lol.</description>
		<content:encoded><![CDATA[<p>Thank you for this, my boyfriend has been wanting to do this for months now. I was luck I found your post, no idea how I got here though lol.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle 10g: How to create an Enterprise Manager instance on the command line by Jason L Froebe</title>
		<link>http://froebe.net/blog/2008/11/14/oracle-10g-how-to-create-an-enterprise-manager-instance-on-the-command-line/comment-page-1/#comment-10717</link>
		<dc:creator>Jason L Froebe</dc:creator>
		<pubDate>Wed, 18 Aug 2010 22:09:36 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=750#comment-10717</guid>
		<description>to reuse the port that Oracle Enterprise Manager listens on, you need to specify the DBCONTROL_HTTP_PORT:

% emca -config dbcontrol db -DBCONTROL_HTTP_PORT 1158</description>
		<content:encoded><![CDATA[<p>to reuse the port that Oracle Enterprise Manager listens on, you need to specify the DBCONTROL_HTTP_PORT:</p>
<p>% emca -config dbcontrol db -DBCONTROL_HTTP_PORT 1158</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting &#8220;Xlib: PuTTY X11 proxy: wrong authentication protocol attempted&#8221;?  I have the answer :) by Bernard</title>
		<link>http://froebe.net/blog/2008/11/14/getting-xlib-putty-x11-proxy-wrong-authentication-protocol-attempted-i-have-the-answer/comment-page-2/#comment-10716</link>
		<dc:creator>Bernard</dc:creator>
		<pubDate>Mon, 16 Aug 2010 22:48:28 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=755#comment-10716</guid>
		<description>Thanks, very helpfull info.</description>
		<content:encoded><![CDATA[<p>Thanks, very helpfull info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Howto:  Unable to start Catalyst web applications using the built in development server?  We have the answer by Phil Medes</title>
		<link>http://froebe.net/blog/2010/05/16/howto-unable-to-start-catalyst-web-applications-using-the-built-in-development-server-we-have-the-answer/comment-page-1/#comment-10714</link>
		<dc:creator>Phil Medes</dc:creator>
		<pubDate>Mon, 16 Aug 2010 15:21:09 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1241#comment-10714</guid>
		<description>I used the batch file,  catalyst.bat, instead and it worked.   Apparently the book was wrong.</description>
		<content:encoded><![CDATA[<p>I used the batch file,  catalyst.bat, instead and it worked.   Apparently the book was wrong.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Froebe Family by Max E Frobe</title>
		<link>http://froebe.net/blog/froebe-family/comment-page-1/#comment-10710</link>
		<dc:creator>Max E Frobe</dc:creator>
		<pubDate>Fri, 13 Aug 2010 19:12:56 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/froebe-family/#comment-10710</guid>
		<description>Hi nice to see your website with some Frobe history !
My grandfather was Max Frobe . 
Not long before world war 2 he got a job on a steamship . The ship did not dock so he had to swim the harbor with only the cloths on this back.
He got a job at a brewery in Pittsburg that was owned by relatives.
He had a son Max C Frobe who moved to California where i was born.
I guess i am Max the 3rd , i currently live in Canada.
Hope this is of some help to the family tree.</description>
		<content:encoded><![CDATA[<p>Hi nice to see your website with some Frobe history !<br />
My grandfather was Max Frobe .<br />
Not long before world war 2 he got a job on a steamship . The ship did not dock so he had to swim the harbor with only the cloths on this back.<br />
He got a job at a brewery in Pittsburg that was owned by relatives.<br />
He had a son Max C Frobe who moved to California where i was born.<br />
I guess i am Max the 3rd , i currently live in Canada.<br />
Hope this is of some help to the family tree.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using VMware vCenter Converter and getting a SQL_CANTOPEN or similar error by Kris</title>
		<link>http://froebe.net/blog/2010/06/18/using-vmware-vcenter-converter-and-getting-a-sql_cantopen-or-similar-error/comment-page-1/#comment-10709</link>
		<dc:creator>Kris</dc:creator>
		<pubDate>Thu, 12 Aug 2010 11:12:26 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1257#comment-10709</guid>
		<description>Thank you! in my case I disabled Crashplan which I guess was causing the same issue (locked file).</description>
		<content:encoded><![CDATA[<p>Thank you! in my case I disabled Crashplan which I guess was causing the same issue (locked file).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting &#8220;Xlib: PuTTY X11 proxy: wrong authentication protocol attempted&#8221;?  I have the answer :) by paul</title>
		<link>http://froebe.net/blog/2008/11/14/getting-xlib-putty-x11-proxy-wrong-authentication-protocol-attempted-i-have-the-answer/comment-page-1/#comment-10708</link>
		<dc:creator>paul</dc:creator>
		<pubDate>Tue, 10 Aug 2010 14:13:49 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=755#comment-10708</guid>
		<description>this worked! wow thanks</description>
		<content:encoded><![CDATA[<p>this worked! wow thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ceiling() and Floor() functions for Perl? by Jason L Froebe</title>
		<link>http://froebe.net/blog/2007/08/03/ceiling-and-floor-functions-for-perl/comment-page-1/#comment-10707</link>
		<dc:creator>Jason L Froebe</dc:creator>
		<pubDate>Mon, 09 Aug 2010 22:32:13 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/2007/08/03/ceiling-and-floor-functions-for-perl/#comment-10707</guid>
		<description>I&#039;ll modify it shortly.  thanks! :)</description>
		<content:encoded><![CDATA[<p>I&#8217;ll modify it shortly.  thanks! <img src='http://froebe.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Howto:  Unable to start Catalyst web applications using the built in development server?  We have the answer by Phil Medes</title>
		<link>http://froebe.net/blog/2010/05/16/howto-unable-to-start-catalyst-web-applications-using-the-built-in-development-server-we-have-the-answer/comment-page-1/#comment-10706</link>
		<dc:creator>Phil Medes</dc:creator>
		<pubDate>Mon, 09 Aug 2010 15:38:48 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1241#comment-10706</guid>
		<description>I wanted to start using Catalyst using Stawberry Perl on Vista.   I tried installing the framework using cpan.    After I was done with the installation, I tried runing from the Commandline:  &quot;catalyst.pl MyAPP&quot;.   Instead of creating a new application, it just displayed the helpl message!   Now I have no clue what to do.   I don&#039;t know how to uninstall Catalyst, so I can&#039;t try reinstalling it.</description>
		<content:encoded><![CDATA[<p>I wanted to start using Catalyst using Stawberry Perl on Vista.   I tried installing the framework using cpan.    After I was done with the installation, I tried runing from the Commandline:  &#8220;catalyst.pl MyAPP&#8221;.   Instead of creating a new application, it just displayed the helpl message!   Now I have no clue what to do.   I don&#8217;t know how to uninstall Catalyst, so I can&#8217;t try reinstalling it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ceiling() and Floor() functions for Perl? by Soup d'Campbells</title>
		<link>http://froebe.net/blog/2007/08/03/ceiling-and-floor-functions-for-perl/comment-page-1/#comment-10705</link>
		<dc:creator>Soup d'Campbells</dc:creator>
		<pubDate>Mon, 09 Aug 2010 15:30:50 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/2007/08/03/ceiling-and-floor-functions-for-perl/#comment-10705</guid>
		<description>You should not use the CSS glow effect on source code. Your readers may be interested in actually reading the source; as it stands, most of your keywords are formless blobs.</description>
		<content:encoded><![CDATA[<p>You should not use the CSS glow effect on source code. Your readers may be interested in actually reading the source; as it stands, most of your keywords are formless blobs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting &#8220;Xlib: PuTTY X11 proxy: wrong authentication protocol attempted&#8221;?  I have the answer :) by tava tea</title>
		<link>http://froebe.net/blog/2008/11/14/getting-xlib-putty-x11-proxy-wrong-authentication-protocol-attempted-i-have-the-answer/comment-page-1/#comment-10704</link>
		<dc:creator>tava tea</dc:creator>
		<pubDate>Sat, 07 Aug 2010 20:10:16 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=755#comment-10704</guid>
		<description>I’ve been struggling with this issue for months and been doing silent Oracle installations as a result at one of my clients. I just tried your suggestion and it worked like a charm.</description>
		<content:encoded><![CDATA[<p>I’ve been struggling with this issue for months and been doing silent Oracle installations as a result at one of my clients. I just tried your suggestion and it worked like a charm.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Having trouble with VMware Player&#8217;s (or Workstation) Unity mode and Ubuntu Linux?  Are you using the NVidia display driver with multiple monitors? by Watts</title>
		<link>http://froebe.net/blog/2010/06/23/having-trouble-with-vmware-players-or-workstation-unity-mode-and-ubuntu-linux-are-you-using-the-nvidia-display-driver-with-multiple-monitors/comment-page-1/#comment-10703</link>
		<dc:creator>Watts</dc:creator>
		<pubDate>Wed, 04 Aug 2010 04:55:04 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1262#comment-10703</guid>
		<description>thanks for information about  nvidia graphics settings</description>
		<content:encoded><![CDATA[<p>thanks for information about  nvidia graphics settings</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using VMware vCenter Converter and getting a SQL_CANTOPEN or similar error by Rawle Jordan</title>
		<link>http://froebe.net/blog/2010/06/18/using-vmware-vcenter-converter-and-getting-a-sql_cantopen-or-similar-error/comment-page-1/#comment-10702</link>
		<dc:creator>Rawle Jordan</dc:creator>
		<pubDate>Tue, 03 Aug 2010 20:02:52 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1257#comment-10702</guid>
		<description>Got this error trying to copy a physical machine .it turn out to be the Anti-virus database running on the physical PC.
close the anti-virus .no more errors.</description>
		<content:encoded><![CDATA[<p>Got this error trying to copy a physical machine .it turn out to be the Anti-virus database running on the physical PC.<br />
close the anti-virus .no more errors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sybase Replication Server:  Out of Mutexes?  wtf? by Jason L Froebe</title>
		<link>http://froebe.net/blog/2007/12/07/sybase-replication-server-out-of-mutexes-wtf/comment-page-1/#comment-10701</link>
		<dc:creator>Jason L Froebe</dc:creator>
		<pubDate>Tue, 03 Aug 2010 12:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/2007/12/07/sybase-replication-server-out-of-mutexes-wtf/#comment-10701</guid>
		<description>Mutually exclusive lock - http://en.wikipedia.org/wiki/Mutex</description>
		<content:encoded><![CDATA[<p>Mutually exclusive lock &#8211; <a href="http://en.wikipedia.org/wiki/Mutex">http://en.wikipedia.org/wiki/Mutex</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sybase Replication Server:  Out of Mutexes?  wtf? by Indra</title>
		<link>http://froebe.net/blog/2007/12/07/sybase-replication-server-out-of-mutexes-wtf/comment-page-1/#comment-10700</link>
		<dc:creator>Indra</dc:creator>
		<pubDate>Tue, 03 Aug 2010 06:34:48 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/2007/12/07/sybase-replication-server-out-of-mutexes-wtf/#comment-10700</guid>
		<description>Jason,

Could u pls explain what exactly the meaning of &#039;mutex&#039; ?

Thanks, Indra</description>
		<content:encoded><![CDATA[<p>Jason,</p>
<p>Could u pls explain what exactly the meaning of &#8216;mutex&#8217; ?</p>
<p>Thanks, Indra</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting &#8220;Xlib: PuTTY X11 proxy: wrong authentication protocol attempted&#8221;?  I have the answer :) by Bob</title>
		<link>http://froebe.net/blog/2008/11/14/getting-xlib-putty-x11-proxy-wrong-authentication-protocol-attempted-i-have-the-answer/comment-page-1/#comment-10697</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Fri, 30 Jul 2010 03:58:37 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=755#comment-10697</guid>
		<description>Awesome.  Thank you, thank you, thank you!</description>
		<content:encoded><![CDATA[<p>Awesome.  Thank you, thank you, thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Video: Sun/Oracle&#8217;s Netbeans 6.7 and the GlassFish version 3 application server by Jason L Froebe</title>
		<link>http://froebe.net/blog/2009/08/17/video-sunoracles-netbeans-6-7-and-the-glassfish-version-3-application-server/comment-page-1/#comment-10694</link>
		<dc:creator>Jason L Froebe</dc:creator>
		<pubDate>Thu, 29 Jul 2010 12:15:36 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1096#comment-10694</guid>
		<description>Unfortunately, there isn&#039;t a free version of PowerBuilder.  You can contact Sybase for an evaluation copy (90 days I believe) though.  http://www.sybase.com/powerbuilder</description>
		<content:encoded><![CDATA[<p>Unfortunately, there isn&#8217;t a free version of PowerBuilder.  You can contact Sybase for an evaluation copy (90 days I believe) though.  <a href="http://www.sybase.com/powerbuilder">http://www.sybase.com/powerbuilder</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting &#8220;Xlib: PuTTY X11 proxy: wrong authentication protocol attempted&#8221;?  I have the answer :) by joel cario</title>
		<link>http://froebe.net/blog/2008/11/14/getting-xlib-putty-x11-proxy-wrong-authentication-protocol-attempted-i-have-the-answer/comment-page-1/#comment-10693</link>
		<dc:creator>joel cario</dc:creator>
		<pubDate>Thu, 29 Jul 2010 07:38:03 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=755#comment-10693</guid>
		<description>Great work Jason thanks so much for posting this solution - it really helped me do an open solaris install. [ unbelievably they don&#039;t have a proper text install option yet ]

-gregoire</description>
		<content:encoded><![CDATA[<p>Great work Jason thanks so much for posting this solution &#8211; it really helped me do an open solaris install. [ unbelievably they don't have a proper text install option yet ]</p>
<p>-gregoire</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to: Installing VMware ESXi 4 on a 6 year old cheap motherboard by Ben</title>
		<link>http://froebe.net/blog/2010/02/15/how-to-installing-vmware-esxi-4-on-a-6-year-old-cheap-motherboard/comment-page-1/#comment-10692</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Tue, 27 Jul 2010 23:33:51 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1203#comment-10692</guid>
		<description>Thank you Jason for this!

It works with 4.0 U1 for sure (Bob&#039;s comments above are simply not true)!
Also, guys, keep in mind that you will need to update the oem.tgz according to you own hw.

Refs: 
- http://vm-help.com/esx40i/Hardware_support.php
- http://www.pcidatabase.com/

BTW - It also works for 4.1 but I am getting another error that has nothing to do with the SATA drivers - &quot;unable to find image to install image not being mounted correctly&quot;.

I will settle for the 4.0 U1 for now...

Many thanks,

Ben.</description>
		<content:encoded><![CDATA[<p>Thank you Jason for this!</p>
<p>It works with 4.0 U1 for sure (Bob&#8217;s comments above are simply not true)!<br />
Also, guys, keep in mind that you will need to update the oem.tgz according to you own hw.</p>
<p>Refs:<br />
- <a href="http://vm-help.com/esx40i/Hardware_support.php">http://vm-help.com/esx40i/Hardware_support.php</a><br />
- <a href="http://www.pcidatabase.com/">http://www.pcidatabase.com/</a></p>
<p>BTW &#8211; It also works for 4.1 but I am getting another error that has nothing to do with the SATA drivers &#8211; &#8220;unable to find image to install image not being mounted correctly&#8221;.</p>
<p>I will settle for the 4.0 U1 for now&#8230;</p>
<p>Many thanks,</p>
<p>Ben.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
