Relative Content

Tag Archive for coupling

Is this high coupling?

Question I’m currently working a on an assignment for school. The assignment is to create a puzzle/calculator program in which you learn how to work with different datastructures (such as Stacks). We have generate infix math strings suchs as “1 + 2 * 3 – 4” and then turn them in to postfix math strings […]

Is this high coupling?

Question I’m currently working a on an assignment for school. The assignment is to create a puzzle/calculator program in which you learn how to work with different datastructures (such as Stacks). We have generate infix math strings suchs as “1 + 2 * 3 – 4” and then turn them in to postfix math strings […]

Is this high coupling?

Question I’m currently working a on an assignment for school. The assignment is to create a puzzle/calculator program in which you learn how to work with different datastructures (such as Stacks). We have generate infix math strings suchs as “1 + 2 * 3 – 4” and then turn them in to postfix math strings […]

Software Architecture for an IP camera

I am looking for pointers to help me design the software architecture for an IP camera.
I developed an initial working version as a monolitic design structure. This is functional, but the monolitic structure is now a problem as I cannot scale it. So it’s back to the drawing board for a new system architecture.

What is vertically coupled alignment in source code?

Formatting multiline statements is an arcane art that most auto formatters and style guides can’t help you with. One habit I picked up is to ensure renaming things wont cause multiple lines to need to move due to what I thought was called vertical coupling. However, when I go searching for this term Google is no help.

What is vertically coupled alignment? Do we care?

Formatting multiline statements is an arcane art that most auto formatters and style guides can’t help you with. One habit I picked up is to ensure renaming things wont cause multiple lines to need to move due to what I thought was called vertical coupling. However, when I go searching for this term Google is no help.

Reducing Coupling in a Series of Tasks

I am working on some code right now that involves processing user requests. Each request requires going through an approval. When a request is made, one or more records are created on the database recording what the request entails. Then a ticket is created and placed on the approver’s work queue.