Becoming a Developer: 10 Tech Terms You Should Know

If you hear people using these terms, chances are they're a programmer. Appstrax speaks the language fluently.

Share this post

Get your custom software solution

If you’re struggling with software that won’t yield to your demands, consider using a team who knows everything about creating bespoke custom software solutions.

Book a Consultation

Starting your journey into any field is a treacherous adventure, especially If you are preparing to become a developer. When learning new tech terms, you can feel overwhelmed and start to rethink if this career is a good idea at all.

My suggestion is: don’t give up!

To relieve some of your anxiety, we prepared a short guide to assist you and all other junior developers like you that are just starting their careers in software development or IT related.

So… Let’s start with 10 tech terms you should know!

IDE –  Integrated Development Environment

This is where you will actually write your code, it is the software you use to write software.

An integrated development environment is a software application that provides comprehensive facilities to programmers for development and consists of (at least) a source code editor, build automation tools and a debugger.

Visual Studio Code is widely accepted amongst developers as the best IDE.

URI, URL and URN

URI: Uniform Resource Identifier: a generic term for URL or URN.

URL: Uniform Resource Locator: where something is and how to fetch it.

URN: Uniform Resource Name: a unique name for a resource.

Frontend (HTML, CSS and JavaScript)

Frontend development is the practice of converting data into a graphical interface (what you see on your screen). By using HTML, CSS, and JavaScript you build the ‘front’ of the application that users see and will use to interact with data. Also referred to as the client-side.

In other words, frontend developers make the web “look pretty”.

For more info on these three languages, check out a previous article that outlines the three layers of web development.

Backend (REST API, Database, Server)

Also referred to as the server-side, the backend is the part of an application that is not directly accessed by the user. It is usually responsible for storing and manipulating data, including sensitive information like passwords.

Main terms associated with backend:

REST or REStful API: stands for representational state transfer, and it is the server-side of an application, service, or solution.

Database: where your data is stored (an organized collection of data).

Server: can be hardware or software, and it is responsible for providing functionality for other programs or devices.

Version control (Git)

Version control is a system that records changes made to your code.

Git is the most popular version control software that allows you to keep track of these changes. It is designed to coordinate work amongst programmers and can be used to update your code repositories (the place where your code is kept)

Pair Programming

Pair programming is just as it sounds, two people working together while coding.

It is common for Junior developers to be paired with senior developers to aid in the development of the junior programmer. In pair programming, the two work off of one workstation, one will write code and the other will observe. The roles are often reversed.

Some benefits of pair programming:

  • Fewer mistakes are made
  • Two people working together is better than 1 person alone
  • Communication increases
  • Juniors can progress rapidly if paired with seniors
  • It is an efficient way to share knowledge

Framework

In software development, a framework is a reusable code that provides specific functionality that you can use in your programs.

Frameworks are an abstraction (hiding unnecessary details from the user) in which generic functionality can be changed.

A framework, metaphorically speaking, “sits on top” of your programming language, which prevents you from reinventing the wheel as you code.

Here’s an example: Angular is a framework. In Angular, you code in a language called Typescript, which itself is a superset of JavaScript.

Perhaps a simpler example is Bootstrap, a CSS framework. When you are creating your applications, you can certainly style your webpage with normal CSS, but Bootstrap provides already made design templates for you to use.

HTTP (POST, GET, PUT, DELETE)

HTTP (Hyper Text Transfer Protocol) is the protocol or official procedure used to format and transmit data between web browsers and servers. It is how users interact with different parts of the web to communicate, send, and receive data.

Applications are programmed to send so-called requests to servers, in return the server sends back a so-called response that may (for example) return a packet of data.

The 4 basic HTTP operations can be summarized by the acronym CRUD (Create, Read, Update and Delete) that it is described below.

CRUD

CRUD is an acronym used to describe the four basic functionalities of a persistent storage application (An application that retains data).

  • C – Create data (add data to the server)
  • R – Read data (retrieve data from the server)
  • U – Update data (replace data on the server)
  • D – Delete/Remove data from the server

JWT

JWT or JSON web tokens are an industry-standard method, a means of representing claims to be transferred between two parties.

A JWT is an encoded string that contains a lot of meta-data. JWT’s being encoded means it can be unpacked and read by the client.

It is generated on the server with an algorithm and a certain “secret” that only the server knows, and can validate incoming tokens.

The client stores that token and attaches it to any request thereafter that is sent to the server which needs to be authenticated.

A Final Word

On your journey into software development, you might feel anxious by the number of terms and languages to learn.

However, if you master the main key tech terms explained above, you’re on track. I hope that this list cleared up some confusion you may have had regarding these terms.

appstrax logo mark black