Monthly Archives: February 2015

Reflection using Java

This short article shows how Reflection works using Java. I am extract the source from http://examples.javacodegeeks.com/core-java/reflection/java-reflection-example/. First you need to import the following namespace. import java.lang.reflect.*; You have a class with a method in RentCar public class RentCar { private … Continue reading

Posted in Java, Oracle | Tagged , | Leave a comment

java was started by returned exit code=13 when starting eclipse

I believe some of you have hit the below error. “java was started by returned exit code=13”   This could due to your eclipse version and java version. Especial when your eclipse is 32 bit and your jdk is 64 … Continue reading

Posted in Java, Oracle | Tagged , , | 1 Comment

Convert PDF to Microsoft Word

Microsoft Word is able to convert the pdf file and open for reading. I am using Word 2013 so not sure whether the version earlier than 2013 can do that. In Microsoft Word choose File – Open then select the … Continue reading

Posted in Community, Microsoft Office | Tagged , , | Leave a comment

Microsoft OneNote is free

I have seen quite a number of people like to use OneNote. Microsoft OneNote comes with Office anyway. Probably Mac users can use it without getting Microsoft Office, have a try. Follow this link to download OneNote: http://blogs.office.com/2015/02/13/onenote-now-even-free/

Posted in Community, Microsoft Office | Tagged , | Leave a comment

Java EE 6 running sample Pet Catalog

Last Friday I bought The Java EE 6 Tutorial: Basic Concepts (4th Edition) (Java Series) (http://www.amazon.com/dp/0137081855/ref=dra_a_rv_ff_fx_it_P2000_1000?tag=dradisplay-20&ascsubtag=867a2d757c497c5dc77446d43be3025f_S&dra_hfr=1&dra_ohs=0-0) for revision. The bad thing are 1. The source code of the book cannot be downloaded. 2. The book is asking you to use … Continue reading

Posted in Java | Tagged , , , , | Leave a comment

Façade Design Pattern

This article shows how to create a code using Façade Design Pattern in C#. As discussed in dofactory.com Façade is a single class that represents an entire subsystem.      The article that is easier to understand is http://www.dofactory.com/net/facade-design-pattern. My source code … Continue reading

Posted in .Net | Tagged , , | Leave a comment

Free ebook for Windows 10 and Visual Studio 2015

This ebook is for .NET in 2015. Included are code snippets and step-by-step tutorials on handy new features and techniques. Download: http://www.telerik.com/campaigns/devcraft/developers-guide-dotnet

Posted in .Net | Tagged , , | Leave a comment

How to get database schema from WordPress

This short article show you how to get the database structure or database scheme from WordPress. To get the WordPress database schema. 1. Install MySQL server, I am using MySQL 5.3. 2. Go to Microsoft Web Platform Installer http://www.microsoft.com/web/downloads/platform.aspx. 3. … Continue reading

Posted in .Net, Community, Oracle | Tagged , , | Leave a comment

Abstract Factory Design Pattern

The short article showing how to build the Abstract factory pattern.   The diagram and code is extracted from http://www.dofactory.com/net/abstract-factory-design-pattern.   In the Factory Design Pattern, based on the product then you ask factory to create the product. In the … Continue reading

Posted in .Net | Tagged , , | Leave a comment

Windows 10 Start button – cool feature

This show article shows an interesting figure on Start button of Windows 10. When you click on the Start button of Windows 10. You will see the 4 arrows at the right top corner. Then the screen will expend to … Continue reading

Posted in Operating System | Tagged | Leave a comment