Skip to main content

Dear Mr. Lee,

I am writing this letter to voice my complaint against Jimmy Kimmel's "Kid's
round table" show that was aired on Oct 16. During the show a 6 year old
boy proposed the idea of solving American's debt crisis by "Killing everyone
in China". Instead of  telling the boy that taking anyone's life is
fundamentally wrong, Mr. Kimmel laughed about it, made the comment that this
was an "interesting idea" and asked the kids in the show "Should we allow
the Chinese to live?". Mr. Kimmel tried to suggest that "killing everyone"
is not a very practical solution to that particular problem, not because it
should not even be an option, but because "if you kill all the people in
that
country, nobody can lend you money anymore." Nevertheless, this approach
remained an "interesting idea", a backup plan, a viable alternative, and a
potentially effective problem solving strategy.

As the mother of a school-aged child, I find these comments extremely
disturbing, discriminatory, and violent. The host's complete lack of respect
for life was setting a very toxic example for the next generation of
Americans. Killing people as a problem solving strategy has been,
unfortunately, all too familiar to us. With the growing number of campus
shooting tragedies, young children all over the country have been using this
strategy to get themselves out of unwanted situations. During the past
couple of days, two wonderful teachers, one in Nevada, the other in Boston,
were
murdered by their teenage students. I would say this is no  coincidence
that these murders occurred right after Jimmy Kimmel's show.

ABC is a well known broadcasting company and a very popular one among
American families.  Airing this kind of discriminatory and violence-
promoting skits nationally was a huge mistake, and has already caused damage
to your company's public image.

A sincere apology must be issued. The way Mr. Kimmel reacted to the kid's
proposal showcased his lack of competence and human decency, thus he is not
suited for the job of a TV host. His speech is extremely distasteful and
this is the same rhetoric used in Nazi Germany against Jewish people. Please
immediately take actions by removing the show and issuing a formal apology
to the American public.

Thank you,
A concerned mother

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 /opt/course/1/context_default_no_kubectl.sh , but without the use of k

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 checking a shared sec