<?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:blogger='http://schemas.google.com/blogger/2008' 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>2024-03-07T09:09:37.410+01:00</updated><title type='text'>Java and more</title><subtitle type='html'>Roberto&#39;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?alt=atom'/><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='https://img1.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>25</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&#39;s first post on Ciccini Viaggiatori Blog.&lt;br/&gt;
&lt;a href=&quot;http://www.cicciniviaggiatori.it/blog/2006/09/travelling-mommy.html#links&quot;&gt;Travelling mommy - Ciccini Viaggiatori&lt;/a&gt;&lt;br/&gt;
&lt;br/&gt;</content><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/fullpage/post/31936016/115858852931564591?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='https://img1.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=&quot;http://pages.google.com&quot;&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=&quot;javascript&quot;&amp;gt;&lt;br/&gt;
var h = document.getElementsByTagName(&quot;head&quot;)[0];&lt;br/&gt;
h.innerHTML=h.innerHTML+&lt;br/&gt;
  &quot;&amp;lt;link rel=StyleSheet href=\&quot;/style_override.css\&quot; type=\&quot;text/css\&quot;&amp;gt;&quot;;&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(&quot;head&quot;)[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 &quot;google imposed&quot; 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=&quot;http://rfilippone.googlepages.com/home&quot;&gt;This is an example of the result of the method.&lt;/a&gt;&lt;br/&gt;
&lt;br/&gt;
&lt;a href=&quot;http://rfilippone.googlepages.com/home2&quot;&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=&quot;http://technorati.com/tag/CSS&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;CSS&lt;/a&gt; &lt;a href=&quot;http://technorati.com/tag/Google&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;Google&lt;/a&gt; &lt;a href=&quot;http://technorati.com/tag/Page Creator&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;Page Creator&lt;/a&gt;&lt;br/&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/fullpage/post/31936016/115825457415644128?isPopup=true' title='10 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='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>10</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=&quot;http://developer.mozilla.org/devnews/index.php/2006/08/31/firefox-2-beta-2-milestone-released/&quot;&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=&quot;http://wiki.mozilla.org/Firefox:1.5.0.7:Community&quot;&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=&quot;http://technorati.com/tag/Firefox&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;Firefox&lt;/a&gt; &lt;a href=&quot;http://technorati.com/tag/Mozilla&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;Mozilla&lt;/a&gt;&lt;br/&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/fullpage/post/31936016/115824000162650623?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='https://img1.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=&quot;http://www.amd.com&quot;&gt;AMD&lt;/a&gt;&#39;s acquisition. In the &lt;a href=&quot;http://www.infoworld.com/article/06/08/02/32OPcurve_1.html&quot;&gt;article&lt;/a&gt; at InfoWorld he posed some questions and Hal Speed (&lt;a href=&quot;http://www.amd.com&quot;&gt;AMD&lt;/a&gt;&#39;s executive) gave some clarifying responses. There is also an interesting speculation about releasing &lt;a href=&quot;http://www.ati.com/&quot;&gt;ATI&lt;/a&gt; driver&#39;s in open source.&lt;br/&gt;
&lt;br/&gt;
Tags: &lt;a href=&quot;http://technorati.com/tag/AMD&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;AMD&lt;/a&gt; &lt;a href=&quot;http://technorati.com/tag/ATI&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;ATI&lt;/a&gt; &lt;a href=&quot;http://technorati.com/tag/OSS&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;OSS&lt;/a&gt;&lt;br/&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/fullpage/post/31936016/115528914733754973?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='https://img1.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=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://photos1.blogger.com/blogger/1687/562/1600/ubuntubillboard.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;http://photos1.blogger.com/blogger/1687/562/320/ubuntubillboard.jpg&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;&lt;br/&gt;
WildBill spotted and documented the first &lt;a href=&quot;http://wildbill.nulldevice.net/wordpress/?p=177&quot;&gt;Ubuntu Billboard&lt;/a&gt;.
Ubuntu isn&#39;t my favourite distribution as i am an &lt;a href=&quot;http://www.archlinux.org&quot;&gt;ArchLinux&lt;/a&gt; fan but it&#39;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=&quot;http://technorati.com/tag/Ubuntu&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;Ubuntu&lt;/a&gt; &lt;a href=&quot;http://technorati.com/tag/OSS&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;OSS&lt;/a&gt; &lt;a href=&quot;http://technorati.com/tag/Archlinux&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;Archlinux&lt;/a&gt;&lt;br/&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/fullpage/post/31936016/115461951815761064?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='https://img1.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=&quot;http://www.spreadfirefox.com/blog/19093&quot;&gt;SpreadFirefox&lt;/a&gt; celebrate the event.&lt;br/&gt;
&lt;br/&gt;
Tags: &lt;a href=&quot;http://technorati.com/tag/Firefox&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;Firefox&lt;/a&gt;&lt;br/&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/fullpage/post/31936016/115442187564866970?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='https://img1.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=&quot;http://www.trolltech.com/company/newsroom/announcements/press.2006-07-14.7914556269/&quot;&gt;Qt for Java Development&lt;/a&gt;.&lt;br/&gt;
This release named &quot;Qt Jambi&quot; will enable &lt;a href=&quot;http://java.sun.com&quot;&gt;Java&lt;/a&gt; programmers to write Java application using the QT ui.&lt;br/&gt;
In this release there&#39;s also an &lt;a href=&quot;http://www.eclipse.org/&quot;&gt;Eclipse&lt;/a&gt; integration plug-in.&lt;br/&gt;
&lt;br/&gt;
I&#39;ll give it a try.&lt;br/&gt;
&lt;br/&gt;
Tags: &lt;a href=&quot;http://technorati.com/tag/Java&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;Java&lt;/a&gt; &lt;a href=&quot;http://technorati.com/tag/QT&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;QT&lt;/a&gt; &lt;a href=&quot;http://technorati.com/tag/Trolltech&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;Trolltech&lt;/a&gt; &lt;a href=&quot;http://technorati.com/tag/Eclipse&quot; rel=&quot;tag&quot; class=&quot;techtag&quot;&gt;Eclipse&lt;/a&gt;&lt;br/&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/fullpage/post/31936016/115435663194985650?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='https://img1.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&#39;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=&quot;http://java.sun.com/&quot;&gt;java&lt;/a&gt;, &lt;a href=&quot;http://www.opensource.org/&quot;&gt;oss&lt;/a&gt;, &lt;a href=&quot;http://www.kernel.org/&quot;&gt;linux&lt;/a&gt;, &lt;a href=&quot;http://www.cicciniviaggiatori.it&quot;&gt;travel&lt;/a&gt;, soccer, my favourite soccer team &lt;a href=&quot;http://www.sslazio.it&quot;&gt;lazio&lt;/a&gt; and more.&lt;br/&gt;
&lt;br/&gt;
Bye&lt;br/&gt;
&lt;br/&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/fullpage/post/31936016/115433991616456618?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&#39;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='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>