Skip to main content

What We Want to See in Good Developer?


"Industries are saying It’s becoming more difficult to find good developers and developers are saying what you want to see in good developers." 

Here are a few key points which I feel as a good developer are important.

Attitude

A positive attitude is one of the most important qualities of a good developer. Sometimes "getting shit done" attitude is much needed. you have to come out of your comfort zone.
It can happen after all hard work and efforts, a good tester can still find defects in the code. In those cases, acknowledge the good tester and rethink yourself how you could make sure to avoid such a mistake in the future.

How quick to learn

Whatever you know is important but at the same time when got new things how quickly you learn is also equally important. The pace of learning new things and applying that knowledge is crucial. 

Approach on a problem solving / Debugging Skills

It shows a real picture when you stumbled into a problem and how you are approaching that issue. how you are isolating things rather than giving a hit and try so your debugging skills will always be put on test. 

Quality in term of Work

Quality is important. how do we make things maintainable and sustainable?  
Your code should be readable as a story not like a puzzle. Timelines, Deadlines, and pressure will always be there and that does not give you an excuse to deliver crappy code at a fast pace. Your credibility goes for a toss once you start doing it. 

"Speed without sustainability is a disaster." 

The real cost is not writing code. it's in maintaining it.

Ability to live in abstraction and Realization

The person has the ability to speak in abstraction but at the same time have the ability to dive into code when needed and has the ability to back up and discuss the concept. that ability to live in both worlds in abstraction and realization is really awesome.  


In the era of where Technology is changing really very fast. It’s important to stay adaptable and embrace the changes. Pick up the latest tools and form your toolbox. Good developers should be open-minded. Ready to change their opinion upon discussing with teammates. They can not be like Most developers who are wasting huge amounts of time by lazily re-creating implementations of pre-existing functionality (reinventing the wheel).

I hope you enjoyed. 

Thanks and stay tuned. 



Comments

  1. Casino City, San Diego (CA) - MapYRO
    Find Casino City, 익산 출장마사지 San Diego, California, 경상북도 출장안마 United States, United States, 0.1 mi (0.6 km) from Casinos. Realtime 속초 출장안마 driving directions to Casino 평택 출장안마 City, 의왕 출장샵 San Diego,

    ReplyDelete

Post a Comment

Thanks for your concern.

Popular posts from this blog

JAVA_OPTS Variable Details

Memory Available to the Java JVM Increasing the memory available to the Java JVM JAVA_OPTS="-Xmx1024m -Xms256m" export JAVA_OPT Options description: -Xmx sets the maximum amount of memory that can be allocated to the JVM heap; here it is being set to 1024 megabytes. -Xms sets the initial amount of memory allocated to the JVM heap; here it is being set to 256 megabytes. Run Java JVM in Server Mode The Java JVM can optimize a number of things for server environments. You can explicitly select the Java HotSpot Server VM with the -server option. JAVA_OPTS="-Xmx1024m -Xms256m -server" export JAVA_OPT What the option means: -server instructs the launcher to use the Java HotSpot Server VM. PermGen Memory If you start getting java.lang.OutOfMemoryError: PermGen space error messages. You may want to include a "-XX:MaxPermSize" option in your JAVA_OPTS. JAVA_OPTS="-Xmx1024m -Xms256m -server -XX:MaxPermSize=128m" export

Why Dozer Framework (Bean Manipulation)

Why Dozer ? Let us think about a situation that you have a source bean which contains lot of fields and the source bean belongs to a different project or module. Now you want to expose the bean to  the outside world as a part of your web service REST service development. It is not advisable to do it. There may be the following reasons. The source bean is not serialized and a final class. The source system does not allow doing it because of security breach. The source bean is very heavy and contains lot of nested beans. The source bean has fields of different types which may not be required for other system. The source bean has lot of fields; some of them are not required. Scenario to use Dozer Suppose You want to make a REST call or web service call to get the minimal account details of a person. But the source system has a bean called “Acc0untBean” which contains many sensitive information like person’s internet banking passw0rd, PAN no or social securit

Difference between Micro Service and Web Services

Micro web services and Web services are two different concepts of application development architecture, Which can be differentiated from it's development style and layered architecture.In This article I will explain the difference between Web Services and Micro Services Web Services ? Web services are services that are made available from a business's Web server for Web users or other Web-connected programs. it is a way to expose the functionality of an application to other application, without a user interface. It is a service which exposes an API over HTTP. Web Services allow applications developed in different technologies to communicate with each other through a common format like XML, Jason, etc.  Web services are not tied to any one operating system or programming language. For example, an application developed in Java can be used in C#, Android, Php etc., and vice versa.  Web Service is a connection technology, a way to connect services together into a S