<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7080659701562852736</id><updated>2011-11-27T19:56:13.183-05:00</updated><category term='Intel Chipset'/><category term='Ubuntu'/><category term='Resolution Fix'/><category term='ColdFusion'/><category term='Linux'/><category term='postgreSql'/><category term='Beryl'/><title type='text'>Roland Lopez</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://roland-lopez.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7080659701562852736/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://roland-lopez.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Rolando</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://2.bp.blogspot.com/_N3zi9vgIEqA/SdnyFOyCZKI/AAAAAAAAGlY/PmSN7eI1lCo/S220/snoot.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7080659701562852736.post-8166970355345587899</id><published>2007-06-01T23:04:00.000-05:00</published><updated>2007-06-01T23:07:57.545-05:00</updated><title type='text'>My New Blog</title><content type='html'>Hi guys, I'm not blogging at this location any more ... you can check my new blog at: &lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.roland-lopez.com/blog/"&gt;http://www.roland-lopez.com/blog/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;See you there!&lt;br /&gt;&lt;a href="http://www.roland-lopez.com/blog/"&gt;Roland&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7080659701562852736-8166970355345587899?l=roland-lopez.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7080659701562852736/posts/default/8166970355345587899'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7080659701562852736/posts/default/8166970355345587899'/><link rel='alternate' type='text/html' href='http://roland-lopez.blogspot.com/2007/06/my-new-blog.html' title='My New Blog'/><author><name>Rolando</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://2.bp.blogspot.com/_N3zi9vgIEqA/SdnyFOyCZKI/AAAAAAAAGlY/PmSN7eI1lCo/S220/snoot.jpg'/></author></entry><entry><id>tag:blogger.com,1999:blog-7080659701562852736.post-1204013289373835205</id><published>2007-03-20T23:58:00.000-05:00</published><updated>2007-03-21T11:54:38.477-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='postgreSql'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='ColdFusion'/><title type='text'>Connecting PostgreSQL 8.1 &amp; ColdFusion MX 7</title><content type='html'>So far ColdFusion does not have a  default driver to connect to a PostgreSQL Database.  However you can manually create a connection using a JDBC driver.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Download the JDBC driver &lt;a href="http://jdbc.postgresql.org/"&gt;http://jdbc.postgresql.org/&lt;/a&gt;&lt;br /&gt;You need to know what is your JDK version so that you can select the proper driver.  To check your JDK version open Terminal and type:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;java --version&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;In my case I have "&lt;span style="font-weight: bold;"&gt;1.4.2&lt;/span&gt;", therefore I downloaded &lt;a href="http://jdbc.postgresql.org/download/postgresql-8.1-408.jdbc3.jar"&gt;JDBC 3 for PostgreSQL 8.1&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Copy the driver (jar file) to your coldfusion location at:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;[cf root folder]/&lt;/span&gt;&lt;code style="font-family: courier new;"&gt;servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/lib&lt;br /&gt;&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;&lt;code&gt;&lt;/code&gt; in my case this was: &lt;code&gt;&lt;br /&gt;/opt/jrun4/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/lib&lt;/code&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Restart ColdFusion:&lt;br /&gt;cd into &lt;code&gt;/opt/jrun4/bin/&lt;/code&gt; and type:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;./jrun -restart&lt;/code&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;NOTE:&lt;/span&gt; for some reason when I execute this command it my system won't complete the restart process so I had to do a Stop and Start like &lt;code&gt;./jrun -stop&lt;/code&gt; and then &lt;code&gt;./jrun -start&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Now go to your ColdFusion admin add a new Data Source of type "Other"&lt;/li&gt;&lt;li&gt;Enter your JDBC URL as: &lt;code&gt;jdbc:postgresql://localhost/[your database name]&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Set Driver Class and Driver Name as: &lt;code&gt;org.postgresql.Driver&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Enter the user name and password.&lt;br /&gt;Note: You can use your "postgres" user account.  I have instead created a specific account for coldfusion, you can create users through pgAdmin.&lt;/li&gt;&lt;li&gt;Submit. You should get an "ok" in the status.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7080659701562852736-1204013289373835205?l=roland-lopez.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://roland-lopez.blogspot.com/feeds/1204013289373835205/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7080659701562852736&amp;postID=1204013289373835205' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7080659701562852736/posts/default/1204013289373835205'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7080659701562852736/posts/default/1204013289373835205'/><link rel='alternate' type='text/html' href='http://roland-lopez.blogspot.com/2007/03/connecting-postgresql-81-coldfusion-mx.html' title='Connecting PostgreSQL 8.1 &amp; ColdFusion MX 7'/><author><name>Rolando</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://2.bp.blogspot.com/_N3zi9vgIEqA/SdnyFOyCZKI/AAAAAAAAGlY/PmSN7eI1lCo/S220/snoot.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7080659701562852736.post-5097811363024128198</id><published>2007-03-03T18:54:00.000-05:00</published><updated>2007-03-04T16:27:55.477-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Resolution Fix'/><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Intel Chipset'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>auto915Resolution - Ubuntu Resolution fix for Intel chipset 8x-945</title><content type='html'>If you have an Intel Chipset 8x - 945 series you will have some trouble setting your resolution in Ubuntu.&lt;br /&gt;Theres is a tool, made by  &lt;a href="http://www.geocities.com/stomljen/" target = "_blank"&gt;Steve Tomljenovic&lt;/a&gt;, called 915Resolution that will fix this problem.  However you will have to run this tool every time you restart or logoff from Ubuntu because these changes are only temporary.  To avoid this you need to create a startup script that will run before the X server starts.  So I have written a small script that will automate this process for you that I called &lt;span style="font-weight: bold;"&gt;auto915resolution&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;The script will automatically install 915resolution and will create the startup script for you.&lt;br /&gt;&lt;br /&gt;Below is a sample run of the script that will serve as a guide on how to use it and will give you an idea of how it works.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Download &lt;a href="http://www.geocities.com/lostlinkpr/ubuntu/auto915Resolution.tar.gz" target = "_blank"&gt;auto915Resolution&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Extract the file to your home folder (i.e. /home/[your user name]&lt;your&gt;/&lt;br /&gt;&lt;/your&gt;&lt;/li&gt;&lt;li&gt;Run terminal.&lt;/li&gt;&lt;li&gt;Login as root (you must be logged in as root to create the startup script)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Navigate to that folder. In my case my home folder is "rolando", replace it with your folder name.&lt;br /&gt;&lt;br /&gt;&lt;div face="'courier new'" size="2" style="border: 1px dashed gray; margin: 0px 0px 0px 20px; padding: 6px;"&gt;# cd /home/rolando/auto915Resolution/&lt;br /&gt;&lt;span style="color: rgb(128, 5, 23);"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;Run the script. (notice the dot before the forward slash)&lt;br /&gt;&lt;br /&gt;&lt;div face="'courier new'" size="2" style="border: 1px dashed gray; margin: 0px 0px 0px 20px; padding: 6px;"&gt;# ./auto915resolution.sh &lt;/div&gt;&lt;/li&gt;&lt;li&gt;When you get the prompt to install 915resolution fix enter '&lt;span style="font-weight: bold;"&gt;Y&lt;/span&gt;'.  If you have 915resolution already installed you can choose not to install it.&lt;/li&gt;&lt;li&gt;A list of all available resolutions ( Modes ) will be displayed followed by a prompt to enter the "Mode" you want to replace with you desired screen resolution.  (You might have to maximize the terminal window to see the entire list)&lt;br /&gt;At the top of the list you will see your chipset info.  In my case I have a 915GM.&lt;br /&gt;&lt;br /&gt;Example:&lt;br /&gt;&lt;div   style="border: 1px dashed gray; margin: 0px 0px 0px 20px; padding: 6px;font-family:'courier new';font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;Chipset: 915GM&lt;/span&gt;&lt;br /&gt;BIOS: TYPE 1&lt;br /&gt;Mode Table Offset: $C0000 + $269&lt;br /&gt;Mode Table Entries: 36&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Enter the "Mode" number you want to replace.  You should replace your default resolution.  In my case my default resolution was 1024x768 in mode 34.&lt;br /&gt;&lt;br /&gt;&lt;div face="'courier new'" size="2" style="border: 1px dashed gray; margin: 0px 0px 0px 20px; padding: 6px;"&gt;# 34&lt;/div&gt;&lt;/li&gt;&lt;li&gt;A prompt to enter your desired resolution will be displayed. Enter your horizontal resolution followed by a space and then your vertical resolution.  For example for a resolution of "1280x800" enter "1280 800".&lt;br /&gt;&lt;br /&gt;&lt;div face="'courier new'" size="2" style="border: 1px dashed gray; margin: 0px 0px 0px 20px; padding: 6px;"&gt;# 1280 800&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;A prompt for your maximum color depth (in bits) will be displayed. Options are 8, 16, 24 and 32.  Most monitors should be able to handle 24, so if you're not sure enter:&lt;br /&gt;&lt;br /&gt;&lt;div face="'courier new'" size="2" style="border: 1px dashed gray; margin: 0px 0px 0px 20px; padding: 6px;"&gt;# 24&lt;/div&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;The resolution (Mode) list is refreshed and the Mode you chose should now be replaced with the new resolution and color depth.&lt;br /&gt;A prompt to create the startup script will be displayed.  You should enter 'y' in here if you see that your changes were applied correctly in the list.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;If you entered 'y', then you should see this output:&lt;br /&gt;&lt;br /&gt;&lt;div face="'courier new'" size="2" style="border: 1px dashed gray; margin: 0px 0px 0px 20px; padding: 6px;"&gt;Creating startup script...&lt;br /&gt;The startup script has been created! Please restart for changes to take effect.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Restart your computer.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7080659701562852736-5097811363024128198?l=roland-lopez.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://roland-lopez.blogspot.com/feeds/5097811363024128198/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7080659701562852736&amp;postID=5097811363024128198' title='44 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7080659701562852736/posts/default/5097811363024128198'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7080659701562852736/posts/default/5097811363024128198'/><link rel='alternate' type='text/html' href='http://roland-lopez.blogspot.com/2007/03/auto915resolution-ubuntu-resolution-fix.html' title='auto915Resolution - Ubuntu Resolution fix for Intel chipset 8x-945'/><author><name>Rolando</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://2.bp.blogspot.com/_N3zi9vgIEqA/SdnyFOyCZKI/AAAAAAAAGlY/PmSN7eI1lCo/S220/snoot.jpg'/></author><thr:total>44</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7080659701562852736.post-5223082004643181409</id><published>2007-02-28T08:29:00.000-05:00</published><updated>2007-02-28T12:48:09.458-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Intel Chipset'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Ubuntu Resolution Problem - Intel Chipset 8x - 9x</title><content type='html'>Installing Ubuntu is a straight forward process, in the other hand setting the resolution might become a "pain in the neck".  For many users (NOT USERS W/ Intel Chipset 8x-9x; see below) changing the resolution of the screen should be as simple as going to terminal and typing the following commands:&lt;br /&gt;&lt;br /&gt;Backup your xorg.conf file first&lt;br /&gt;&lt;br /&gt;&lt;div   style="border: 1px dashed gray; margin: 0px 0px 0px 20px; padding: 6px;font-family:'courier new';font-size:85%;"&gt;$ &lt;span style="color: rgb(128, 5, 23);"&gt;sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Reconfigure X&lt;br /&gt;&lt;br /&gt;&lt;div   style="border: 1px dashed gray; margin: 0px 0px 0px 20px; padding: 6px;font-family:'courier new';font-size:85%;"&gt;$ &lt;span style="color: rgb(128, 5, 23);"&gt;sudo dpkg-reconfigure xserver-xorg&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div  style="border: 2px solid yellow; margin: 0px 0px 0px 20px; padding: 6px;font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;Note:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Auto-detection of devices works best if Xorg is not running, so that before typing the above command you might want to stop X by typing:&lt;br /&gt;&lt;br /&gt;&lt;div   style="border: 1px dashed gray; margin: 0px 0px 0px 20px; padding: 6px;font-family:'courier new';font-size:85%;"&gt;$ &lt;span style="color: rgb(128, 5, 23);"&gt;sudo /etc/init.d/gdm stop&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;However this will take you to text-only mode (YOU WON'T HAVE YOUR BROWSER ANYMORE) so you might want to print this out or just type the commands before entering this command.&lt;br /&gt;&lt;br /&gt;To start X again just after reconfiguring just type&lt;br /&gt;&lt;br /&gt;&lt;div   style="border: 1px dashed gray; margin: 0px 0px 0px 20px; padding: 6px;font-family:'courier new';font-size:85%;"&gt;$ &lt;span style="color: rgb(128, 5, 23);"&gt;sudo /etc/init.d/gdm start&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;If you have an Intel Chipstet 8x - 9x, the &lt;a href="http://www.geocities.com/stomljen/" target="_blank"&gt;915resolution&lt;/a&gt; fix will work for you, however you will have to run this every time you restart Ubuntu.  I'm working on a script to automate the installation of 915resolution and fix your startup scripts so that you don't have to run 915... every time you restart.  Will try to post it by tonight.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7080659701562852736-5223082004643181409?l=roland-lopez.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://roland-lopez.blogspot.com/feeds/5223082004643181409/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7080659701562852736&amp;postID=5223082004643181409' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7080659701562852736/posts/default/5223082004643181409'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7080659701562852736/posts/default/5223082004643181409'/><link rel='alternate' type='text/html' href='http://roland-lopez.blogspot.com/2007/02/ubuntu-resolution-problem-intel-chipset.html' title='Ubuntu Resolution Problem - Intel Chipset 8x - 9x'/><author><name>Rolando</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://2.bp.blogspot.com/_N3zi9vgIEqA/SdnyFOyCZKI/AAAAAAAAGlY/PmSN7eI1lCo/S220/snoot.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7080659701562852736.post-7956944078799487255</id><published>2007-02-27T10:24:00.000-05:00</published><updated>2007-02-27T13:27:23.791-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Linux'/><category scheme='http://www.blogger.com/atom/ns#' term='Beryl'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Ubuntu Ultimate Edition 1.2 &amp; Beryl</title><content type='html'>&lt;div size="" 11px=""&gt;After spending hours trying to setup Beryl on Ubuntu 6.06 (not supported by Beryl) I get an email from &lt;a href="http://www.robgonda.com/" target="_blank"&gt;Rob Gonda&lt;/a&gt; about &lt;a href="http://ubuntusoftware.info/ultimate/index.html"  target="_blank"&gt;Ubuntu Ultimate Edition 1.2&lt;/a&gt; which comes with a bunch of software including Beryl!&lt;br /&gt;&lt;br /&gt;I didn't have much too lose so I reformatted the partition and installed Ubuntu from scratch.  Installation took about 30-40 min. and was straight forward.&lt;br /&gt;&lt;br /&gt;To load Beryl just went to terminal and typed this command:&lt;br /&gt;&lt;br /&gt;&lt;div   style="border: 1px dashed gray; margin: 0px 0px 0px 20px; padding: 6px;font-family:'courier new';font-size:85%;"&gt;$ &lt;span style="color: #800517;"&gt;beryl-manager&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;That easy!&lt;br /&gt;&lt;br /&gt;Now if you want Beryl to auto start in Ubuntu (so that you don't have to type the previous command every time you restart) follow the steps listed at &lt;a href="http://wiki.beryl-project.org/wiki/Autostart_for_Ubuntu" target="_blank"&gt;Beryl Wiki&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7080659701562852736-7956944078799487255?l=roland-lopez.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://roland-lopez.blogspot.com/feeds/7956944078799487255/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7080659701562852736&amp;postID=7956944078799487255' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7080659701562852736/posts/default/7956944078799487255'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7080659701562852736/posts/default/7956944078799487255'/><link rel='alternate' type='text/html' href='http://roland-lopez.blogspot.com/2007/02/ubuntu-ultimate-edition-12-beryl.html' title='Ubuntu Ultimate Edition 1.2 &amp; Beryl'/><author><name>Rolando</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='21' src='http://2.bp.blogspot.com/_N3zi9vgIEqA/SdnyFOyCZKI/AAAAAAAAGlY/PmSN7eI1lCo/S220/snoot.jpg'/></author><thr:total>0</thr:total></entry></feed>
