Friday October 14, 2005 Well, my final day as a Sun employee approaches. Since being kicked out by Sun UK as part of its cost cutting exercise I have managed to find another job, which is both good news and shows that there are other companies out there that want Oracle skilled people and know how to use them to their advantage.
Since being told of my redundancy so that Sun could save money, the main other news I have seen from Sun is its continued spending of money to buy other companies - Tarantella, Seebeyond and Storagetek. The cost of Storagetek alone was $4.1 billion.
( Oct 14 2005, 04:21:44 PM BST ) Permalink Comments [1]
Sun UK has had another round of redundancies, and I have been caught by it this time, as have a number of other good people. So it is goodbye to Sun from me, and to this blog.
I was looking forward to writing lots of interesting things about the new Galaxy servers and Niagara as they came to market, and we got to see what they could do running Oracle databases and applications. Especially when they would be running Solaris 10, with all its new features and advantages.
At the moment I am not angry by the decision (it is important to keep the business viable), just mainly disappointed. It seems a waste of the past 6 years as an Oracle / Performance specialist at Sun to be 'let go' when Sun is releasing some of the most interesting technology and products during the whole of that time (see the previous paragraph).
Anyway, I still wish Sun the best, as it is the most innovative computer systems company out there, and does have some interesting products and technology coming down the line. As I see some of this stuff get released I might blog about it at my personal blog at johnmbrady.blogspot.com
( Sep 16 2005, 10:19:15 AM BST ) Permalink Comments [1]
I've just spent a long weekend in
Northern Ireland
attending a wedding.
Everything went well, and everyone had a good time.
One of the nice things during the wedding ceremony itself,
was that there was a piece of music played on a harp at one point.
This made a nice change from the organ traditionally played in churches,
and the acoustics of the harp gave a different feel to the church.
The harp player was Rachel Hair,
who has been playing the Scottish harp since a child.
We made a weekend of the visit over from England, and had a day doing some of the tourist stuff. We visited the Giant's Causeway which is quite a spectular piece of coastline, and Bushmills Distillery which makes Irish Whiskey.
( Aug 30 2005, 12:39:57 PM BST ) Permalink Comments [0]
Having posted a few entries to my blog here, I thought it was about time I tweaked its presentation and how it all got displayed.
I have played with HTML in the past to create a few simple, crude web pages, so I thought I would stand a chance with this. However, these were static pages that never changed, and it was really about simple formatting of some text and pictures on the page. Roller, which is used as the engine behind all these blogging entries, is a different and more up to date beast than the HTML I was used to. So I had to do some quick catching up with the current state of HTML, before I could go ahead and amend my blog configuration to achieve what I wanted.
The first thing I had to come to grips with is that HTML has evolved a bit, and that HTML 4.0 is quite different to HTML 3.2 in a number of areas. This is most obvious with regard to formatting the display of your text. HTML 3.2 allowed you to mix formatting specifications, such as FONT tags, in amongst the content that was being formatted by them. HTML 4.0 has deprecated all this, separating formatting specifications from the content it formats. (However, HTML 4.0 still currently supports FONT tags for all the existing pages on the web that use it.) This allows you to reformat the whole of a page, by simply changing a few format controls, which should be grouped together at the start of the page. To further enhance this ability, HTML allows you to centralise all your formatting controls into one file, and use them in all your web pages via Cascading Style Sheets (CSS). However, if needed, you can still override these within a web page, and essentially define a local, anonymous class style and use it at the same time.
Roller uses a set of CSS pages to define standard formats (called a class in HTML). The web pages that Roller uses to publish your blog entries refer to these classes to control the formatting of different parts of the contents of the web page. So to change some aspects of the formatting and layout of my blog, meant that I had to find out what classes were being used in my web blog page, and how these were defined in the CSS pages.
The master Roller page (_decorator) includes a page called _css, which in turn expands to include themes/base.css, followed by themes/basic/theme.css because I am using the Basic Theme. One of the rules of CSS seems to be that it uses the last definition it finds of any class style. We can see that theme.css redefines some classes that have already been defined in base.css. In other words, I can use my blog's _css file to redefine class formats used by my blog, in order to customise the appearance of my blog page.
My _css file now includes the following additional lines at the end of it:
<style type="text/css">
.entries {width: 75%}
.rightbar {width: 25%}
h2 { font-size:15px }
h3 { font-size:16px }
h4 { margin:10px; }
pre.code {font-size:12px; }
ul.recentposts {list-style-type:disc}
</style>
This does the following for me:
Then in my _day page I changed the bold around the entry title to be h3 instead:
<h3>$entry.title</h3>
In my main weblog page itself, I added a section to list the most recent 10 blog entries I have made, after the Referers section.
<h2>Recent Posts</h2> <div class="sidebar"> #showRecentEntries(10) </div>
So now you see the results of these changes around you on my weblog page. I have also made a few other smaller changes, around the order of the sections in the right hand sidebar, and the display of my blog description after the title at the top of the page. I shall also probably make a few more tweaks over time. At the moment I am considering whether I should swap around my blog title and its description. I see that a number of other people have, so that the title is more punchy and descriptive, and the description states the name of the person. If this page is not called "John Brady's Weblog" but something else, then I have obviously gone ahead and changed it.
( Jul 14 2005, 10:46:12 AM BST ) Permalink Comments [0]
Like many other people, no doubt, after much time I have eventually decided to become another blogger at Sun. Here, believe it or not, is my first weblog post.
I'm John Brady, part of Sun Microsystems in the United Kingdom. Basically I'm a kind of Technical Consultant specialising in the Oracle database software, and all things related to performance of computer systems. A quick summary of my history:
Since starting as an application developer many years ago, I have always been working with relational database systems on UNIX in one way or another. During the past 15 years, I have been working with some of the largest and most powerful UNIX systems, especially multi-processor (SMP) systems, for different system manufacturers. In this time I have always focused on performance of large databases running on UNIX multi-processor systems. As a result I have experience of the issues involved in designing, building and deploying large complex server based solutions.
Given this, I will mainly be making posts about the Oracle database software, and performance management of systems, including good design of large, scalable systems.
( Jun 29 2005, 03:46:37 PM BST ) Permalink Comments [1]