Wednesday, November 27, 2013

Some points to note when preparing Curriculum Vitae (CV)

Some points to note:

  1. Make it look attractive
  2. Write your experiences, projects and skills at the first few pages
  3. Explain what your role was in every project/position
  4. Write it to be as convincing as possible for the recruitment team to hire you.

Tuesday, November 26, 2013

መልካም ሥራ

ሀበሻ እንዲህ ይላል፡፡ 
"ጽድቅና ኩነኔ ቢኖርም ባይኖርም ከክፋት ደግነት ሳይሻል አይቀርም፡፡"
Specially if you are a believer of God or Allah, you should not expect a thing from anyone because God will counts all the good deeds you have done and he'll pay you. You should TRUST/BELIEVE God.
የማቴዎስ ወንጌል 7*12 "እንግዲህ ሰዎች ሊያደርጉላችሁ የምትወዱትን ሁሉ እናንተ ደግሞ እንዲሁ አድርጉላቸው፤ ሕግም ነቢያትም ይህ ነውና።"

Thursday, November 21, 2013

Restore Default Windows 7 File Extension Type Associations


A lot of people asked me how to fix file extension problems. This means all the files and/or folders in your computer are opening using the same software/program which it should not do.

For instance, it opens all PDFs, folders, excel files, music and video files using Microsoft Word or Firefox or Chrome or any while all file types have their own specific program that opens them.

I found this great article by Brick here

Here's How You Can Solve the above Problem:
1. Click on the link for the file extension in the list below the blue NOTE box below that you would like to restore the default associations of. This will download it's .reg file.

2. Save the .reg file to your desktop.

Wednesday, November 20, 2013

How to Integrate Internet Download Manager (IDM) with Google Chrome

The following video shows you how you can integrate Internet Download Manager (IDM) with Google Chrome.


Enjoy downloading videos from youtube and any other website.




More info can be found here.

Monday, November 18, 2013

Display or List Environment Variables in Windows

Environment variables are a set of dynamic named values that can affect the way running processes will behave on a computer.
They are part of the operating environment in which a process runs. For example, a running process can query the value of the TEMP environment variable to discover a suitable location to store temporary files, or the HOME or USERPROFILE variable to find the directory structure owned by the user running the process.

To view the contents of the environment variables:

1. open command prompt (write "cmd" in search bar of the start menu or in Run)
2. To list -> write "set" (without quotes) and hit enter
    To save it into file -> "set > output.txt" and hit enter
I.e. The file will be saved in C:\
To save the file in other directory "set > D:\output.txt" and hit enter


Tuesday, November 12, 2013

Java Decompiler project: To extract .java file from .class

Please check out the following project which also contains plugins for Eclipse and IntelliJ at http://jd.benow.ca/
The “Java Decompiler project” aims to develop tools in order to decompile and analyze Java 5 “byte code” and the later versions.
It can extract .java files from .class files which are called "byte codes" in Java. 
Thanks for the developers!


Thursday, November 7, 2013

Simple way to solve MySql Error #1044 - Access denied for user 'username'@'localhost' to database 'my_database'

Error Description:

Access denied for user 'username'@'localhost' to database 'my_database' means: 
the user 'username' doesnot have enough or no privilege to access (insert, update, create, drop/delete) the database 'my_database'.

Simple Solution:

1. Create the database in cPanel
2. DONOT assign a user [Main thing]



3. Use phpMyAdmin -> Select the database you want to import the tables -> Go to Import tab and browse for the file -> Click "Go"

4. You will see "Import has been successfully finished ..." message.