Jonathan Bennett

Glossary

There are so many words out there. Here a few of I think you should know.

Branch

A branch is a separate line of development within your source code repository. This allows multiple developers work within a single repository, without ruining the work of other developers.

Cache

Not to be confused with cash, cache is a copy of something, usually for the purpose of improving performance. For example, instead of adding up the cost of each line item on an invoice every time we look up the total, we do it once, and then save a copy of that result in a cache.

This can be a huge source of performance improvement, but also leads to bugs if you are not careful. For example, if you forget to clear the total when adding an additional line item, you will not get the outcome you expect!

CI/CD

Continuous Integration (CI) is a practice of constantly merging all the code from every developer into a single main version.

Read full article ➡

CRUD

Create, read, update, delete is a common term to describe the basic operations of most web applications.

Environments

Environments let you run the application with different configurations. This is most obvious useful with development and production environments. In the development environment you might run with lower security settings to improve performance and have access to a test finances account. In the production environment the system would run with full security settings and have access to the real financial accounts.

installprompt

installprompt is an experimental Chrome event that makes web app installation simple and easy for end users. When Chrome detects the site could be installed, an event is sent which can be used to trigger the native install prompt. This actually lets web apps be installed easier than a native app!

Read full article ➡

PWA

Progressive Web Apps are website that are designed to cater to the capabilities of the device they are running on. This means it will work on a lower powered phone, and a high end desktop computer. The features used will vary, but the website will still work.

Repository

A repository is a place to store multiple versions of code, along with comments and other organizational information. GitHub and Gitlab are two common services that provide repository services.

Snowflake Server

Snowflake servers are typically customized servers which have not been properly documented. As such no one really knows what exactly it does, and it is risky to touch or change it.

SPA

Single Page Applications (SPA) are websites that use JavaScript to provide a more interactive user experience. This is typically done by avoiding page navigation and using data loaded directly from the server on the users machine.

TDD

Test Driven Development is a technique where you write tests for code that doesn’t exist. As you step through each error message, you are lead to solve the next single issue need. Once all the test passes, you have a functional system. These tests can also be used to increase confidence in the system and even perform continuous integration and deployment of your system.

Test Suite

A test suite is an automated tool the helps ensure your application runs as specified. This is a huge benefit as the computer is able to automatically run hundreds or thousands of test in minutes as opposed to just a handful that a human could manually complete.

Please note, this tests for the specification, not necessarily correctness. A poorly written test suite that declares 2+2=5 will pass or fail based on the specification, not based on the rules of math. This is why a good test suite is critical for the confidence of your system.

Read full article ➡

Webhooks

Webhooks allow your server to respond to events that occur outside your system, for example being notified when a Stripe subscription is successfully charged.