Ashik’s IT Thoughts

August 1, 2007

Searching for a job in Bangladeshi Software Companies

Filed under: Uncategorized — ashikuzzaman @ 4:21 pm

I got an email from an NIITian a few days ago who is looking for a job in any Bangladeshi software company. Here is an excert of my reply via email that you may find useful.

=======================================================

Software industry in Bangladesh is yet not matured enough to get a quick opening. If you are planning to focus on non-software industry like banking, telecomm – I dont know much about them.

You sound to be quite fresh in terms of project experience, so you may start planning to get some experience first. There are few ways how you can get into a project.

  1. NIIT internship/job assistance: Don’t look at the salary or title, just join whatever you get. You have to start from the bottom and go way into the top over time.
  2. Develop skill on one particular area. For example, Java, Microsoft.NET, PHP, Linux Server Administration or Software Testing (SQA). Remember it is a long term process, there is nothing that you can do to shorten it other than constantly studying and practicing the skill.
  3. Join few online IT professionals group and be active on those groups over email. For example, JPGroup (http://www.jpgroup.org), SQABD ( http://tech.groups.yahoo.com/group/sqa_bangladesh), PHPExperts (http://tech.groups.yahoo.com/group/phpexperts), BDLUG ( http://tech.groups.yahoo.com/group/bdlug) etc.
  4. Look at BDJobs web site and start applying all the jobs that are looking for fresh people rather than experienced ones.
  5. Look at the Information Technology section of the following link and select the companies where you can drop your resumes – http://www.answers.com/topic/list-of-companies-in-bangladesh .

=======================================================

May 22, 2007

10 Eclipse Navigation Shortcuts

Filed under: Uncategorized — ashikuzzaman @ 12:11 am

A lilttle earlier I came accross this use entry of 10 Eclipse Navigation Shortcuts Every Java Programmer Should Know . Its specially useful for me although I already use quite a few of them.

March 30, 2007

Year 2007 Daylight Savings Issue

Filed under: Uncategorized — ashikuzzaman @ 10:19 am

Daylight Saving Time (DST) is a system of handling the changing amounts of daylight throughout the year. The Energy Policy Act of 2005 mandates that DST will start on the second Sunday in March and end on the first Sunday in November. In 2007, the start and stop dates will be March 11 and November 4, respectively. These dates are different from previous DST start and stop dates. In 2006, the dates were the first Sunday in April (April 2, 2006) and the last Sunday in October (October 29, 2006). So your Java applications may have some consequences in this respect. For example, applications running on an older JRE may report incorrect time (1 hour difference to actual time) from March 11, 2007 through April 2, 2007 and from October 29, 2007 through November 4, 2007. In our product in office that uses both Sun and IBM JVM, we faced this issue and I had to work on it a little.

Sun fixed these problems in their later versions of JRE releases.

Java Standard Edition Minimum JRE version required
1.3 1.3.1_18
1.4 1.4.2_11
5 5.0_u6
6  

As part of investigation, I wrote a simple test program to print the current system time with Java SE 1.4.2_10, 1.4.2_11, 1.4.2_12 at 6:10 PM in 27th March which is within the daylight savings effect timeframe. Java SE 1.4.2_10 shows current time as <03/27/2007 05:10:11 PM> which is 1 hour less than correct time. But Java SE 1.4.2_11 and 1.4.2_12 showed the correct time <03/27/2007 06:10:11 PM> which proves they already have the 2007 DST change fixed.

public class JavaDateLightSavings {
public static void main (String []args) {
// Get system date
Date odate = new Date();
DateFormat formatter = new SimpleDateFormat(“MM/dd/yyyy hh:mm:ss a”);
System.out.println(“formatter.format(odate) : <” + formatter.format(odate) + “>”);
} }

IBM provided IBM Time Zone Update Utility for Java as a patch to fix this issue with its JREs. To my understanding, this tool actually looks inside each of these directories’ 2 sub-directories java\jre and _jvm\jre as all the timezone related information are inside jre\lib directory. So when we are talking about TimeZone issue with IBM WebSphere, this utility will essentially do operations on these 2 sub-directories. I downloaded the tool and gave a test run in DISCOVERONLY mode and found that it can operate in 2 ways. First, working on one JRE at a time where you have to select which IBM JRE you want to patch. Second, find out all the JREs that need to be patched by first searching the who system and when the tool shows the list of JREs available to fix, decide which of the JREs you want to patch. The patch is needed to be applied in both server-side’s AppServer and AppClient JREs.

« Newer Posts

Blog at WordPress.com.