<?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-31936016</id><updated>2011-12-15T04:00:19.813+01:00</updated><title type='text'>Java and more</title><subtitle type='html'>Roberto's Blog about Java, OSS, Soccer, Lazio, Travel and more.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://java-and-more.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://java-and-more.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>brocklanders</name><uri>http://www.blogger.com/profile/02423129072654101876</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-31936016.post-115858852931564591</id><published>2006-09-18T16:08:00.000+02:00</published><updated>2006-09-21T15:17:54.173+02:00</updated><title type='text'>Travelling mommy - Ciccini Viaggiatori</title><content type='html'>Cristina's first post on Ciccini Viaggiatori Blog.&lt;br/&gt;
&lt;a href="http://www.cicciniviaggiatori.it/blog/2006/09/travelling-mommy.html#links"&gt;Travelling mommy - Ciccini Viaggiatori&lt;/a&gt;&lt;br/&gt;
&lt;br/&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31936016-115858852931564591?l=java-and-more.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.cicciniviaggiatori.it/blog/2006/09/travelling-mommy.html' title='Travelling mommy - Ciccini Viaggiatori'/><link rel='replies' type='application/atom+xml' href='http://java-and-more.blogspot.com/feeds/115858852931564591/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31936016&amp;postID=115858852931564591&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115858852931564591'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115858852931564591'/><link rel='alternate' type='text/html' href='http://java-and-more.blogspot.com/2006/09/travelling-mommy-ciccini-viaggiatori.html' title='Travelling mommy - Ciccini Viaggiatori'/><author><name>brocklanders</name><uri>http://www.blogger.com/profile/02423129072654101876</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31936016.post-115825457415644128</id><published>2006-09-14T18:27:00.000+02:00</published><updated>2006-09-21T15:31:00.773+02:00</updated><title type='text'>Using custom stylesheets in Google Page Creator</title><content type='html'>Recently I was trying to find a way to use a custom css in &lt;a href="http://pages.google.com"&gt;Google Page Creator&lt;/a&gt; to realize a more personalized page. This is what I found:&lt;br/&gt;
&lt;br/&gt;
&lt;ul&gt;
&lt;li&gt;Log to your Google Page Creator account.&lt;/li&gt;
&lt;li&gt;Create an Home Page. Select whatever look and layout you prefer.&lt;/li&gt;
&lt;li&gt;Start to edit the page.&lt;/li&gt;
&lt;li&gt;Select one element of the page (i think the ideal is the subtitle) and click on the &lt;strong&gt;Edit HTML&lt;/strong&gt; link.&lt;/li&gt;
&lt;li&gt;Now insert this little fragment of code right after the real content that you want to display in the subtitle:&lt;br/&gt;
&lt;br/&gt;
&amp;lt;script language="javascript"&amp;gt;&lt;br/&gt;
var h = document.getElementsByTagName("head")[0];&lt;br/&gt;
h.innerHTML=h.innerHTML+&lt;br/&gt;
  "&amp;lt;link rel=StyleSheet href=\"/style_override.css\" type=\"text/css\"&amp;gt;";&lt;br/&gt;
&amp;lt;/script&amp;gt;&lt;br/&gt;
&lt;/li&gt;
&lt;li&gt;Click on &lt;strong&gt;Save changes&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Click on &lt;strong&gt;Publish&lt;/strong&gt; and wait for the page to be published&lt;/li&gt;
&lt;li&gt;Click on &lt;strong&gt;Back to page manager&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Write locally a CSS file and rename it to &lt;strong&gt;style_override.css&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;From the page manager upload the CSS file&lt;/li&gt;
&lt;li&gt;You are now ready to view the custom styled page&lt;/li&gt;
&lt;/ul&gt;&lt;br/&gt;
&lt;br/&gt;
This method relies on javascript so it will work only if you have it activated in your browser; it consits of simply accessing the head element of the document via the DOM ( document.getElementsByTagName("head")[0]; ). After that it simply adds a string containing the &amp;lt;link&amp;gt; tag to the innerHTML of the head element. Since this new content will be appended to the "google imposed" css it will override the existing css rule.&lt;br/&gt;
&lt;br/&gt;
Here is a live example:&lt;br/&gt;
&lt;a href="http://rfilippone.googlepages.com/home"&gt;This is an example of the result of the method.&lt;/a&gt;&lt;br/&gt;
&lt;br/&gt;
&lt;a href="http://rfilippone.googlepages.com/home2"&gt;And this is the same page without the custom style&lt;/a&gt;&lt;br/&gt;
&lt;br/&gt;
As you can see I only changed the padding of the left column to 5px but the possibilities are infinite and are limited only by our fantasy.&lt;br/&gt;
&lt;br/&gt;
I hope that somebody will find this little trick useful.&lt;br/&gt;
Let me know if you have question or just leave me a comment.&lt;br/&gt;
&lt;br/&gt;
Bye.&lt;br/&gt;
&lt;br/&gt;
Tags: &lt;a href="http://technorati.com/tag/CSS" rel="tag" class="techtag"&gt;CSS&lt;/a&gt; &lt;a href="http://technorati.com/tag/Google" rel="tag" class="techtag"&gt;Google&lt;/a&gt; &lt;a href="http://technorati.com/tag/Page Creator" rel="tag" class="techtag"&gt;Page Creator&lt;/a&gt;&lt;br/&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31936016-115825457415644128?l=java-and-more.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://java-and-more.blogspot.com/feeds/115825457415644128/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31936016&amp;postID=115825457415644128&amp;isPopup=true' title='12 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115825457415644128'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115825457415644128'/><link rel='alternate' type='text/html' href='http://java-and-more.blogspot.com/2006/09/using-custom-stylesheets-in-google.html' title='Using custom stylesheets in Google Page Creator'/><author><name>brocklanders</name><uri>http://www.blogger.com/profile/02423129072654101876</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>12</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31936016.post-115824000162650623</id><published>2006-09-14T15:11:00.000+02:00</published><updated>2006-09-21T15:05:10.803+02:00</updated><title type='text'>Firefox 2 Beta 2</title><content type='html'>&lt;a href="http://developer.mozilla.org/devnews/index.php/2006/08/31/firefox-2-beta-2-milestone-released/"&gt;Firefox 2 Beta 2&lt;/a&gt; has just been released. As always with beta this is a release reccomended only to developers and testers.&lt;br/&gt;
&lt;br/&gt;
According to the &lt;a href="http://wiki.mozilla.org/Firefox:1.5.0.7:Community"&gt;schedule&lt;/a&gt;, after 6 Candidate Release, today will be released the definitive version of Firefox 1.5.0.7.&lt;br/&gt;
&lt;br/&gt;
Tags: &lt;a href="http://technorati.com/tag/Firefox" rel="tag" class="techtag"&gt;Firefox&lt;/a&gt; &lt;a href="http://technorati.com/tag/Mozilla" rel="tag" class="techtag"&gt;Mozilla&lt;/a&gt;&lt;br/&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31936016-115824000162650623?l=java-and-more.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://java-and-more.blogspot.com/feeds/115824000162650623/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31936016&amp;postID=115824000162650623&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115824000162650623'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115824000162650623'/><link rel='alternate' type='text/html' href='http://java-and-more.blogspot.com/2006/09/firefox-2-beta-2.html' title='Firefox 2 Beta 2'/><author><name>brocklanders</name><uri>http://www.blogger.com/profile/02423129072654101876</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31936016.post-115528914733754973</id><published>2006-08-11T11:38:00.000+02:00</published><updated>2006-09-21T15:07:42.783+02:00</updated><title type='text'>Implications of the AMD-ATI acquisition</title><content type='html'>Tom Yager talks about the recent &lt;a href="http://www.amd.com"&gt;AMD&lt;/a&gt;'s acquisition. In the &lt;a href="http://www.infoworld.com/article/06/08/02/32OPcurve_1.html"&gt;article&lt;/a&gt; at InfoWorld he posed some questions and Hal Speed (&lt;a href="http://www.amd.com"&gt;AMD&lt;/a&gt;'s executive) gave some clarifying responses. There is also an interesting speculation about releasing &lt;a href="http://www.ati.com/"&gt;ATI&lt;/a&gt; driver's in open source.&lt;br/&gt;
&lt;br/&gt;
Tags: &lt;a href="http://technorati.com/tag/AMD" rel="tag" class="techtag"&gt;AMD&lt;/a&gt; &lt;a href="http://technorati.com/tag/ATI" rel="tag" class="techtag"&gt;ATI&lt;/a&gt; &lt;a href="http://technorati.com/tag/OSS" rel="tag" class="techtag"&gt;OSS&lt;/a&gt;&lt;br/&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31936016-115528914733754973?l=java-and-more.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://java-and-more.blogspot.com/feeds/115528914733754973/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31936016&amp;postID=115528914733754973&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115528914733754973'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115528914733754973'/><link rel='alternate' type='text/html' href='http://java-and-more.blogspot.com/2006/08/implications-of-amd-ati-acquisition.html' title='Implications of the AMD-ATI acquisition'/><author><name>brocklanders</name><uri>http://www.blogger.com/profile/02423129072654101876</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31936016.post-115461951815761064</id><published>2006-08-03T17:32:00.000+02:00</published><updated>2006-09-21T15:11:18.386+02:00</updated><title type='text'>Ubuntu billboard</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/1687/562/1600/ubuntubillboard.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/1687/562/320/ubuntubillboard.jpg" alt=""/&gt;&lt;/a&gt;&lt;br/&gt;
WildBill spotted and documented the first &lt;a href="http://wildbill.nulldevice.net/wordpress/?p=177"&gt;Ubuntu Billboard&lt;/a&gt;.
Ubuntu isn't my favourite distribution as i am an &lt;a href="http://www.archlinux.org"&gt;ArchLinux&lt;/a&gt; fan but it's good to see that linux is gaining more and more visibility.&lt;br/&gt;
TV ads?&lt;br/&gt;
Spread the oss word.&lt;br/&gt;
&lt;br/&gt;
Tags: &lt;a href="http://technorati.com/tag/Ubuntu" rel="tag" class="techtag"&gt;Ubuntu&lt;/a&gt; &lt;a href="http://technorati.com/tag/OSS" rel="tag" class="techtag"&gt;OSS&lt;/a&gt; &lt;a href="http://technorati.com/tag/Archlinux" rel="tag" class="techtag"&gt;Archlinux&lt;/a&gt;&lt;br/&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31936016-115461951815761064?l=java-and-more.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://java-and-more.blogspot.com/feeds/115461951815761064/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31936016&amp;postID=115461951815761064&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115461951815761064'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115461951815761064'/><link rel='alternate' type='text/html' href='http://java-and-more.blogspot.com/2006/08/ubuntu-billboard.html' title='Ubuntu billboard'/><author><name>brocklanders</name><uri>http://www.blogger.com/profile/02423129072654101876</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31936016.post-115442187564866970</id><published>2006-08-01T10:41:00.000+02:00</published><updated>2006-09-21T15:12:12.896+02:00</updated><title type='text'>200.000.000 Firefox Download</title><content type='html'>Firefox reached 200.000.000 downloads.&lt;br/&gt;
&lt;a href="http://www.spreadfirefox.com/blog/19093"&gt;SpreadFirefox&lt;/a&gt; celebrate the event.&lt;br/&gt;
&lt;br/&gt;
Tags: &lt;a href="http://technorati.com/tag/Firefox" rel="tag" class="techtag"&gt;Firefox&lt;/a&gt;&lt;br/&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31936016-115442187564866970?l=java-and-more.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://java-and-more.blogspot.com/feeds/115442187564866970/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31936016&amp;postID=115442187564866970&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115442187564866970'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115442187564866970'/><link rel='alternate' type='text/html' href='http://java-and-more.blogspot.com/2006/08/200000000-firefox-download.html' title='200.000.000 Firefox Download'/><author><name>brocklanders</name><uri>http://www.blogger.com/profile/02423129072654101876</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31936016.post-115435663194985650</id><published>2006-07-31T16:30:00.000+02:00</published><updated>2006-09-21T15:12:58.790+02:00</updated><title type='text'>QT Java bindings</title><content type='html'>Trolltech Releases Technology Preview of &lt;a href="http://www.trolltech.com/company/newsroom/announcements/press.2006-07-14.7914556269/"&gt;Qt for Java Development&lt;/a&gt;.&lt;br/&gt;
This release named "Qt Jambi" will enable &lt;a href="http://java.sun.com"&gt;Java&lt;/a&gt; programmers to write Java application using the QT ui.&lt;br/&gt;
In this release there's also an &lt;a href="http://www.eclipse.org/"&gt;Eclipse&lt;/a&gt; integration plug-in.&lt;br/&gt;
&lt;br/&gt;
I'll give it a try.&lt;br/&gt;
&lt;br/&gt;
Tags: &lt;a href="http://technorati.com/tag/Java" rel="tag" class="techtag"&gt;Java&lt;/a&gt; &lt;a href="http://technorati.com/tag/QT" rel="tag" class="techtag"&gt;QT&lt;/a&gt; &lt;a href="http://technorati.com/tag/Trolltech" rel="tag" class="techtag"&gt;Trolltech&lt;/a&gt; &lt;a href="http://technorati.com/tag/Eclipse" rel="tag" class="techtag"&gt;Eclipse&lt;/a&gt;&lt;br/&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31936016-115435663194985650?l=java-and-more.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://java-and-more.blogspot.com/feeds/115435663194985650/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31936016&amp;postID=115435663194985650&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115435663194985650'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115435663194985650'/><link rel='alternate' type='text/html' href='http://java-and-more.blogspot.com/2006/07/qt-java-bindings.html' title='QT Java bindings'/><author><name>brocklanders</name><uri>http://www.blogger.com/profile/02423129072654101876</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-31936016.post-115433991616456618</id><published>2006-07-31T11:52:00.000+02:00</published><updated>2006-09-21T15:13:54.016+02:00</updated><title type='text'>Let's start</title><content type='html'>This is the first post on my new blog.&lt;br/&gt;
Here you will find my thoughts about &lt;a href="http://java.sun.com/"&gt;java&lt;/a&gt;, &lt;a href="http://www.opensource.org/"&gt;oss&lt;/a&gt;, &lt;a href="http://www.kernel.org/"&gt;linux&lt;/a&gt;, &lt;a href="http://www.cicciniviaggiatori.it"&gt;travel&lt;/a&gt;, soccer, my favourite soccer team &lt;a href="http://www.sslazio.it"&gt;lazio&lt;/a&gt; and more.&lt;br/&gt;
&lt;br/&gt;
Bye&lt;br/&gt;
&lt;br/&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/31936016-115433991616456618?l=java-and-more.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://java-and-more.blogspot.com/feeds/115433991616456618/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=31936016&amp;postID=115433991616456618&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115433991616456618'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/31936016/posts/default/115433991616456618'/><link rel='alternate' type='text/html' href='http://java-and-more.blogspot.com/2006/07/lets-start.html' title='Let&apos;s start'/><author><name>brocklanders</name><uri>http://www.blogger.com/profile/02423129072654101876</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
