<?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, 15 Mar 2010 12:48:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Trying to compile gspca on Ubuntu 9.04 or another recent Linux distribution?  We have the way! by Pepe</title>
		<link>http://froebe.net/blog/2009/10/13/trying-to-compile-gspca-on-ubuntu-9-04-or-another-recent-linux-distribution-we-have-the-way/comment-page-1/#comment-10491</link>
		<dc:creator>Pepe</dc:creator>
		<pubDate>Mon, 15 Mar 2010 12:48:40 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1140#comment-10491</guid>
		<description>Doesn&#039;t work with 2.6.31.20-generic

/home/jariza/Escritorio/webcam/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:122: error: called object ‘info’ is not a function</description>
		<content:encoded><![CDATA[<p>Doesn&#8217;t work with 2.6.31.20-generic</p>
<p>/home/jariza/Escritorio/webcam/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:122: error: called object ‘info’ is not a function</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to create an iTunes/iPod compatible audiobook (MPEG4 m4b) on Linux using MP4Box and mp4v2 v1.9.1 &#8211; it can be done! by PG</title>
		<link>http://froebe.net/blog/2009/12/24/how-to-create-an-itunesipod-compatible-audiobook-mpeg4-m4b-on-linux-using-mp4box-and-mp4v2-v1-9-1-it-can-be-done/comment-page-1/#comment-10488</link>
		<dc:creator>PG</dc:creator>
		<pubDate>Sun, 14 Mar 2010 11:31:45 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1163#comment-10488</guid>
		<description>I thought a sample workflow might be useful:

- decode MP3s
cd /home/music/directory
for i in *.mp3; do lame --decode &quot;$i&quot; &quot;`basename &quot;$i&quot; .mp3`&quot;.wav; done

- combine wavs into one mp4 file (repeat -if file.wav for each wav)
neroAacEnc -cbr 64000 -if file1.wav -if file2.wav -of out.mp4

- convert chapters
mp4chaps --convert --chapter-qt out.mp4

- add tags
neroAacTag out.mp4 -meta:title=&quot;book name&quot; -meta:artist=&quot;author&quot; -add-cover:front:cover.jpg

- rename to m4b
mv out.mp4 finalBookName.m4b</description>
		<content:encoded><![CDATA[<p>I thought a sample workflow might be useful:</p>
<p>- decode MP3s<br />
cd /home/music/directory<br />
for i in *.mp3; do lame &#8211;decode &#8220;$i&#8221; &#8220;`basename &#8220;$i&#8221; .mp3`&#8221;.wav; done</p>
<p>- combine wavs into one mp4 file (repeat -if file.wav for each wav)<br />
neroAacEnc -cbr 64000 -if file1.wav -if file2.wav -of out.mp4</p>
<p>- convert chapters<br />
mp4chaps &#8211;convert &#8211;chapter-qt out.mp4</p>
<p>- add tags<br />
neroAacTag out.mp4 -meta:title=&#8221;book name&#8221; -meta:artist=&#8221;author&#8221; -add-cover:front:cover.jpg</p>
<p>- rename to m4b<br />
mv out.mp4 finalBookName.m4b</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to create an iTunes/iPod compatible audiobook (MPEG4 m4b) on Linux using MP4Box and mp4v2 v1.9.1 &#8211; it can be done! by PG</title>
		<link>http://froebe.net/blog/2009/12/24/how-to-create-an-itunesipod-compatible-audiobook-mpeg4-m4b-on-linux-using-mp4box-and-mp4v2-v1-9-1-it-can-be-done/comment-page-1/#comment-10487</link>
		<dc:creator>PG</dc:creator>
		<pubDate>Sun, 14 Mar 2010 11:11:35 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1163#comment-10487</guid>
		<description>Thanks for this useful blog.

I just wanted to let you know that the free (as in beer but not as in speech) Nero encoder has an album mode which combines multiple input files into one output file and automatically adds chapter marks, so you don&#039;t have to create a chapter file.  You do still need to run mp4chaps to convert the chapter types though.

The downside is it only takes wav files as input so you have to decode your MP3s first, but as a bonus it also comes with a tagger which can set album titles and also add cover art.  I believe it is a much better quality encoder than faac too, but I&#039;m no expert on that!</description>
		<content:encoded><![CDATA[<p>Thanks for this useful blog.</p>
<p>I just wanted to let you know that the free (as in beer but not as in speech) Nero encoder has an album mode which combines multiple input files into one output file and automatically adds chapter marks, so you don&#8217;t have to create a chapter file.  You do still need to run mp4chaps to convert the chapter types though.</p>
<p>The downside is it only takes wav files as input so you have to decode your MP3s first, but as a bonus it also comes with a tagger which can set album titles and also add cover art.  I believe it is a much better quality encoder than faac too, but I&#8217;m no expert on that!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Did you write an article for ISUG&#8217;s Technical Journal and either haven&#8217;t been paid or refused payment? by Jason L Froebe</title>
		<link>http://froebe.net/blog/2010/02/17/did-you-write-an-article-for-isugs-technical-journal-and-either-havent-been-paid-or-refused-payment/comment-page-1/#comment-10486</link>
		<dc:creator>Jason L Froebe</dc:creator>
		<pubDate>Sun, 14 Mar 2010 02:51:38 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1209#comment-10486</guid>
		<description>Yes, I was on the board of directors for a couple years.  There are several articles I was never paid for and the President of ISUG refuses to discuss them.  I&#039;m not the only author that the ISUG &quot;Executive Committee&quot; have cheated.  Sybase is unwilling to get involved as Sybase considers it an internal matter to ISUG.

If I would have known I wouldn&#039;t get paid prior to writing the articles, I could have written them off on my taxes as donations.  I think I would have been okay with that.   However, an agreement was made on a sum of money for each article I wrote and had published in the ISUG Technical Journal.  

It&#039;s a sad day when agreements that were made are broken.</description>
		<content:encoded><![CDATA[<p>Yes, I was on the board of directors for a couple years.  There are several articles I was never paid for and the President of ISUG refuses to discuss them.  I&#8217;m not the only author that the ISUG &#8220;Executive Committee&#8221; have cheated.  Sybase is unwilling to get involved as Sybase considers it an internal matter to ISUG.</p>
<p>If I would have known I wouldn&#8217;t get paid prior to writing the articles, I could have written them off on my taxes as donations.  I think I would have been okay with that.   However, an agreement was made on a sum of money for each article I wrote and had published in the ISUG Technical Journal.  </p>
<p>It&#8217;s a sad day when agreements that were made are broken.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Did you write an article for ISUG&#8217;s Technical Journal and either haven&#8217;t been paid or refused payment? by Mark Gearhart</title>
		<link>http://froebe.net/blog/2010/02/17/did-you-write-an-article-for-isugs-technical-journal-and-either-havent-been-paid-or-refused-payment/comment-page-1/#comment-10485</link>
		<dc:creator>Mark Gearhart</dc:creator>
		<pubDate>Sun, 14 Mar 2010 02:17:13 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1209#comment-10485</guid>
		<description>I thought you were on the ISUG board, or something like that? That&#039;s pretty strange not getting paid. I was thinking about writing an another article, not so much for money but more for exposure. I am curious, do you have an numbers on the circulation? If people arn&#039;t getting paid, maybe its time to raise a flag with Sybase, Inc.</description>
		<content:encoded><![CDATA[<p>I thought you were on the ISUG board, or something like that? That&#8217;s pretty strange not getting paid. I was thinking about writing an another article, not so much for money but more for exposure. I am curious, do you have an numbers on the circulation? If people arn&#8217;t getting paid, maybe its time to raise a flag with Sybase, Inc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting err = -39 with Apple&#8217;s iTunes? by Catherine</title>
		<link>http://froebe.net/blog/2007/10/05/getting-err-39-with-itunes/comment-page-1/#comment-10465</link>
		<dc:creator>Catherine</dc:creator>
		<pubDate>Wed, 10 Mar 2010 17:02:12 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/2007/10/05/getting-err-39-with-itunes/#comment-10465</guid>
		<description>Thank you! That was so easy. I Googled err 39 and your site was the first and most helpful result. The error was driving me bonkers; I never would have figured it out.</description>
		<content:encoded><![CDATA[<p>Thank you! That was so easy. I Googled err 39 and your site was the first and most helpful result. The error was driving me bonkers; I never would have figured it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASE 15 stored procedure &#8220;sp_tables&#8221; doesn&#8217;t work with SQL UDFs by Jason L Froebe</title>
		<link>http://froebe.net/blog/2008/04/09/ase-15-stored-procedure-sp_tables-doesnt-work-with-sql-udfs/comment-page-1/#comment-10459</link>
		<dc:creator>Jason L Froebe</dc:creator>
		<pubDate>Tue, 09 Mar 2010 02:02:11 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=459#comment-10459</guid>
		<description>I&#039;ve opened a case with Sybase TechSupport for status and a time frame we can expect this simple fix.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve opened a case with Sybase TechSupport for status and a time frame we can expect this simple fix.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASE 15 stored procedure &#8220;sp_tables&#8221; doesn&#8217;t work with SQL UDFs by Ranko</title>
		<link>http://froebe.net/blog/2008/04/09/ase-15-stored-procedure-sp_tables-doesnt-work-with-sql-udfs/comment-page-1/#comment-10458</link>
		<dc:creator>Ranko</dc:creator>
		<pubDate>Tue, 09 Mar 2010 00:52:02 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=459#comment-10458</guid>
		<description>Well, a few years later and sp_tables is still broken in ASE 15.5</description>
		<content:encoded><![CDATA[<p>Well, a few years later and sp_tables is still broken in ASE 15.5</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Trying to compile gspca on Ubuntu 9.04 or another recent Linux distribution?  We have the way! by Jason L Froebe</title>
		<link>http://froebe.net/blog/2009/10/13/trying-to-compile-gspca-on-ubuntu-9-04-or-another-recent-linux-distribution-we-have-the-way/comment-page-1/#comment-10451</link>
		<dc:creator>Jason L Froebe</dc:creator>
		<pubDate>Fri, 05 Mar 2010 18:49:57 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1140#comment-10451</guid>
		<description>Pretty much expected..  Linux kernel 2.6.9 is pretty old.  You may want to use 2.6.26 or higher</description>
		<content:encoded><![CDATA[<p>Pretty much expected..  Linux kernel 2.6.9 is pretty old.  You may want to use 2.6.26 or higher</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Trying to compile gspca on Ubuntu 9.04 or another recent Linux distribution?  We have the way! by Nikhil Padala</title>
		<link>http://froebe.net/blog/2009/10/13/trying-to-compile-gspca-on-ubuntu-9-04-or-another-recent-linux-distribution-we-have-the-way/comment-page-1/#comment-10450</link>
		<dc:creator>Nikhil Padala</dc:creator>
		<pubDate>Fri, 05 Mar 2010 18:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1140#comment-10450</guid>
		<description>Error:

nik@nik:~/Desktop/2.6.9/gspcav1-20071224$ sudo ./gspca_build

 REMOVE the old module if present
ERROR: Module gspca does not exist in /proc/modules

 CLEAN gspca source tree
rm -r -f *.o decoder/.gspcadecoder.o.cmd decoder/*.o \
	.gspca.o.cmd  *.o *.ko *.mod.* .[a-z]* core *.i \
	*.symvers *.err

 COMPILE gspca Please Wait ....!!

 INSTALL gspca in the kernel binary tree
mkdir -p /lib/modules/`uname -r`/kernel/drivers/usb/media/
rm -f /lib/modules/`uname -r`/kernel/drivers/usb/media/spca5xx.ko
rm -f /lib/modules/`uname -r`/kernel/drivers/media/video/gspca.ko
install -c -m 0644 gspca.ko /lib/modules/`uname -r`/kernel/drivers/usb/media/
install: cannot stat `gspca.ko&#039;: No such file or directory
make: *** [install] Error 1

 LOAD gspca in memory 
FATAL: Module gspca not found.

 PRINT COMPILATION MESSAGES if ERRORS look kgspca.err 
make -C /lib/modules/`uname -r`/build SUBDIRS=/home/nik/Desktop/2.6.9/gspcav1-20071224 CC=cc modules
make[1]: Entering directory `/usr/src/linux-headers-2.6.31-19-generic&#039;
  CC [M]  /home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.o
In file included from /home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:845:
/home/nik/Desktop/2.6.9/gspcav1-20071224/utils/spcausb.h: In function ‘spca5xxRegRead’:
/home/nik/Desktop/2.6.9/gspcav1-20071224/utils/spcausb.h:95: error: implicit declaration of function ‘info’
/home/nik/Desktop/2.6.9/gspcav1-20071224/utils/spcausb.h: In function ‘spca_set_interface’:
/home/nik/Desktop/2.6.9/gspcav1-20071224/utils/spcausb.h:278: error: implicit declaration of function ‘warn’
In file included from /home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:853:
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h: In function ‘sp5xxfw2_init’:
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:122: error: called object ‘info’ is not a function
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:136: error: called object ‘info’ is not a function
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:141: error: called object ‘info’ is not a function
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:148: error: called object ‘info’ is not a function
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:176: error: called object ‘info’ is not a function
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h: In function ‘sp5xxfw2_start’:
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:214: error: called object ‘info’ is not a function
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:230: error: called object ‘info’ is not a function
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c: In function ‘spca5xx_ioctl’:
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:2463: warning: passing argument 1 of ‘video_usercopy’ from incompatible pointer type
include/media/v4l2-ioctl.h:298: note: expected ‘struct file *’ but argument is of type ‘struct inode *’
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:2463: warning: passing argument 2 of ‘video_usercopy’ makes integer from pointer without a cast
include/media/v4l2-ioctl.h:298: note: expected ‘unsigned int’ but argument is of type ‘struct file *’
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:2463: warning: passing argument 4 of ‘video_usercopy’ makes pointer from integer without a cast
include/media/v4l2-ioctl.h:298: note: expected ‘v4l2_kioctl’ but argument is of type ‘long unsigned int’
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:2463: error: too many arguments to function ‘video_usercopy’
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c: At top level:
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:2615: warning: initialization from incompatible pointer type
make[2]: *** [/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.o] Error 1
make[1]: *** [_module_/home/nik/Desktop/2.6.9/gspcav1-20071224] Error 2
make[1]: Leaving directory `/usr/src/linux-headers-2.6.31-19-generic&#039;
make: *** [default] Error 2
nik@nik:~/Desktop/2.6.9/gspcav1-20071224$ sudo make clean
rm -r -f *.o decoder/.gspcadecoder.o.cmd decoder/*.o \
	.gspca.o.cmd  *.o *.ko *.mod.* .[a-z]* core *.i \
	*.symvers *.err</description>
		<content:encoded><![CDATA[<p>Error:</p>
<p>nik@nik:~/Desktop/2.6.9/gspcav1-20071224$ sudo ./gspca_build</p>
<p> REMOVE the old module if present<br />
ERROR: Module gspca does not exist in /proc/modules</p>
<p> CLEAN gspca source tree<br />
rm -r -f *.o decoder/.gspcadecoder.o.cmd decoder/*.o \<br />
	.gspca.o.cmd  *.o *.ko *.mod.* .[a-z]* core *.i \<br />
	*.symvers *.err</p>
<p> COMPILE gspca Please Wait &#8230;.!!</p>
<p> INSTALL gspca in the kernel binary tree<br />
mkdir -p /lib/modules/`uname -r`/kernel/drivers/usb/media/<br />
rm -f /lib/modules/`uname -r`/kernel/drivers/usb/media/spca5xx.ko<br />
rm -f /lib/modules/`uname -r`/kernel/drivers/media/video/gspca.ko<br />
install -c -m 0644 gspca.ko /lib/modules/`uname -r`/kernel/drivers/usb/media/<br />
install: cannot stat `gspca.ko&#8217;: No such file or directory<br />
make: *** [install] Error 1</p>
<p> LOAD gspca in memory<br />
FATAL: Module gspca not found.</p>
<p> PRINT COMPILATION MESSAGES if ERRORS look kgspca.err<br />
make -C /lib/modules/`uname -r`/build SUBDIRS=/home/nik/Desktop/2.6.9/gspcav1-20071224 CC=cc modules<br />
make[1]: Entering directory `/usr/src/linux-headers-2.6.31-19-generic&#8217;<br />
  CC [M]  /home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.o<br />
In file included from /home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:845:<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/utils/spcausb.h: In function ‘spca5xxRegRead’:<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/utils/spcausb.h:95: error: implicit declaration of function ‘info’<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/utils/spcausb.h: In function ‘spca_set_interface’:<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/utils/spcausb.h:278: error: implicit declaration of function ‘warn’<br />
In file included from /home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:853:<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h: In function ‘sp5xxfw2_init’:<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:122: error: called object ‘info’ is not a function<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:136: error: called object ‘info’ is not a function<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:141: error: called object ‘info’ is not a function<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:148: error: called object ‘info’ is not a function<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:176: error: called object ‘info’ is not a function<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h: In function ‘sp5xxfw2_start’:<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:214: error: called object ‘info’ is not a function<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/Sunplus-jpeg/sp5xxfw2.h:230: error: called object ‘info’ is not a function<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c: In function ‘spca5xx_ioctl’:<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:2463: warning: passing argument 1 of ‘video_usercopy’ from incompatible pointer type<br />
include/media/v4l2-ioctl.h:298: note: expected ‘struct file *’ but argument is of type ‘struct inode *’<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:2463: warning: passing argument 2 of ‘video_usercopy’ makes integer from pointer without a cast<br />
include/media/v4l2-ioctl.h:298: note: expected ‘unsigned int’ but argument is of type ‘struct file *’<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:2463: warning: passing argument 4 of ‘video_usercopy’ makes pointer from integer without a cast<br />
include/media/v4l2-ioctl.h:298: note: expected ‘v4l2_kioctl’ but argument is of type ‘long unsigned int’<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:2463: error: too many arguments to function ‘video_usercopy’<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c: At top level:<br />
/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.c:2615: warning: initialization from incompatible pointer type<br />
make[2]: *** [/home/nik/Desktop/2.6.9/gspcav1-20071224/gspca_core.o] Error 1<br />
make[1]: *** [_module_/home/nik/Desktop/2.6.9/gspcav1-20071224] Error 2<br />
make[1]: Leaving directory `/usr/src/linux-headers-2.6.31-19-generic&#8217;<br />
make: *** [default] Error 2<br />
nik@nik:~/Desktop/2.6.9/gspcav1-20071224$ sudo make clean<br />
rm -r -f *.o decoder/.gspcadecoder.o.cmd decoder/*.o \<br />
	.gspca.o.cmd  *.o *.ko *.mod.* .[a-z]* core *.i \<br />
	*.symvers *.err</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Avoid Edgewater Walk Apartments in Tinley Park, IL! by Myrna Chapman</title>
		<link>http://froebe.net/blog/2007/10/25/avoid-edgewater-walk-apartments-in-tinley-park-il/comment-page-1/#comment-10448</link>
		<dc:creator>Myrna Chapman</dc:creator>
		<pubDate>Fri, 05 Mar 2010 14:31:07 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/2007/10/25/avoid-edgewater-walk-apartments-in-tinley-park-il/#comment-10448</guid>
		<description>I was sad to hear these comments, I used to be a manager there
and it was a lovely place. I wonder if it is the same owner as
it used to be privately owned by Southwest Construction but 
maybe he sold it, which is really hard to believe since he
put so much work into building it and every detail had to 
be perfect.</description>
		<content:encoded><![CDATA[<p>I was sad to hear these comments, I used to be a manager there<br />
and it was a lovely place. I wonder if it is the same owner as<br />
it used to be privately owned by Southwest Construction but<br />
maybe he sold it, which is really hard to believe since he<br />
put so much work into building it and every detail had to<br />
be perfect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting &#8220;Xlib: PuTTY X11 proxy: wrong authentication protocol attempted&#8221;?  I have the answer :) by Daniel Helm</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-10446</link>
		<dc:creator>Daniel Helm</dc:creator>
		<pubDate>Thu, 04 Mar 2010 00:09:37 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=755#comment-10446</guid>
		<description>HECK YES!
$$$</description>
		<content:encoded><![CDATA[<p>HECK YES!<br />
$$$</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on For those of you that don&#8217;t know, last week I had my wisdom teeth removed.  There were a few complications.. by Jason L Froebe</title>
		<link>http://froebe.net/blog/2010/03/01/for-those-of-you-that-dont-know-last-week-i-had-my-wisdom-teeth-removed-there-were-a-few-complications/comment-page-1/#comment-10441</link>
		<dc:creator>Jason L Froebe</dc:creator>
		<pubDate>Tue, 02 Mar 2010 02:00:15 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1221#comment-10441</guid>
		<description>Found out what the actual cause is.  It&#039;s the Tylenol-3.  The symptoms match up perfectly and since Tylenol-3 can take 5 to 6 days to flush out of the system, I have a couple more days of this and I should be back to normal.  You see, I rarely take medicine (except for colds) but when I do, I generally don&#039;t need the full dose.  The Tylenol-3 was such a high dose and I was taking it three times a day as per the instructions.  I should have taken Ibuprofin instead.</description>
		<content:encoded><![CDATA[<p>Found out what the actual cause is.  It&#8217;s the Tylenol-3.  The symptoms match up perfectly and since Tylenol-3 can take 5 to 6 days to flush out of the system, I have a couple more days of this and I should be back to normal.  You see, I rarely take medicine (except for colds) but when I do, I generally don&#8217;t need the full dose.  The Tylenol-3 was such a high dose and I was taking it three times a day as per the instructions.  I should have taken Ibuprofin instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on For those of you that don&#8217;t know, last week I had my wisdom teeth removed.  There were a few complications.. by Daniel J. Doughty</title>
		<link>http://froebe.net/blog/2010/03/01/for-those-of-you-that-dont-know-last-week-i-had-my-wisdom-teeth-removed-there-were-a-few-complications/comment-page-1/#comment-10437</link>
		<dc:creator>Daniel J. Doughty</dc:creator>
		<pubDate>Mon, 01 Mar 2010 19:16:02 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1221#comment-10437</guid>
		<description>Hope you feel better soon.  Outpatient surgery of any sort is never very much fun.</description>
		<content:encoded><![CDATA[<p>Hope you feel better soon.  Outpatient surgery of any sort is never very much fun.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to create an iTunes/iPod compatible audiobook (MPEG4 m4b) on Linux using MP4Box and mp4v2 v1.9.1 &#8211; it can be done! by Jason L Froebe</title>
		<link>http://froebe.net/blog/2009/12/24/how-to-create-an-itunesipod-compatible-audiobook-mpeg4-m4b-on-linux-using-mp4box-and-mp4v2-v1-9-1-it-can-be-done/comment-page-1/#comment-10436</link>
		<dc:creator>Jason L Froebe</dc:creator>
		<pubDate>Mon, 01 Mar 2010 15:28:50 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1163#comment-10436</guid>
		<description>That&#039;s wonderful Benny!  Great work!!!!! :)</description>
		<content:encoded><![CDATA[<p>That&#8217;s wonderful Benny!  Great work!!!!! <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 How to create an iTunes/iPod compatible audiobook (MPEG4 m4b) on Linux using MP4Box and mp4v2 v1.9.1 &#8211; it can be done! by Benny</title>
		<link>http://froebe.net/blog/2009/12/24/how-to-create-an-itunesipod-compatible-audiobook-mpeg4-m4b-on-linux-using-mp4box-and-mp4v2-v1-9-1-it-can-be-done/comment-page-1/#comment-10433</link>
		<dc:creator>Benny</dc:creator>
		<pubDate>Sun, 28 Feb 2010 10:41:59 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1163#comment-10433</guid>
		<description>Everything works now.
Thanks to your post I created a python script and posted it here: http://ubuntuforums.org/showthread.php?t=1418085</description>
		<content:encoded><![CDATA[<p>Everything works now.<br />
Thanks to your post I created a python script and posted it here: <a href="http://ubuntuforums.org/showthread.php?t=1418085">http://ubuntuforums.org/showthread.php?t=1418085</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Did you write an article for ISUG&#8217;s Technical Journal and either haven&#8217;t been paid or refused payment? by Kevin Sherlock</title>
		<link>http://froebe.net/blog/2010/02/17/did-you-write-an-article-for-isugs-technical-journal-and-either-havent-been-paid-or-refused-payment/comment-page-1/#comment-10430</link>
		<dc:creator>Kevin Sherlock</dc:creator>
		<pubDate>Fri, 26 Feb 2010 20:21:40 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=1209#comment-10430</guid>
		<description>So.... how many articles where you denied payment for?</description>
		<content:encoded><![CDATA[<p>So&#8230;. how many articles where you denied payment for?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting &#8220;Xlib: PuTTY X11 proxy: wrong authentication protocol attempted&#8221;?  I have the answer :) by GPx</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-10425</link>
		<dc:creator>GPx</dc:creator>
		<pubDate>Thu, 25 Feb 2010 22:56:02 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=755#comment-10425</guid>
		<description>One more detail
The recent 10/2009 release of Solaris (x86) requires the &quot;ForwardX11 yes&quot; entry in the client config file (/etc/shh/ssh_config) not the daemon config file (/etc/shh/sshd_config).

sshd will reject it as a bad configuration option in the daemon config file</description>
		<content:encoded><![CDATA[<p>One more detail<br />
The recent 10/2009 release of Solaris (x86) requires the &#8220;ForwardX11 yes&#8221; entry in the client config file (/etc/shh/ssh_config) not the daemon config file (/etc/shh/sshd_config).</p>
<p>sshd will reject it as a bad configuration option in the daemon config file</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Neumann Homes files Chapter 11 Bankruptcy by Joseph Then</title>
		<link>http://froebe.net/blog/2007/10/22/chicago-sun-times-neumann-homes-files-chapter-11-bankruptcy/comment-page-1/#comment-10424</link>
		<dc:creator>Joseph Then</dc:creator>
		<pubDate>Thu, 25 Feb 2010 14:54:44 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/2007/10/22/chicago-sun-times-neumann-homes-files-chapter-11-bankruptcy/#comment-10424</guid>
		<description>I wonder what would be the &lt;a href=&quot;http://www.outofbankruptcy.info/Bankruptcy_Procedure.html&quot;&gt;bankruptcy procedure&lt;/a&gt; for this type of chapter.</description>
		<content:encoded><![CDATA[<p>I wonder what would be the <a href="http://www.outofbankruptcy.info/Bankruptcy_Procedure.html">bankruptcy procedure</a> for this type of chapter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting &#8220;Xlib: PuTTY X11 proxy: wrong authentication protocol attempted&#8221;?  I have the answer :) by Benor</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-10422</link>
		<dc:creator>Benor</dc:creator>
		<pubDate>Wed, 24 Feb 2010 16:41:36 +0000</pubDate>
		<guid isPermaLink="false">http://froebe.net/blog/?p=755#comment-10422</guid>
		<description>I got the same error message, but I already entered the key from xauth some weeks ago. The last day I connected was yesterday. The problem was that no space was left. I deleted some files from /home/.../Downloads/ and restarted the server.

By &quot;df -h&quot; you get left space on your system.
[http://setaoffice.com/2009/09/19/xlib-putty-x11-proxy-wrong-authentication-protocol-attempted/]

Thank you!</description>
		<content:encoded><![CDATA[<p>I got the same error message, but I already entered the key from xauth some weeks ago. The last day I connected was yesterday. The problem was that no space was left. I deleted some files from /home/&#8230;/Downloads/ and restarted the server.</p>
<p>By &#8220;df -h&#8221; you get left space on your system.<br />
[http://setaoffice.com/2009/09/19/xlib-putty-x11-proxy-wrong-authentication-protocol-attempted/]</p>
<p>Thank you!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
