Links
Apps
November 2024 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 Archives
- January 2021
- April 2011
- August 2010
- July 2010
- June 2010
- January 2010
- October 2009
- June 2009
- March 2009
- February 2009
- January 2009
- December 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- April 2008
- February 2008
- December 2007
- November 2007
- September 2007
- May 2007
- January 2007
- December 2006
- August 2006
- July 2006
- June 2006
- May 2006
- March 2006
- January 2006
- November 2005
- October 2005
- August 2005
- July 2005
- June 2005
- May 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
- April 2004
- March 2004
- February 2004
- January 2004
- December 2003
- November 2003
- October 2003
- September 2003
- August 2003
- April 2003
Category Archives: Developer
Netbeans 4.0 RC1
On thursday, NetBeans 4.0 RC1 was released. I couldn’t find a list of changes since 4.0 beta2, but one thing I can tell is that the key modifier bug under OS X has been corrected. Finally, you can use the … Continue reading
How to store a Java object into a byte array
ByteArrayOutputStream byteStream = new ByteArrayOutputStream(); ObjectOutputStream objectStream = new ObjectOutputStream(byteStream); objectStream.writeObject(theObject); byte[] array = byteStream.toByteArray();
Microsoft Beta Software II
Finally, after having installed Visual C++ and Visual J# 2005 Express Edition Beta some days ago, I thought I’ll install the Visual C# version, just to see. And I couldn’t believe my eyes: There is a fully functional refactoring menu!
Posted in Developer
Comments Off on Microsoft Beta Software II
Microsoft Beta Software
Yesterday, Ben shortley mentioned something about Whidbey a.k.a. Visual Studio 2005 supporting refactoring for C++, so I thought I have to check that out. On the MSDN website I discovered there are free versions of VS 2005 Beta 1 called … Continue reading
Life saver for C++
If you are struggling with this over complicated programming language, I suggest you check out the C++ FAQ Lite and you will probably find an answer to your question 🙂
Posted in Developer
Comments Off on Life saver for C++
PHP 5.0 RC1
Some days ago, I compiled and installed PHP 5.0 RC1 on my local machine running OS X (10.3.3) and everything seems to work fine. If anyone is interested which ./configure command I used, here it is: ‘./configure’ ‘–prefix=/usr’ ‘–mandir=/usr/share/man’ ‘–infodir=/usr/share/info’ … Continue reading
Posted in Developer
Comments Off on PHP 5.0 RC1
OO Design for PHP
I am asking myself how much sense it makes to apply standard OO design to projects written in PHP, a language which lacks some essentials OO functionality in the current production release. You end up spending a lot of time … Continue reading
Posted in Developer
2 Comments
Nice Book
At last I have discovered the book I was looking for since ages. It is called Patterns of Enterprise Application Architecture written by Martin Fowler et al. If you were looking for a book on design patterns dealing with application-level … Continue reading
Posted in Developer
Comments Off on Nice Book