Monday, 21 November 2016

How To Install Unity 3D Into Virtual Box Win 7


1) Install Virtual Box.

2) Create a Virtual Win 7 from iso.
You need to find an iso file e.g. https://blackeyez007.blogspot.my/2015/09/windows-7-tiny-unattended-fully.html

3) Set 3D Acceleration In Virtual Box Manager.



4) Run Virtual Win 7 in Safe Mode.
Refer http://www.bleepingcomputer.com/tutorials/how-to-start-windows-in-safe-mode/

4) Install Virtual Box Addition.
Tick Direct3D Support



If your Internet Explorer could not open websites despite live internet connection,  go to menu Tools/Internet Options... , and then go to the Advanced Tab and click Reset button.



Wednesday, 27 April 2016

How to reset Mac password




.

Apple includes a tool with Mac OS X to replace a Mac's password. This is the best option if you have completely forgotten your password. Follow these steps:

Turn off your Mac (choose Apple > Shut Down).

Press the power button while holding down Command-R. The Mac will boot into Recovery mode.
When you see the load bar appear you can let go of the keys. It may take a few minutes to load.

Select Disk Utility and press Continue.

Choose Utilities > Terminal.

Enter resetpassword (all one word, lowercase letters) and press Return

Select the volume containing the account (normally this will be your Main hard drive).

Choose the account to change with Select the User Account.

Enter a new password and re-enter it into the password fields.

Enter a new password hint related to the password.

Click Save.

A warning will appear that the password has changed, but not the Keychain Password. Click OK.
Click Apple > Shut Down.

Now start up the Mac. You can login using the new password

.

Reference: http://www.macworld.co.uk/how-to/mac/what-do-if-youve-forgotten-your-mac-password-3594395/

Sunday, 21 February 2016

Solution To: jboss studio does not accept java jdk version



Problem: jboss studio does not accept java jdk version

Solution: Install JDK 32 bit instead of 64 bit.

How To Create Portable JDK


.
How To Create Portable JDK

1) Download JDK

Download to your local folder.

2) Extract Tools.zip folder

Use 7zip to extract the tools.zip to your target folder
Rename the folder (optional).

3) Setup the tools

Run Cmd Windows.
Go into the target folder (e.g. cd c:\a\jboss\jdk)
Then, type the command to extract the tools.
for /R %f in (.\*.pack) do @"c:\a\jboss\jdk\bin\unpack200" -r -v -l "" "%f" "%~pf%~nf.jar"
Done.
You can test by typing java -version.

Reference

1) https://www.whitebyte.info/programming/java/how-to-install-a-portable-jdk-in-windows-without-admin-rights

2) http://oramack.blogspot.my/2015/08/portable-jdk-8.html

.

Sunday, 7 February 2016

103- How To Save Remote GitHub Repo Using GitHub Desktop Application


.
103- How To Save Remote GitHub Repo Using GitHub Desktop Application

1) Log into GitHub account

2) Find the Download button

3) Dowload to local folder

Click the button and allow GitHub Desktop application to run.
Select your local folder to clone the selected remote directory.
Done.
.

104-How To Clone Remote GitHub Repo Using GitHub Desktop application


.
104-How To Clone Remote GitHub Repo Using GitHub Desktop application

1) Run GitHub Desktop application

2) Find the Add new project.

3) Clone the project

Select Clone button.
Select your local folder to clone the selected remote directory.
Done.
.

101 How To Create Local GitHub Repository Using Windows Command


.
101 How To Create Local GitHub Repository Using Windows Command

0) Pre-Requisite

Install GitHub to your computer. Download here.
Add GitHub program to your windows environment. Read here.
You have to register an account at www.github.com in order to work with GitHub Repository

1) Run Git Command via Windows Console

Press Windows Start Button, type cmd and press Enter key.
1.1) Type cd \ to go to root of your computer.
1.2) Assuming that you have already created a folder github, type cd github to go to that folder.
1.3) Type mkdir newproject to create a new project folder for your local repository (or repo).
1.4) Type cd newproject to go into the folder.
We are going to start typing git command.
1.5) Type git init
You should get a response...
Initialized empty Git repository in C:/github/newproject/.git/
(The screenshot below shows Steps 1 to 5)
1.6) Add a new text file using Windows Explorer.
1.7) Check the changes in Command Windows. Type git status
You should get a response…
On branch master
Initial commit
Untracked files:
  (use "git add <file>..." to include in what will be committed)
        New Text Document.txt
nothing added to commit but untracked files present (use "git add" to track)
(The screenshot below shows Step 7)
Git did not track your file.
You need to give a command for Git to track the file
1.8) Type git add “New Text Document.txt” and then ...
1.9) ...type git status to check the outcome.
(The screenshot below shows Steps 8 to 9)
Git has tracked your file.
1.10) Type git commit -m "add 'New Text Document.txt'" to put a note on what you have committed.
.