<?xml version="1.0" encoding="utf-8"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en">
<title>Dana Nourie&apos;s Blog</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/" />
<modified>2008-04-29T22:19:46Z</modified>
<tagline></tagline>
<id>tag:weblogs.java.net,2008:/blog/dnourie/189</id>
<generator url="http://www.movabletype.org/" version="3.01D">Movable Type</generator>
<copyright>Copyright (c) 2008, dnourie</copyright>
<entry>
<title>Sun Writers Cover the 2008 JavaOne Conference</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2008/04/sun_writers_cov.html" />
<modified>2008-04-29T22:19:46Z</modified>
<issued>2008-04-29T22:19:46Z</issued>
<id>tag:weblogs.java.net,2008:/blog/dnourie/189.9636</id>
<created>2008-04-29T22:19:46Z</created>
<summary type="text/plain">Get information on the latest technologies, views on technical sessions and Birds-of-a-Feather (BOF) talks, and special interviews with attendees and evangelists.</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>
<dc:subject>Community</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
<![CDATA[<p>
Sun writers have begun covering the 2008 JavaOne Conference. Get information on Java University, CommunityOne, the latest technologies, views on technical sessions and Birds-of-a-Feather (BOF) talks, and special interviews with attendees and evangelists.
</p>
<p>
<a href="http://blogs.sun.com/javaone2008/">2008 JavaOne Conference Blogs</a></p>
<p>
Be sure to subscribe to the RSS feed so you can read all of the entries as they appear.

Dana Nourie

]]>

</content>
</entry>
<entry>
<title>An Introduction to BLOB Streaming for MySQL Project</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2008/04/an_introduction_1.html" />
<modified>2008-04-17T18:14:35Z</modified>
<issued>2008-04-17T18:14:22Z</issued>
<id>tag:weblogs.java.net,2008:/blog/dnourie/189.9557</id>
<created>2008-04-17T18:14:22Z</created>
<summary type="text/plain">Read why BLOB streaming may be relevant to your project, and how you can get started streaming BLOBs.</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>
<dc:subject>Databases</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
<![CDATA[<p>
Speaker, Paul McCullagh<br /><a title="Blobstreaming.org" href="http://www.blobstreaming.org">Blobstreaming.org</a><br /><br />This session explained why BLOB streaming may be relevant to your project, and how you can get started streaming BLOBs. </p><p>For ordinary types of data, MySQL sends the buffer from the client to the server. Streaming
involves making a connection from the source to the destination
continuously, storing and streaming simultaneously. But BLOBs are not ordinary data. <br /><br />BLOBs were invented by Jim Starkey. A BLOB is backronym for Basic Large Object, or Binary Large Object, and is a collection of binary data stored as a single entity in a database management system. Blobs are typically images, audio, or other multimedia objects, though sometimes binary executable code is stored as a BLOB. Database support for BLOBs is not universal.<br </p><p>The problem of storing BLOBs in a database is multifaceted.&nbsp; BLOBs create big rows in memory, and
sequential scans are not possible. The database can become too big to
handle, and then the database won't scale well. In addition, BLOBs slows down replication, and
BLOB data must be written to the binary log.</p><p>So, why put BLOBs in the database? So that BLOB operations are transactional and
have valid references, and so you have the data all in one place, which is good
for testing, Small BLOBs are handled better by databases, and it's convenient to handle all your data the same way. Additionally, with
BLOBs in a database, your backups are more consistent. Lastly,
putting the BLOBs in a database makes replication possible. <br /></p><p>To overcome these issues, the MySQL Project streams BLOB data
directly in and out of the database.You can store Blobs of any size in the
database, and create a scalable back-end that can handle any throughput and
storage requirement. The object is to provide an open system that can
be used by all engines.<br /><br />The Scalable BLOB Streaming Project solves the above problems with a BLOB repository, so a collection of BLOBs are stored outisde of database rows, and the references are stored in the table. The advantages of this is that it allows for incremental backup, automatic defragmentation and compastion, and repository blob data that will not be written to the binary log and can be scaled out.<br /><br />The goal of the Scalable BLOB Streaming Project for MySQL is to provide a scalable, stream-based, infrastructure for the storage and retrieval of pictures, films, MP3 files, and other binary and text objects (BLOBs) to and from the database.<br /><br />The first step has been taken with the creation of the BLOB Streaming engine for MySQL, a storage engine that allows BLOB data to be uploaded and downloaded directly to and from a MySQL table, using the standard HTTP protocol.

<a href="http://blogs.sun.com/mysqlconf/entry/an_introduction_to_blob_streaming">Read the rest of this blog</a>]]>

</content>
</entry>
<entry>
<title>MySQL Conference Keynote &amp; Workbench</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2008/04/mysql_conferenc_1.html" />
<modified>2008-04-15T22:28:14Z</modified>
<issued>2008-04-15T21:51:23Z</issued>
<id>tag:weblogs.java.net,2008:/blog/dnourie/189.9543</id>
<created>2008-04-15T21:51:23Z</created>
<summary type="text/plain">I&apos;ve published the latest blogs from the MySQL Conference on http://blogs.sun.com/mysqlconf/.</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>
<dc:subject>Community</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
I&apos;m writing the blogs about the MySQL Conference at
http://blogs.sun.com/mysqlconf/ because of some technical issues. This morning I added two blogs:

The MySQL Workbench: http://blogs.sun.com/mysqlconf/entry/the_mysql_workbench

and

The World with Free Software:
http://blogs.sun.com/mysqlconf/entry/the_world_with_free_software

Dana Nourie

</content>
</entry>
<entry>
<title>MySQL Conference</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2008/04/mysql_conferenc.html" />
<modified>2008-04-15T04:26:40Z</modified>
<issued>2008-04-15T04:23:39Z</issued>
<id>tag:weblogs.java.net,2008:/blog/dnourie/189.9537</id>
<created>2008-04-15T04:23:39Z</created>
<summary type="text/plain">The MySQL Conference in Santa Clara, CA starts this week, and I am looking forward to the sessions.</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>
<dc:subject>Community</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
<![CDATA[<p>The <a href="http://en.oreilly.com/mysql2008/public/content/home">MySQL Conference & Expo</a> in Santa Clara, CA starts this week, and I am looking forward to the sessions. Today was tutorial day, but my day officially begins Tuesday morning and will go until Thursday.
<p>
I started using the <a href="http://www.mysql.com/">MySQL database</a> about nine years ago when I was creating web sites. Most web service providers used MySQL for their customers, and they still do. MySQL was popular then, and it's even more so now. Along with it's popularity, its list of features and robustness has grown over the years.
<p>
I was excited when I heard the announcement of the acquisition by Sun Microsystems. Immediately, I downloaded MySQL onto my system, and begin working with MySQL in the NetBeans IDE. It was an easy integration, and I am having a great time developing web apps that use this database.

<p>
This week I am looking forward to the many sessions I'll be attending.  It was hard to choose sessions for certain times, as so many of them sound really good. I'll blog about as many of those sessions that I can, and share the juicy details with all of you who are unable to attend, or may be at the conference but in a different session.
<p>
Tomorrow morning are the keynotes, and then we are off to the technical goodies:
<p>
<strong>The Lost Art of the Self Join</strong> --- I'm looking forward to a refresher on on joins, and getting some nice concrete technical advice.
<p>
<strong>Best Practices for Database Administrators</strong> -- This sounds like it's going to be nice solid information.
<p>
<strong>Talk = Ruby + MySql.new(bie): An Introduction to Using MySQL with Ruby</strong> -- I'm most familiar with using Ruby with NetBeans, so it'll be interested to get the details and skinny on MySQL and Ruby.
<p>
If you'd like to see more information on the conference itself, check out their web site. <a href="http://en.oreilly.com/mysql2008/public/content/home">MySQL Conference & Expo</a>
<p>
~ Dana Nourie, Staff Writer, Sun Microsystems
]]>

</content>
</entry>
<entry>
<title>SDN Chat: Meet the Writers of java.sun.com</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2008/02/sdn_chat_meet_t.html" />
<modified>2008-02-12T23:45:37Z</modified>
<issued>2008-02-12T23:44:58Z</issued>
<id>tag:weblogs.java.net,2008:/blog/dnourie/189.9188</id>
<created>2008-02-12T23:44:58Z</created>
<summary type="text/plain">Please join us in Sun&apos;s Developer Playground in  on Thursday, February 14 at 10am PST to meet the writers of java.sun.com. SMI Press is offering attendees one of three new SMI Press books for free!</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>
<dc:subject>Community</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
<![CDATA[<a href="http://slurl.com/secondlife/Sun%20Microsystems/127/26/62">SDN Chat: Meet the Writers of java.sun.com</a><br>
Please join us in <a href="http://slurl.com/secondlife/Sun%20Microsystems/127/26/62">Sun's Developer Playground</a> in <a href="http://www.secondlife.com">Second Life</a> on Thursday, <b>February 14 at 10am PST</b> to meet the writers of java.sun.com. SMI Press is offering attendees one of three new SMI Press books for free!]]>

</content>
</entry>
<entry>
<title>New to Java Programming Center Redesign</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2008/01/new_to_java_pro_1.html" />
<modified>2008-01-25T18:41:29Z</modified>
<issued>2008-01-25T18:39:35Z</issued>
<id>tag:weblogs.java.net,2008:/blog/dnourie/189.9069</id>
<created>2008-01-25T18:39:35Z</created>
<summary type="text/plain">The New to Java Programming Center has recently been redesigned to accommodate more articles and tutorials, community information, and has been organized so the information you need is easy to find.
</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>
<dc:subject>Community</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
<![CDATA[<p>
The <a href="http://java.sun.com/new2java/">New to Java Programming Center</a> has recently been redesigned to accommodate more articles and tutorials, community information, and has been organized so the information you need is easy to find.
</p>
<p>
If you are new to the Java platform, you can use the <a href="http://java.sun.com/new2java/">New to Java Programming Center</a> to get your computer set up with the Java platform, learn the syntax of the Java programming language, and learn how to develop applications for desktops, the web, or mobile devices.
</p>
<p>
The information listed and linked to the <a href="http://java.sun.com/new2java/">New to Java Programming Center</a> is free. In addition, it lists links to Sun courses and certification training that you can buy.
</p>]]>

</content>
</entry>
<entry>
<title>New Certification Courses</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2007/12/new_certificati_1.html" />
<modified>2007-12-10T18:49:42Z</modified>
<issued>2007-12-10T18:49:29Z</issued>
<id>tag:weblogs.java.net,2007:/blog/dnourie/189.8794</id>
<created>2007-12-10T18:49:29Z</created>
<summary type="text/plain">Read about and sign up for these new certification courses.</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>
<dc:subject>Community</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
<![CDATA[<p>

Developers have been asking frequently lately if we have any new certification courses out, and I am happy to say that we do. See below:
</p>
<p>
<a href="http://www.sun.com/training/catalog/courses/CX-310-065.xml">Sun Certified Programmer for the Java Platform, Standard Edition 6</a>-- The Sun Certified Programmer for Java Platform, Standard Edition 6 certification exam is for programmers experienced using the Java programming language. Achieving this certification provides clear evidence that a programmer understands the basic syntax and structure of the Java programming language and can create Java technology applications that run on server and desktop systems using Java SE 6.</p>
<p>
<a href="http://www.sun.com/training/catalog/courses/CX-310-066.xml">Sun Certified Programmer for the Java Platform, Standard Edition 6 Upgrade Exam (CX-310-066)</a>-- The Sun Certified Programmer for Java Platform, Standard Edition 6 certification exam is for programmers experienced using the Java programming language. Achieving this certification provides evidence that a programmer understands the basic syntax and structure of the Java programming language and can create Java technology applications that run on server and desktop systems using Java Platform, Standard Edition 6 Sun strongly recommends that all new candidates interested in becoming a Sun Certified Java Programmer (SCJP) take this new version of the certification exam, rather than a previous version. In this way, candidates can demonstrate that they are knowledgeable in the latest technology. Sun also recommends that those certified on a previous version of SCJP update their credentials by taking the SCJP 6 Upgrade exam.
</p>
<p>
******
<p>
<a href="http://slurl.com/secondlife/Sun%20Microsystems/172/162/91" target="_blank"><img src="http://www.sun.com/images/l2/l2_dananouri_sl.gif" alt="Sun Microsystems Developer Playground - Dana Nourie" width="100" height="88" border="0" style="float: left; margin-right: 10px" /></a>

<b><a href="http://slurl.com/secondlife/Sun%20Microsystems/172/162/91" target="_blank">Sun Microsystems Developer Playground</a></b><br />
Join Dana Nourie December 18th, Tues 9 AM PST and 7 PM PST, in <a href="http://www.secondlife.com" target="_blank">Second Life</a> at the <a href="http://slurl.com/secondlife/Sun%20Microsystems/172/162/91" target="_blank">Sun Microsystems Developer Playground</a> to discover how easy it is to learn the Java platform through web programming. Watch a demo and have your questions answered.
</p>
******]]>

</content>
</entry>
<entry>
<title>Mark Your Calendars!</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2007/12/for_your_calend_1.html" />
<modified>2007-12-06T20:27:34Z</modified>
<issued>2007-12-06T20:22:50Z</issued>
<id>tag:weblogs.java.net,2007:/blog/dnourie/189.8773</id>
<created>2007-12-06T20:22:50Z</created>
<summary type="text/plain">Join Dana Nourie December 18th, Tues 9 AM PST and 7 PM PST, in Second Life at 
the Sun Microsystems Developer Playground to discover how easy it is to learn the Java platform 
through web programming.</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>

<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
<![CDATA[<a href="http://slurl.com/secondlife/Sun%20Microsystems/172/162/91
"><img src="http://www.sun.com/images/l2/l2_dananouri_sl.gif" alt="Sun Microsystems Developer Playground - Dana Nourie" width="100" height="88" border="0" style="float: left; margin-right: 10px" /></a>

<b><a href="http://slurl.com/secondlife/Sun%20Microsystems/172/162/91
" target="_blank">Sun Microsystems Developer Playground</a></b><br />
Join Dana Nourie December 18th, Tues 9 AM PST and 7 PM PST, in <a href="http://www.secondlife.com" target="_blank">Second Life</a> at 
the <a href="http://slurl.com/secondlife/Sun%20Microsystems/172/162/91">Sun Microsystems Developer Playground</a> to discover how easy it is to learn the Java platform 
through web programming. Watch a demo and have your questions answered.

</p>
<br>]]>

</content>
</entry>
<entry>
<title>Java Technology Fundamentals Second Life Chat</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2007/12/java_technology.html" />
<modified>2007-12-05T22:36:19Z</modified>
<issued>2007-12-05T22:25:46Z</issued>
<id>tag:weblogs.java.net,2007:/blog/dnourie/189.8765</id>
<created>2007-12-05T22:25:46Z</created>
<summary type="text/plain">Missed the Java Fundamentals chat? Read our discussion here, where we talk about NetBeans, how beginners can learn the Java platform, how scripting languages fit in, and what resources are available.</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>
<dc:subject>Community</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
<![CDATA[<p>
The Java Fundamentals chat within <a href="http://www.secondlife">Second Life</a> was a Huge success! We had about 25 attendees, and everyone was enthusiastic with their questions. We had a great discussion. In case you missed it, I've posted it below with minor editing. Additionally, at the end is the information from the Note card that the attendees received. Here in this blog format, we cannot share the free virtual T-shirts that attendees also received.
</p>
<p>
<a href="http://blogs.sun.com/JavaFundamentals/entry/java_technology_fundamentals_second_life">Read more</a>
</p>
<p>

You can also attend this same chat in Second Life Dec 5, Wed at 7PM, PST. Please join us to ask any questions you have about where and how you can learn the Java platform through Sun's resources:
<a href="http://slurl.com/secondlife/Sun%20Pavilion/148/53/64">Sun Developer Playground</a>
</p>]]>

</content>
</entry>
<entry>
<title>Handwriting Recognition with Java Technology</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2006/05/handwriting_rec.html" />
<modified>2006-05-18T15:27:38Z</modified>
<issued>2006-05-18T15:27:32Z</issued>
<id>tag:weblogs.java.net,2006:/blog/dnourie/189.4823</id>
<created>2006-05-18T15:27:32Z</created>
<summary type="text/plain">I thought it was a little odd that only twenty something people sat with in a room that normally could seat over 100. I had thought many others would be interested in this topic. Apparently I was wrong. I was...</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>

<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
<![CDATA[<p>I thought it was a little odd that only twenty something people sat with in a room that normally could seat over 100.  I had thought many others would be interested in this topic. Apparently I was wrong.</p>

<p>I was excited to learn more about this topic, to discover what packages and clases are needed to write applications that work with writing devices, but this session fell flat on my expectations.</p>

<p>The speaker Yu-Hong Wang, from Maplesoft, spoke well and explained a few concepts in detail. He described the Hidden Markove Model and the Viterbi Algorithm, but Java technology barely came into the picture.</p>

<p>Perhaps there is not a lot to say on this topic. If that's the case, we didn't need a session on it. I don't feel like I learned anything, except to use a mouse listener for these types of application.</p>

<p>The session only lasted 30 minutes instead of the alloted 60 minutes, and the demo was simply the speaker drawing on a PC Mouse tablet.</p>

<p>In all, it was a disappointment.</p>

<p>Dana</p>]]>

</content>
</entry>
<entry>
<title>Picking up the pace!</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2006/05/the_pace_has_re_1.html" />
<modified>2006-05-17T15:40:37Z</modified>
<issued>2006-05-17T15:40:30Z</issued>
<id>tag:weblogs.java.net,2006:/blog/dnourie/189.4793</id>
<created>2006-05-17T15:40:30Z</created>
<summary type="text/plain">The pace has really picked up here at JavaOne. Streams of people going and coming from the rooms, the Pavillion is milling with crowds, but overall everything seems to be running smoothly. Yesterday was interesting, starting off with the General...</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>
<dc:subject>JavaOne</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
<![CDATA[<p>The pace has really picked up here at JavaOne. Streams of people going and coming from the rooms, the Pavillion is milling with crowds, but overall everything seems to be running smoothly.</p>

<p>Yesterday was interesting, starting off with the General Session, which hosted a live band, and lots of announcements. The main one was when Rick Green took the stage, and Johnnathon asked, "So when is Sun going to open source Java?" Rick looked rather uncomfortable, made a few jokes, and then replied seriously that "It's not a matter of when but how." Hmmm.</p>

<p>I had anticipated a lot of problems with the new Schedule Builder this year. John Gage, the opening speaker at the General Session, gave a lot of detail to the importance of using this new tool and why. But I noticed we were moving the session rooms quickly as we passed our Java cards over the scaners. I've only noticed a few people getting taken to the side because they were not registered, or their registration had not been properly logged.</p>

<p>The sessions are good. The speakers this year seem relaxed and articulate, and slides are filled with sample code, which is what developers want to see.</p>

<p>The session I went to on improving Swing productivity was good, though I think it would have equally made a really nice article in JavaWorld or some such.</p>

<p>San Francisco weather has caught up with us. The lovely sunny, warm air has given way to a thick, cold marine layer of fog. I can't see the bay out there this morning, and the Oakland hills that I could see from my hotel room yesterday is but a bit of memory in the light of day this morning.</p>

<p>Now, I'll eat then head back over to Moscone to mingle with the rest.</p>

<p>Have a wonderful day! Dana</p>]]>

</content>
</entry>
<entry>
<title>Java University</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2006/05/java_university.html" />
<modified>2006-05-16T01:03:02Z</modified>
<issued>2006-05-16T01:02:55Z</issued>
<id>tag:weblogs.java.net,2006:/blog/dnourie/189.4745</id>
<created>2006-05-16T01:02:55Z</created>
<summary type="text/plain"> The Java University course Exploring the Struts Framework and How it Supports Web Component Development was really outstanding. I wasn&apos;t sure exactly what to expect, as this area of JavaOne was new to me. I was pleasantly surprised. The...</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>
<dc:subject>J2EE</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
<![CDATA[<p>
The Java University course <em>Exploring the Struts Framework and How it Supports Web Component Development</em> was really outstanding. I wasn't sure exactly what to expect, as this area of JavaOne was new to me. I was pleasantly surprised.
</p>
<p>
The area surrounding the rooms was crowded when I arrived, and more and more people arrived during my half an hour wait. I wondered how they were going to accomodate so many people. But the individual rooms were large, holding up to 140 people each, and the one I was in was nearly full.
</p>
<p>
The instructor obviously knew his stuff, and the topic of web components and struts was covered in great detail. I don't think anyone left the place without having a good understanding of the J2EE architecture, the components available, how they fit together, and how Struts simplify the process. In addition, the book that was provided had all the slides content, including the sample code.
</p>
<p>
I highly recommend Java University to all. It clarified a lot for me, and for those who know little about J2EE, it would be a wonderful introduction. Seasoned pros would also get a lot out of it, especially for the Q&A sessions during the class.
</p>
<p> 
Tomorrow I'll be going to the first General Session!
Dana]]>

</content>
</entry>
<entry>
<title>Opening day at JavaOne!</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2006/05/opening_day_at.html" />
<modified>2006-05-15T15:01:37Z</modified>
<issued>2006-05-15T15:01:29Z</issued>
<id>tag:weblogs.java.net,2006:/blog/dnourie/189.4735</id>
<created>2006-05-15T15:01:29Z</created>
<summary type="text/plain">Hello! I&apos;m up early this morning, and San Francisco is holding promise of another beautiful, unusally warm day. It&apos;s clear with scattered clouds, and lots of blue sky. Yesterday hit a whopping 89 degrees, almost unheard of in this part...</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>

<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
<![CDATA[Hello!
<p>
</p>
I'm up early this morning, and San Francisco is holding promise of another beautiful, unusally warm day. It's clear with scattered clouds, and lots of blue sky. Yesterday hit a whopping 89 degrees, almost unheard of in this part of California. It was a welcome treat. Many of us, however, brought only a few short sleeve shirt. But the Moscone Center is sure to have a very comfortable controlled environment so I'm not concerned, and I'll be surprised if this weather holds out. 
<p>
</p>
This morning I'm heading off to Java University. It'll be my first time attending one of these all day courses, and I'm very much looking forward to it. This year the course offerings cover Java EE technologies:
<p>
</p>
<ul>
<li> Implementing Business Logic Using Enterprise JavaBeans Architecture for the Java EE Platform
<li> How Java EE Patterns Help in Architecting and Designing Robust Java EE Applications
<li> Using JAX-RPC to Enable Java EE Platform Applications to Interoperate With Applications That Are Not Java Technology-Based in a Secure Web Services Framework
<li> Exploring the Struts Framework and How it Supports Web Component Development
</ul>
<p>
</p>
I'm going to write an article for the Java Today paper, so you might check it out if you're here at the conference. Otherwise, stay tuned and I'll let you know how it goes in a blog later today.
<p>
</p>
Welcome to all of you who made it here to SF this year, and stay posted for those of you at home. The <a href="java.sun.com">java.sun.com</a> will be hosting articles on sessions here at JavaOne, and many of us are blogging the events.
<p>
</p>
Have a wonderful day! <p>
</p>
Dana Nourie, java.sun.com staff writer]]>

</content>
</entry>
<entry>
<title>Getting Ready for the JavaOne Conference 2006</title>
<link rel="alternate" type="text/html" href="http://weblogs.java.net/blog/dnourie/archive/2006/05/getting_ready_f.html" />
<modified>2006-05-03T23:14:08Z</modified>
<issued>2006-05-03T23:14:01Z</issued>
<id>tag:weblogs.java.net,2006:/blog/dnourie/189.4644</id>
<created>2006-05-03T23:14:01Z</created>
<summary type="text/plain"> Hi Everyone, The java.sun.com staff are gearing up to cover the JavaOne conference this year. We are attending some of the sessions and writing articles and blogs to cover the event. It looks like it&apos;s going to be a...</summary>
<author>
<name>dnourie</name>

<email>dana.nourie@sun.com</email>
</author>
<dc:subject>Community</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://weblogs.java.net/blog/dnourie/">
<![CDATA[<p>
Hi Everyone,
</p>
<p>
The java.sun.com staff are gearing up to cover the JavaOne conference this year. We are attending some of the sessions and writing articles and blogs to cover the event. It looks like it's going to be a great year. 
</p>
<p>
We have already we have put together Top 10 articles to point out some sessions we thought would be useful to you, and we have arranged them by theme. Here are a few:
</p>
<p>
<a href="http://java.sun.com/developer/technicalArticles/JavaOne2006/tools_top10.html">Tools: Top 10 Destinations at the 2006 JavaOne Conference</a>
</p>
<p>
<a href="http://java.sun.com/developer/technicalArticles/JavaOne2006/se_top10.html">Top 10 Java SE Destinations at the 2006 JavaOne Conference</a>
</p>
<p>
<a href="http://java.sun.com/developer/technicalArticles/JavaOne2006/Top10EnterpriseSessions.html">Top 10 Destinations for Enterprise Developers at the 2006 JavaOne Conference</a>
</p>
<p>
We hope to meet you there. If you can't make the conference this year be sure to watch the java.sun.com web site for coverage, as well as blogs.sun.com for blogging coverage.
</p>
<p>
<a href="http://java.sun.com">java.sun.com</a>
</p>
<p>
<a href="http://java.sun.com/javaone/sf/index.jsp">2006 JavaOne Conference Web Site</a>
</p>
<p>
We're having delightful weather here in California, sunny, warm, with just a perfect breeze. But remember San Francisco tends to be windy and cool, sometimes downright foggy and cold, even in summer. So dress in layers. See you soon!
</p>
<p>
Dana Nourie,<br>
Staff Writer for java.sun.com]]>

</content>
</entry>

</feed>