Skip to main content

For What It’s Worth

 

While FWIW isn’t the most popular piece of slang on the internet, it routinely finds its way into Twitter posts, message boards, and chat rooms. But what does FWIW mean, where’d it come from, and how do you use it?

For What It’s Worth

FWIW means “for what it’s worth.” It’s an idiom that rarely carries any literal meaning, and it’s used to politely express that someone should consider an opinion, idea, or fact (usually because their opinion is flawed).

If it helps, imagine that FWIW means, “You can ignore what I’m going to say, but I think you should hear it anyway.” The phrase doesn’t really change the overall meaning of your sentence, it just adds a polite tone to what you’re saying.

So instead of telling a friend, “You have no idea what you’re talking about, 4K TVs have four times the pixel resolution of HD TVs,” you could just say, “FWIW, 4K TVs have four times the pixel resolution of HD TVs.”

Interestingly, FWIW can also be used to inject a snarky, empathetic, or even dismissive tone in your sentence. These tones mostly come from context, but as a general rule, any use of “FWIW” that can be replaced with “FYI” has a snarky tone. (“FWIW, toothpaste kills bad breath germs.”)

It’s worth noting that FWIW is usually (but not always) used at the beginning of a sentence. This is called a prepositional phrase, and it’s used to tell readers you’re about to politely contradict (or confirm) somebody else’s opinion.

FWIW Has Been Around for Ages

As an idiom, “for what it’s worth” has been around since at least the 1800s. The phrase actually has its origins in economics, and it was initially used to express the literal value of products, goods, or people. A 1600s farmer might pledge he’ll only buy a horse “for what it’s worth,” while a tax collector might try to “rob you for all you’re worth.”

There was a time when this economic meaning overlapped with our modern meaning. You can see this overlap in stories like The Merchant Service (1844), where one character tells another, “Your opinion goes for what it’s worth—nothing.” (The characters in this play are merchants, and the author is using “for what it’s worth” as a pun.)

A screenshot of the Google Trends interest in FWIW page.
According to Google Trends, interest in FWIW has steadily increased since 2004. Google Trends

But this “economic” subtext has mostly faded away. Now, “for what it’s worth” is just an empty idiom. It doesn’t actually add much meaning to a sentence, it just makes you sound polite when you’re correcting someone. Knowing this, it’s no surprise the phrase has shortened into FWIW. Nobody wants to type out “for what it’s worth” just to be polite.

This shortening probably happened during the very early days of the internet. There’s evidence that FWIW was popular on Usenet in the late 80s, or at least popular enough to end up on an “exhaustive” internet slag and emoticon list from July of 1989. Use of the word has slowly risen since at least 2004, according to Google Trends, although it’s never seen the popularity of initialisms like “NSFW” or “TFW.”

How Do You Use FWIW?

Again, FWIW is usually used at the beginning of a sentence. This indicates to readers you’re about to politely disagree (or agree) with somebody else’s opinion by offering up your own opinion or a fact.

When your friend says he hates Steven Spielberg’s movies, you might say “FWIW, I loved ET,” or “FWIW, his movies are really popular.” You’re not really confronting your friend or saying he’s wrong, but you’re still putting your opinion in the air. He may even agree with you just because you were so polite.

A man wonders when he should say FWIW.
fizkes/Shutterstock

Of course, FWIW feels kind of stiff at the beginning of a sentence. If you want to loosen things up a bit, you could say “I haven’t seen many of his movies, but FWIW, I loved ET.”

And as we mentioned earlier, FWIW can carry a snarky, empathetic, or dismissive tone. This is usually based on the context, which you’ll have to feel out for yourself. But if you want a shortcut, just use FWIW in the same place where you might use “FYI.”

With this in mind, you could tell your Spielberg-hating friend that “FWIW, you only like artsy-fartsy French movies, so your opinion doesn’t matter.” That should shut him up.

(As a side-note, FWIW is great for acknowledging a message without really engaging in conversation. Most of the FWIW examples listed here are incredibly lifeless, but they aren’t rude.)

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...