It’s December. It’s the time of the year when people are either reviewing what kind of a year it has been for them or predicting the future. I thought that this week I’d look forward to next year.
The big news for mainframe users is, of course, the price hike promised by IBM. If you go to http://www-01.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/9/897/ENUS312-129/index.html&lang=en&request_locale=en you can see that from 1 July, the price of Flat Workload License Charges (FWLC) will increase.
According to Timothy Prickett Morgan writing for The Register: “IBM has a wide variety of monthly software pricing schemes for its System z mainframes, but the FLMC scheme is interesting in that it applies to all machines regardless of size or vintage equally and as you increase the capacity of the mainframe, the software fees stay flat.
“The bad thing about the FWLC scheme is that it does not have what IBM calls sub-capacity pricing, where customers use virtualization to isolate capacity on a particular mainframe and then only get charged for that software based on the MSUs consumed in that logical partition.” MSUs are Metered Service Units. It looks like the average price rise will be around the 10 percent level.
We probably won’t be making use of Application Performance Management Software as a Service (perhaps more easily written as APM SaaS). A survey conducted by IDG Research Services online among members of the CIO Forum on LinkedIn during August found that 61 percent of organizations have no plans to implement APM SaaS. But around a quarter (24 percent) already use APM SaaS in some capacity, with a mere 4 percent are using an APM SaaS vendor to monitor all their critical applications.
A CA Technologies survey found that 80 percent of Australian organizations are expected to face a shortage of mainframe skills in the future, with 57 percent already experiencing difficulties. The skills shortage issue is one that IBM, CA, and other companies are addressing with graduate and undergraduate programmes of study on mainframes.
The good news from the survey is that the mainframe is also playing an increasingly strategic role in managing the evolving needs of the enterprise. Again this comes as a surprise to no-one who knows about mainframes. With the growth in use of Linux on the mainframe, organizations can save lots of their budget. And the new hybrid models allow sites to get the best of all worlds.
The survey also found that 36 percent of respondents anticipate an increase in hardware spending in the next 12 to 18 months. Good news for hardware vendors. 44 percent of respondents are planning to increase their spending on mainframe-related services.
And while our focus is on mainframes, we all use laptops, tablets, and smartphones, so it’s interesting to see that Steven Sinofsky has left Microsoft. Who’s he, you say? Well, he was one of the driving forces behind Windows 8. Similarly, Scott Forstall has left Apple. Both were working to get laptops, tablets, and smartphones to use much the same interface and appear to the user to all have the same look-and-feel. Perhaps that touchscreen-style way of working will make its way to the interface to mainframe applications? Or perhaps in many ways it has in so far as remote access to mainframes can be achieved over the Internet from a browser on any platform.
I definitely predict more things will decide they are ‘cloud’ things. Mainframe users have been saying all along that they used to sit at a terminal and not worry where the application software lived, or where the data was stored – they just knew it was ‘out there’ and got on with their work. I’m sure this ‘cavalier’ attitude is one most users would like to be able to embrace. We’ve all had the problem with a file being on our office computer when we need it in the evening or weekend, or being on our home computer on Monday morning when we’re in the office. IT departments can sweat the security issues, but users will love the idea of it all (data and apps) being out there and available from anywhere.
Finally, if you’re a vendor, don’t forget to update your information in the Arcati Mainframe Yearbook 2013 – you can do it here. And if you’re a mainframe user, then help us by completing the user survey here.
Showing posts with label futures. Show all posts
Showing posts with label futures. Show all posts
Sunday, 2 December 2012
Sunday, 9 May 2010
Web futures – they are among us
Rule number 1 of the Internet is, of course, that there are no rules – but if there were, it would be that the Internet is always changing and evolving. While some people have only just started to use style sheets and XHTML, others are pushing the envelope with CSS3 and HTML5. I want to have a quick look at what this all means.
There was a time when HTML5 seemed like something in the far future, but now Apple (purveyors of the unbelievable fascist iTunes and lots of really cool gadgets) claims that there’s no point worrying about the fact Adobe’s Flash doesn’t run on their iPhones because it will be sidelined when HTML5 is adopted. GoogleWave, the collaboration and communication software from Google, already uses HTML5.
In addition, many currently available browsers allow the clever new stuff in CSS3 and HTML5 to work already. Opera and Safari provide support. Firefox from Version 3.5 supports HTML5. And Explorer Version 8 does a bit, and the proposed Version 9 will do more.
CSS3 is simply the next generation of style sheets and it offers loads of clever stuff. The most exciting one – certainly for those of us who have developed Web sites using multiple images to achieve the same effect – is rounded corners. You can now have boxes with varying ‘roundnesses’ of corners (except in Explorer where they’re still square). You can specify a radius value and that affects how round the corners are. It also now becomes very easy to use borders.
The downside, at the moment, is that each piece of code needs to be repeated. Look at:
-moz-box-shadow: 3px 3px 3px #6c3;
-webkit-box-shadow: 3px 3px 3px #6c3;
-box-shadow: 3px 3px 3px #6c3;
The top line adds the shadow for Mozilla browsers (like Firefox). The second line issues the same commands for WebKit browsers (such as Safari and Chrome). The third line is for those browsers that already support the CSS3 standards (and that’s Firefox 3.1 and above and Safari 3 and above).
In addition to these tags, other, much longer, tags are available containing the word ‘Microsoft’ at the beginning. But this isn’t an anti-Microsoft rant (this week!), the excellent word-wrap tag is a Microsoft one.
There are lots of other clever CSS3 tricks in development too. You can create drop shadows, do impressively clever things with gradients, and make text become more transparent as you mouseover it. Have a look at http://css3generator.com/ and http://css3please.com/ for some excellent examples.
HTML5, as well as potentially making Flash (and Silverlight come to that) redundant, provides a way to make Web applications more easily available. It is much more than a simple mark-up syntax for documents. HTML5 now contains tags for things like navigation (nav), headers, footers, articles, and sections. Explorer is the only fly-in-the-ointment (as it were), which will come as a surprise to no-one. Explorer needs a bit of JavaScript in order for CSS to style the page. Something like document.createElement("nav"); is required for each of the new tags.
And the doctype to use at the top of your document is <!DOCTYPE html>. And handily – for those people who never quite got the hang of closing tags – you can just close with a ‘>’, you don’t need ‘ />’ as with XHTML.
HTML5 can offer developments in Web forms. There are video and audio APIs. There’s a drag-and-drop API with a draggable attribute. ‘History.pushState’ can be used with AJAX apps to give better back–button support. There’s also a 2D drawing API for scripting graphics using the new canvas element. In fact there’s loads of new good stuff with more being added all the time. And did I mention the Geolocation API? I should have – it definitely adds the “wow” factor.
Lots of people will be wanting to use the new APIs, and Web pages for people using appropriate browsers will be appearing more and more. Look out for it!
There was a time when HTML5 seemed like something in the far future, but now Apple (purveyors of the unbelievable fascist iTunes and lots of really cool gadgets) claims that there’s no point worrying about the fact Adobe’s Flash doesn’t run on their iPhones because it will be sidelined when HTML5 is adopted. GoogleWave, the collaboration and communication software from Google, already uses HTML5.
In addition, many currently available browsers allow the clever new stuff in CSS3 and HTML5 to work already. Opera and Safari provide support. Firefox from Version 3.5 supports HTML5. And Explorer Version 8 does a bit, and the proposed Version 9 will do more.
CSS3 is simply the next generation of style sheets and it offers loads of clever stuff. The most exciting one – certainly for those of us who have developed Web sites using multiple images to achieve the same effect – is rounded corners. You can now have boxes with varying ‘roundnesses’ of corners (except in Explorer where they’re still square). You can specify a radius value and that affects how round the corners are. It also now becomes very easy to use borders.
The downside, at the moment, is that each piece of code needs to be repeated. Look at:
-moz-box-shadow: 3px 3px 3px #6c3;
-webkit-box-shadow: 3px 3px 3px #6c3;
-box-shadow: 3px 3px 3px #6c3;
The top line adds the shadow for Mozilla browsers (like Firefox). The second line issues the same commands for WebKit browsers (such as Safari and Chrome). The third line is for those browsers that already support the CSS3 standards (and that’s Firefox 3.1 and above and Safari 3 and above).
In addition to these tags, other, much longer, tags are available containing the word ‘Microsoft’ at the beginning. But this isn’t an anti-Microsoft rant (this week!), the excellent word-wrap tag is a Microsoft one.
There are lots of other clever CSS3 tricks in development too. You can create drop shadows, do impressively clever things with gradients, and make text become more transparent as you mouseover it. Have a look at http://css3generator.com/ and http://css3please.com/ for some excellent examples.
HTML5, as well as potentially making Flash (and Silverlight come to that) redundant, provides a way to make Web applications more easily available. It is much more than a simple mark-up syntax for documents. HTML5 now contains tags for things like navigation (nav), headers, footers, articles, and sections. Explorer is the only fly-in-the-ointment (as it were), which will come as a surprise to no-one. Explorer needs a bit of JavaScript in order for CSS to style the page. Something like document.createElement("nav"); is required for each of the new tags.
And the doctype to use at the top of your document is <!DOCTYPE html>. And handily – for those people who never quite got the hang of closing tags – you can just close with a ‘>’, you don’t need ‘ />’ as with XHTML.
HTML5 can offer developments in Web forms. There are video and audio APIs. There’s a drag-and-drop API with a draggable attribute. ‘History.pushState’ can be used with AJAX apps to give better back–button support. There’s also a 2D drawing API for scripting graphics using the new canvas element. In fact there’s loads of new good stuff with more being added all the time. And did I mention the Geolocation API? I should have – it definitely adds the “wow” factor.
Lots of people will be wanting to use the new APIs, and Web pages for people using appropriate browsers will be appearing more and more. Look out for it!
Labels:
Adobe,
API,
blog,
Chrome,
CSS3,
Eddolls,
Explorer,
Firefox,
Flash,
futures,
Geolocation,
GoogleWave,
HTML5,
Internet,
JavaScript,
Opera,
Safari,
style sheet,
Web
Subscribe to:
Posts (Atom)