Skip to main content

Company vs company

In the English vocabulary, the word 'company' has 2 meanings:

Company: an organization that sells goods or services in order to make money

And

Company: the fact of being with a person or people, or the person or people you are with

I think it is no coincidence that the same word is used for both explanations.

Origin

The word "company" traces its origins back to the Latin term "com-" meaning "together with" and "panis" meaning "bread". In its earliest usage, "company" referred to a group of people who shared meals together, highlighting the communal aspect of coming together around a common table. This initial meaning laid the foundation for the word's dual evolution, branching into both social and business contexts.

Social Company:

In its more informal sense, "company" refers to a gathering of individuals for social interaction or mutual enjoyment. The shared origin with the concept of breaking bread emphasizes the communal nature of spending time together.

Business Company:

The transition from shared meals to shared endeavors led to the development of the second meaning of "company." Over time, the term expanded to encompass organized groups of people working together toward a common goal, often in a structured business setting. This evolution reflects the historical shift from agrarian societies, where shared meals were central, to more complex economic structures requiring collaboration for mutual success.

Why I think this is still important today?

More that just a shared etymological root, I think that it emphasizes an important aspect of why your workplace is more than just the place where you earn your bread. Instead, the workplace becomes a living embodiment of the communal spirit inherent in the word's origin. In a professional setting, "company" extends beyond tasks and deadlines, encapsulating the shared experiences, goals, and achievements of a group of individuals working together.

Your workplace is more than a location where you fulfill professional responsibilities; it is a dynamic environment where meaningful connections are forged. The colleagues with whom you collaborate daily become more than just coworkers—they become a part of your professional "company." Shared challenges, triumphs, and the day-to-day interactions contribute to a sense of camaraderie, transforming the workplace into a space where relationships are nurtured, and a collective identity is formed.

"Company" takes on a profound meaning, highlighting the significance of connections and shared goals in fostering a fulfilling professional environment. So, the next time you step into your workplace, consider it not just as a location for earning a wage but as a vibrant community where your contributions and relationships form an integral part of a collective journey.

Image generated by Microsoft Bing Image Creator.


Popular posts from this blog

Azure DevOps/ GitHub emoji

I’m really bad at remembering emoji’s. So here is cheat sheet with all emoji’s that can be used in tools that support the github emoji markdown markup: All credits go to rcaviers who created this list.

Podman– Command execution failed with exit code 125

After updating WSL on one of the developer machines, Podman failed to work. When we took a look through Podman Desktop, we noticed that Podman had stopped running and returned the following error message: Error: Command execution failed with exit code 125 Here are the steps we tried to fix the issue: We started by running podman info to get some extra details on what could be wrong: >podman info OS: windows/amd64 provider: wsl version: 5.3.1 Cannot connect to Podman. Please verify your connection to the Linux system using `podman system connection list`, or try `podman machine init` and `podman machine start` to manage a new Linux VM Error: unable to connect to Podman socket: failed to connect: dial tcp 127.0.0.1:2655: connectex: No connection could be made because the target machine actively refused it. That makes sense as the podman VM was not running. Let’s check the VM: >podman machine list NAME         ...

Cleaner switch expressions with pattern matching in C#

Ever find yourself mapping multiple string values to the same result? Being a C# developer for a long time, I sometimes forget that the C# has evolved so I still dare to chain case labels or reach for a dictionary. Of course with pattern matching this is no longer necessary. With pattern matching, you can express things inline, declaratively, and with zero repetition. A small example I was working on a small script that should invoke different actions depending on the environment. As our developers were using different variations for the same environment e.g.  "tst" alongside "test" , "prd" alongside "prod" .  We asked to streamline this a long time ago, but as these things happen, we still see variations in the wild. This brought me to the following code that is a perfect example for pattern matching: The or keyword here is a logical pattern combinator , not a boolean operator. It matches if either of the specified pattern...