Skip to main content

Difference between programmer and developer

Programmer

A programmer is someone who typically writes computer programs, they are typically handed a specification or some sort of requirements, document or something, or a features list with some specific details on what needs to be implemented. And then they go off and they implement it. They're really into writing with tight code. A beautiful code that flows nicely is very elegant, readable and maintainable. That's really what they're about. And they have really deep programmer has deep knowledge about a programming language and algorithms and how to do things really well in code. And they really have that kind of a silos view about what to do is really about the code and encoding up to the program and using elegant algorithms. Typically, a programmer might, in their spare time have their own programming projects are working on.


Developer

A developer is kind of a little bit of a different animal, they're not into depth with the program is deep as a program or is there more into the people and the big application or the projects that are being worked on and getting the different technologies hooked together,  the people organizing the meeting scheduled so that the big application can come together and they might be responsible for organizing, where do the requirements specifications ,whatnot come from, and where they go to and give them to the programmer who implements things. So if you look at it, if compare and contrast them, a programmer really in the languages and doesn't need this people skills as much.

A developer doesn't need the programming skills as much but needs more of the people skills. But that doesn't mean that developer is not a good programmer, but it's just not their first emphasis. Programmers first emphasis is programming and developers first emphasis is on developing the project.


Comments

Popular posts from this blog

Install Sticky notes in Ubuntu 16.04

Hello, Now you can use sticky notes in Ubuntu also!! Just follow the steps given below Follow or copy the below commands in your Ubuntu terminal: Step 1: Add a repository: $ sudo add-apt-repository ppa:umang/indicator-stickynotes Step 2: Update: $ sudo apt-get update Step 3: Install Indicator stickynotes: $ sudo apt-get install indicator-stickynotes Thank you!

Add long text /Description / paragraph in an android application

Hello guys, In this tutorial, we will see how to create activity with textview, image view and add long text or description or how to include a paragraph in an activity. Step 1: Create a new project in an android studio. step 2:  Give any name to your project. Step 3: Select the minimum SDK version for your project. Step 4: Select any activity for your project to start with coding. I have selected empty activity here. Step 5: MainActivity will be your default and necessary activity. Step 6: After clicking "Finish", we will be able to get started with our application coding. We all know how to add text to activity but now we will see how to add long text or description or paragraph to our android activity. Below is the code for this project. MainActivity.java : package com.sharayusuryawanshi.lenovo.android_paragraph; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MainActivit...

Redirect to any link from android app with source code

Hello guys, In this tutorial, we are going to tell you that how can you redirect to any link or how can you access any link from your own Android app with source code. Please follow the below steps: Here we are going to upload the data and files to Google drive and going to access those data through our app. Step 1: Refer to this video for uploading data on your Google drive. Step 2: After uploading data to google drive, now we are going to access all these files from our android application. Step 3:  Now create the new android project in the android studio. To create a new project, please visit the link given below: http://scubecodeclub.blogspot.com/2018/09/add-long-text-description-paragraph-in.html Step 4: You can refer or paste the code given below in your project. MainActivity.java: package com.sharayusuryawanshi.lenovo.link_redirection; import android.content.Intent; import android.net.Uri; import android.support.v7.app.AppCompatActivity; import and...