Tuesday, April 8, 2014

IBM has announced Technology Refresh 8 for IBM i V7R1

Today IBM has announced the TR8 for IBM i V7R1 to be available on June 6. 2014. You can find detailed descriptions about the new features on developerworks. 

I think we will see an announcement of the new Base Version V7R2 with many new functions at the end of April or in early may. So stay tuned for the latest news.


Saturday, April 5, 2014

Wow die Hacker fangen auch immer früher an. Fünfjähriger knackt neue XBox One

Im Alter von 5 Jahren bereits eine XBox One zu knacken, kommt mir doch eher früh vor. In dem Alter hatte ich noch nicht mal meinen ersten Computer. Bricht der Bursch dann mit 10 Jahren ins Pentagon ein oder was? Cool finde ich auf jeden Fall die Reaktion von Microsoft, dass Sie in für das Finden der Sicherheitlücke belohnt haben.

Details dazu im Online Standard

Wednesday, April 2, 2014

Schade Ubuntu One wird eingestellt.

Canonical die Firma hinter Ubuntu stellt seinen Cloud Speicherdienst Ubuntu One per 31. Juli ein. Bis dahin kann man noch seine bei Ubuntu One gespeicherten Daten wegkopieren. Ubuntu One war für Ubuntu Benutzer eine tolle Sache und es ist schade, dass es jetzt einfach so eingestellt wird. Vor allem ist dies wieder ein Paradebeispiel warum es riskant ist auf Clouddienste zu setzen. Ich habe z.B. Musik bei Ubuntu One gekauft und auch jede Menge Dateien auf Ubuntu One synchronisiert. Jetzt muss ich innerhalb kürzester Zeit auf ein neues System migrieren und es ist auch zu Hinterfragen, was von einer 5 jährigen Long Term Support Strategie zu halten ist, wenn ein Alleinstellungsmerkmal dieser LTS von Ubuntu einfach so eingestampft wird.



Quelle: Heise

Wednesday, March 26, 2014

IBM i Application modernization

Today the long awaited redbook for application modernization on the IBM i has been published as a Draft version. Whether you are a old school RPG Developer or you have already started to modernize your applications this is the redbook to get a high level overview what possibilities are available on the IBM i to reach your goal. All topics like new tooling, new languages and new Syntax of existing languages on the IBM i are discussed in this redbook. The redbook gives you only an overview. If you want to go in the depth there are many links in the redbook which will guide you to the details.


Tuesday, March 25, 2014

Domino/Notes 9.0.1 FP1 has been postponed to April.

The for march 2014 planned release of FP1 for Domino 9.0.1 has been postponed to April according to the fix list database.


Sunday, March 23, 2014

Become an expert in TCP/IP networking

In our connected world nothing works without the TCP/IP protocol family. Whether you use a web browser or mail or your favorite social network, a reliable network connection is the base of all this applications. So every network administrator should have a in depth knowledge of this technology. To get this knowledge you can read all RFC (Request for Comments) of the protocols you use which will be not an easy task, or you can read the redbook TCP/IP Tutorial and Technical Overview from IBM.

This redbook is not new, but it is a very valuable resource to learn how the internet works. In this redbook there is not only a in depth description of IP, TCP and UDP, but there are also explanations how the most important Internet application protocols like DHCP, DNS, BOOTP, SMTP, HTTP and so on work. Although the book is from 2006 newer technologies like IPv6 or VoIP have their own chapters too. And the best is, that this book is absolute vendor neutral. You do not have to use IBM products to benefit from this redbook.

So if you are a network administrator or a developer who develop network applications you should read this book.

Friday, March 21, 2014

IBM rolls out a new design for the lotus developerworks website

The developerworks site for IBM Collaboration Solutions software (aka notes.net) got a new design. In my opinion the design does not look bad, but it is very difficult to find things on the new site. For example i cannot find the fixlist database anymore.So IBM thank you very much for the new design, but please add easy to find links to such important resources like the FixList database, the forums or the red wikis. Thanks in advance.


Wednesday, March 19, 2014

Improve SQL grouping performance with Db2 EVIs

In many SQL queries the "GROUP BY" clause is used to aggregate some values. For example a manager wants to see sales for a specific year grouped by region. The SQL for this query looks like this:

SELECT REGION, SUM(AMOUNT) FROM INVOICES WHERE YEAR=2013 GROUP BY REGION

The Db2  optimizer implements the query with a table scan and a temporary hash table.

ad