Skip to main content

Verizon to lay off 44,000 employees


Dear Verizon Employees:

By this point you've no doubt heard that Verizon will pay you three
weeks salary for every year of service, if you leave the company
voluntarily. You're probably wondering whether you should stay and hope for
the best, or should you take the money and run.

Stop wondering. Take the money. Tell your boss--today--that you
want the severance package. Regardless of how long you've worked for the
company, the money is a much better deal than what's coming down the
pike. Here's why:

1. Voluntary layoffs create an exodus of talent.

The moment Verizon announced the package, the most talented people--the ones
who have skills most in demand--immediately put out the word that they're
available. They'll be hired quickly so, for them, the severance
package is a sweet bonus.

That's nice for them, but not nice for you (if you're not one of
them), because companies  tank when they lose a lot of talent.
After all, it's the talented employees (and emphatically not the
blowhards in top management) that have been keeping the company afloat,
right?

2. Further layoffs are inevitable.
Since the top talent will soon disappear, the company will inevitably be in
a weaker position after the layoffs. And since top management clearly thinks
layoffs are a panacea rather than a sign of desperation, the layoffs will
keep coming.

Layoffs are (or should be) like surgery. You want to cut everything that
needs cutting as quickly as possible and get the patient into recovery.
Starting with voluntary layoffs, however, is a sure sign that a company's
unwitting strategy is "death by a thousand cuts."

3. The next package will be less generous.
This will be the only time that you'll be able to get three week's
salary per year of service. The next layoff it will be two, maybe one, week'
s salary per year of service. Then it will "pack your things, you&#
39;re out."

Don't fool yourself into thinking that voluntary layoffs mean that top
management cares about employees. Voluntary layoffs are a sign of
indecisiveness not altruism. As it becomes clear (as it will) that the
company is failing, you'll find out exactly how much they care about you.

4. You are next on the list.

Now, you may think that you're so valuable to the company that they'd never
lay you off. You may even think that you'll be even MORE
valuable to the company once your internal competition has left for greener
pastures. But it doesn't work that way.

The mere fact that top management has outsourced the decision-making on who
goes and who stays to their employees shows that Verizon's top
management has no idea who's valuable and who's deadwood.

5. Verizon's larger corporate strategy sucks.
The four points above are true of every company that institutes of voluntary
layoffs. In Verizon's case, though, the layoffs are part of an overall
strategy that's equally stupid. Which makes sense, since companies that try
voluntary layoffs, by definition, are being led by idiots.

To confirm this, all one needs to do is look at how CEO Hans Vestberg framed
the decision to Verizon employees as

"an opportunity to find more efficiencies in the size and scope of our V
Team and help expedite the building of an innovative operating model for
our future."

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...