Skip to main content

Fwd: An Open Letter to the MSU Community

---------- Forwarded message ----------
From: Lou Anna K Simon <presmail@msu.edu>
Date: Tue, Oct 18, 2011 at 11:07 AM
Subject: An Open Letter to the MSU Community
To: STUDENTS@list.msu.edu


AN OPEN LETTER TO THE MSU COMMUNITY

 

The events of the last couple of weeks involving several racial incidents on our campus led me to send a letter on October 4 to MSU students. Like others, I was outraged by the complete lack of regard for how these incidents would impact our students, faculty and staff, and those within the greater community. Racial epithets and derogatory terms used to demean others shock the senses. They divert our attention from the academic work that brings us together. They have no place at MSU. Our goal is to foster a dynamic learning community for all; therefore, we must establish an environment of respect for all.

 

In my October 4 letter, I alerted students to what happened, outlined our responses, including law enforcement investigations by MSU Police in consultation with the FBI, and communicated that we take such matters seriously. I also asked for the community's help in finding out what happened and identifying those responsible. I wrote directly to the student body, not only because these incidents engender anger, hurt, fear, and feelings of intimidation by those directly impacted as individuals, but also because these incidents tear at the fundamental fabric of an inclusive learning community. 

 

In the intervening time, I've been heartened by the dialogue that has begun. Many within our community have discussed how each of us has a responsibility that extends beyond respect and tolerance to being an active part of shaping the community we want MSU to be. I must also say that I was disheartened by reports of incidents that continue to emerge. Even though such incidents do happen elsewhere, they do not have to happen here and require reflection on who we are as a community. We want MSU to be exceptional and represent for all what it means to be a Spartan.

 

I applaud the student leaders who have already organized a number of important dialogues, and I look forward to working with them and others within and outside the campus as we deal with the incidents and their impact. I have asked administrators, faculty, and staff from Student Affairs and Services, Inclusion and Intercultural Initiatives, Residential and Hospitality Services, International Studies and Programs, and the Office of the Provost to continue to dialogue with the community to assure that we are dealing effectively with the needs of our students. But dialogue is not enough; we must find ways to improve what we do. These conversations must result in tangible, positive changes in our shared learning community.

 

In closing, we may all come from different places, but we are all part of one community. I intend to provide updates and further details on our progress to address these incidents, and I encourage you to follow our efforts on the following websites: 

 

·         Office of the President  president.msu.edu

·         Office of the Provost  provost.msu.edu

·         Student Affairs and Services  vps.msu.edu

·         Inclusion and Intercultural Initiatives  inclusion.msu.edu

·         Residential and Hospitality Services  rhs.msu.edu

·         International Studies and Programs  isp.msu.edu

Lou Anna K. Simon, President


Comments

Popular posts from this blog

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

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