What I Loved About Wash U in St. Louis
Alyssa Reiman
August 31, 2018
share on
$(‘.facebook’).hover(function () {
$(‘.fb-icon’).toggleClass(‘hide’);
$(‘.fb-hover-icon’).toggleClass(‘hide’);
});
$(‘.linkedin’).hover(function () {
$(‘.linkedin-icon’).toggleClass(‘hide’);
$(‘.linkedin-hover-icon’).toggleClass(‘hide’);
});
What I loved About Wash U in St. Louis
Washington University in—St. Louis? Sometimes I see a puzzled expression cross the face of a stranger when I finish saying the name of my alma mater. But to me, Wash U St. Louis makes perfect sense. After all, my undergraduate experience at Wash U St. Louis was shaped by the school community and the city surrounding it. I would not change one thing.
A Midwest Sensibility
When you visit Wash U, you will immediately notice the beautiful buildings and the idyllic quad. But second, and perhaps most importantly, you will notice how nice everyone is. The school culture of Wash U St. Louis centers around a Midwest sensibility that values warmth and friendliness.
My classmates were smart and interesting, but the vibe was more collaborative than competitive. At the library coffeeshop, we’d meet up to chat and procrastinate, just a little. And professors demonstrated genuine interest in getting to know students and sharing their enthusiasm for their areas of expertise. I visited my British Literature professor regularly during office hours to get book recommendations, and at the end of each semester, my Italian teacher had our class over for a delicious dinner.Wash U St. Louis bubbles over with the energy of people who love engaging in intellectual pursuits not only as individuals, but as an open and kind community.
A Community on Campus
At Wash U St. Louis, I joined a community of people who had come from all across the U.S. and more than 100 countries. My friends were from New York, North Carolina, Indiana, California, Japan, and Spain. Our majors ranged from Engineering to Architecture to Psychology, because friendships weren’t determined by major or department. I loved visiting local galleries with my friends from the art school or hearing about the research on diabetes another friend conducted at the medical school.
Wash U’s medium-size, with about 7,500 undergraduate students, meant that I always saw familiar faces around campus, but still found new people to meet senior year. Most of my classes were small, with the average class size at Wash U at 18 students. I could ask questions and voice my opinions freely, while also learning from the questions and opinions of my classmates.
Campus life revolves around a few key sites: the quad, where everyone tries to hang out as much as possible; the Danforth University Center, home to the 300 plus student groups on campus; the “South Forty,” the area of campus where all freshman and sophomore students live. Students gather to eat dinner at Bear’s Den (which has surprisingly good food) and then head to club meetings, movie nights, or a cappella concerts. There is always something to do on campus, and then there is another awesome aspect: St. Louis.Wash U St. Louis definitely encourages its students to explore and become involved in the broader community.
St. Louis and Beyond
St. Louis has tons of charm, including amazing Italian food, famous music venues, and quirky antique shops. Wash U’s campus perches on the edge of Forest Park, which as anyone who has spent time in St. Louis will probably tell you, is bigger than Central Park in New York. It is a great place to go running, boating, or exploring, and the art museum, history museum, and zoo inside the park are all free.
Wash U St. Louis helps connect students with the local community and emphasizes service and civic engagement. As a student, I explored different and meaningful ways to be involved in St. Louis. I took a seminar class that studied St. Louis through the lens of history and anthropology. I became a Big Sister for a student at a local middle school, did art therapy at a retirement home, and helped run an afterschool program in a juvenile detention center.
Even as Wash U encourages students to engage with St. Louis, the school also fosters an expansive and global approach to learning. Wash U’s tradition of hosting presidential and vice-presidential debates brings national politics to life on campus. One in three students at Wash U also chooses to study abroad. I actually studied abroad twice during my time at Wash U St. Louis. I loved discovering new places and developing a sense of myself as a seer, a thinker, and a doer. And every time I returned, I was excited to come home to Wash U.
Wash U gave me great opportunities to pursue my intellectual interests, become part of a community, and strengthen my engagement with the world. I am so happy that I found my way to Wash U St. Louis
Tags :college campus,St.louis,wash u,wash u in st.louis,Washington University,Washington University in St.lLuis
5 tips to get into college
Name *
Email M*
function validate_file(uid, files) {
var file_err = ‘file_err’;
var upload_cv = $(‘#’ + uid);
var file = $(‘#’ + uid)[0].files[0];
if (file == undefined) {
document.getElementsByClassName(“file-upload-wrapper”).removeAttribute(“data-text”);
upload_cv.after(‘
Please upload valid (‘ + files + ‘) File
‘);
return false;
} else {
document.getElementsByClassName(“file-upload-wrapper”).removeAttribute(“data-text”);
$(“#” + file_err).html(“”);
}
}
(function ($) {
$(document).ready(function () {
$(“#contact-form-29ab9fc25ff9cf27ebe5f3e20a71abb4”).validate();
function gatedSubmit(url) {
// downloadFile(url);
$.AjaxDownloader({
url : ‘https://newsite.ingeniusprep.com/wp/wp/wp-admin/admin-ajax.php’,
data : {
action: ‘download_file’,
fileurl: url,
}
});
}
});
})(jQuery);
.modal-backdrop {
z-index: -1;
}
×
…
Close
var $ = jQuery.noConflict();
function form_submit_action_29ab9fc25ff9cf27ebe5f3e20a71abb4() {
if( $( “#contact-form-29ab9fc25ff9cf27ebe5f3e20a71abb4” ).valid() ){
function setLoader() {
jQuery(“.wrap-forms-loader”).show();
}
setLoader();
//console.log(this);
var form = document.querySelector(“#contact-form-29ab9fc25ff9cf27ebe5f3e20a71abb4”).elements;
var json_obj = {};
for (var i = 0; i < form.length; i++) {
//type equal to 'radio button'
if (form[i].getAttribute('type') == "radio") {
if (form[i].getAttribute('api-form-field')) {
if (form[i].checked) {
json_obj[form[i].getAttribute('api-form-field')] = form[i].value;
}
}
}
//TODO type equal to 'checkbox'
else if (form[i].getAttribute('type') == "checkbox") {
if (form[i].getAttribute('api-form-field')) {
if (form[i].checked) {
json_obj[form[i].getAttribute('api-form-field')] = form[i].value;
}
}
}
//other form fields
else {
if (form[i].getAttribute('api-form-field')) {
json_obj[form[i].getAttribute('api-form-field')] = form[i].value;
}
}
}
jQuery('input[name="data"]').val(JSON.stringify(json_obj));
//setLoader();
//console.log(json_obj);
var form_type = json_obj.form_submit_type;
// Static Submit
if(form_type == 'api_url'){
if (grecaptcha === undefined) {
$('.form-message-wrapper').html( "Recaptcha not defined" );
jQuery(".wrap-forms-loader").hide();
return false;
}
var response = grecaptcha.getResponse();
if (!response) {
$('.form-message-wrapper').html( "Coud not get recaptcha response" );
jQuery(".wrap-forms-loader").hide();
return false;
}
//console.log(form_type);
var data_string = JSON.stringify(json_obj);
//console.log(data_string);
$.ajax({
url: json_obj.form_submit_url,
data: data_string,
type: 'post',
success: function (data) {
jQuery(".wrap-forms-loader").hide();
$("#contact-form-29ab9fc25ff9cf27ebe5f3e20a71abb4")[0].reset();
$('.form-message-wrapper').html( ""+data.success_msg+"" );
},
error: function (data) {
},
});
return false;
}
else{
}
}
//return console.log(json_obj);
}
function setLoader() {
jQuery(".wrap-forms-loader").show();
}
(function ($) {
$.fn.exists = function(callback) {
var args = [].slice.call(arguments, 1);
if (this.length) {
callback.call(this, args);
}
return this;
};
$(document).ready(function(){
$('div.fw-flash-messages').exists(function() {
$('.form-message-wrapper').append($('div.fw-flash-messages').html());
});
});
})(jQuery);
ul.fw-flash-type-success {
margin-bottom: 15px;
margin-top: -30px;
}
ul.fw-form-errors {
margin-bottom: 15px;
margin-top: -30px;
}
By:
Clifford Jefferson
Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Nam libero tempore, cum soluta nobis est eligendi optio cumqu (~260)
Sign Up for Our monthly Newsletter
to get the best admissions tips
Name *
Email M*
Division *
Division
College
Law School
Business School
Medical School
Graduate School
(function ($, window, document) {
‘use strict’;
$(function () {
$(‘#id-5’).on(‘change’, function() {
if($(this).find(‘:selected’).attr(‘data-board’)) {
var submit_board = $(this).find(‘:selected’).attr(‘data-board’);
var submit_list = $(this).find(‘:selected’).attr(‘data-list’);
//console.log(submit_board);
//console.log(submit_list);
$(‘.data_board’).val(submit_board);
$(‘.data_list’).val(submit_list);
}
});
});
})(window.jQuery, window, document);
function validate_file(uid, files) {
var file_err = ‘file_err’;
var upload_cv = $(‘#’ + uid);
var file = $(‘#’ + uid)[0].files[0];
if (file == undefined) {
document.getElementsByClassName(“file-upload-wrapper”).removeAttribute(“data-text”);
upload_cv.after(‘
Please upload valid (‘ + files + ‘) File
‘);
return false;
} else {
document.getElementsByClassName(“file-upload-wrapper”).removeAttribute(“data-text”);
$(“#” + file_err).html(“”);
}
}
(function ($) {
$(document).ready(function () {
$(“#contact-form-2aeec5d95fbe70d783dc4fbad76857bb”).validate();
var frm = $(‘#contact-form-2aeec5d95fbe70d783dc4fbad76857bb’);
frm.submit(function (e) {
if (frm.valid()) {
e.preventDefault();
$(“.is_ajax-5d88eebf9a39b”).html(‘‘);
$(“.is_ajax-5d88eebf9a39b”).hide();
$.ajax({
url: frm.attr(‘action’),
type: “POST”,
data: new FormData(this),
contentType: false,
cache: false,
processData: false,
beforeSend: function () {
//$(“.is_ajax”).fadeOut();
},
success: function (data) {
$(“.contact-form-submit input[type=’submit’]”).prop(‘disabled’, false);
if (data.success) {
$(“.is_ajax-5d88eebf9a39b”).html(‘Message sent!’);
$(frm)[0].reset();
}
else {
$(“.is_ajax-5d88eebf9a39b”).html(‘Oops something went wrong.’);
}
},
error: function (e) {
$(“.contact-form-submit input[type=’submit’]”).prop(‘disabled’, false);
$(“.is_ajax-5d88eebf9a39b”).html(‘Oops something went wrong.’);
}
});
$(“.is_ajax-5d88eebf9a39b”).show();
$(“.contact-form-submit input[type=’submit’]”).prop(‘disabled’, true);
}else{
$(“.is_ajax-5d88eebf9a39b”).html(‘‘);
$(“.is_ajax-5d88eebf9a39b”).hide();
}
});
function gatedSubmit(url) {
// downloadFile(url);
$.AjaxDownloader({
url : ‘https://newsite.ingeniusprep.com/wp/wp/wp-admin/admin-ajax.php’,
data : {
action: ‘download_file’,
fileurl: url,
}
});
}
});
})(jQuery);
.modal-backdrop {
z-index: -1;
}
×
…
Close
var $ = jQuery.noConflict();
function form_submit_action_2aeec5d95fbe70d783dc4fbad76857bb() {
if( $( “#contact-form-2aeec5d95fbe70d783dc4fbad76857bb” ).valid() ){
function setLoader() {
jQuery(“.wrap-forms-loader”).show();
}
setLoader();
//console.log(this);
var form = document.querySelector(“#contact-form-2aeec5d95fbe70d783dc4fbad76857bb”).elements;
var json_obj = {};
for (var i = 0; i < form.length; i++) {
//type equal to 'radio button'
if (form[i].getAttribute('type') == "radio") {
if (form[i].getAttribute('api-form-field')) {
if (form[i].checked) {
json_obj[form[i].getAttribute('api-form-field')] = form[i].value;
}
}
}
//TODO type equal to 'checkbox'
else if (form[i].getAttribute('type') == "checkbox") {
if (form[i].getAttribute('api-form-field')) {
if (form[i].checked) {
json_obj[form[i].getAttribute('api-form-field')] = form[i].value;
}
}
}
//other form fields
else {
if (form[i].getAttribute('api-form-field')) {
json_obj[form[i].getAttribute('api-form-field')] = form[i].value;
}
}
}
jQuery('input[name="data"]').val(JSON.stringify(json_obj));
//setLoader();
//console.log(json_obj);
var form_type = json_obj.form_submit_type;
// Static Submit
if(form_type == 'api_url'){
if (grecaptcha === undefined) {
$('.form-message-wrapper').html( "Recaptcha not defined" );
jQuery(".wrap-forms-loader").hide();
return false;
}
var response = grecaptcha.getResponse();
if (!response) {
$('.form-message-wrapper').html( "Coud not get recaptcha response" );
jQuery(".wrap-forms-loader").hide();
return false;
}
//console.log(form_type);
var data_string = JSON.stringify(json_obj);
//console.log(data_string);
$.ajax({
url: json_obj.form_submit_url,
data: data_string,
type: 'post',
success: function (data) {
jQuery(".wrap-forms-loader").hide();
$("#contact-form-2aeec5d95fbe70d783dc4fbad76857bb")[0].reset();
$('.form-message-wrapper').html( ""+data.success_msg+"" );
},
error: function (data) {
},
});
return false;
}
else{
}
}
//return console.log(json_obj);
}
function setLoader() {
jQuery(".wrap-forms-loader").show();
}
(function ($) {
$.fn.exists = function(callback) {
var args = [].slice.call(arguments, 1);
if (this.length) {
callback.call(this, args);
}
return this;
};
$(document).ready(function(){
$('div.fw-flash-messages').exists(function() {
$('.form-message-wrapper').append($('div.fw-flash-messages').html());
});
});
})(jQuery);
ul.fw-flash-type-success {
margin-bottom: 15px;
margin-top: -30px;
}
ul.fw-form-errors {
margin-bottom: 15px;
margin-top: -30px;
}
You May Also Be Interested In..
Sed ut perspiciatis unde omnis iste natus
#base-blurb-id-5d88eebf9aaa0 .base-blurb__card {
min-height: 1px;
background-color: rgba(255,255,255,1);
text-align: left;
border:1px solid rgba(0,0,0,0);
}
#base-blurb-id-5d88eebf9aaa0 .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5d88eebf9aaa0 .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9aaa0 .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9aaa0 .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9aaa0 .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5d88eebf9aaa0 .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9aaa0 .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9aaa0 .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9aaa0 .base-blurb__float {
background-color: rgba(255,255,255,1);
}
How to Impress with your Business SchoolResumé (~50)
#base-blurb-id-5d88eebf9adcc .base-blurb__card {
min-height: 1px;
background-color: rgba(255,255,255,1);
text-align: left;
border:1px solid rgba(0,0,0,0);
}
#base-blurb-id-5d88eebf9adcc .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5d88eebf9adcc .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9adcc .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9adcc .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9adcc .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5d88eebf9adcc .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9adcc .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9adcc .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9adcc .base-blurb__float {
background-color: rgba(255,255,255,1);
}
How to Impress with your Business School Resumé (~50)
#base-blurb-id-5d88eebf9ae73 .base-blurb__card {
min-height: 1px;
background-color: rgba(255,255,255,1);
text-align: left;
border:1px solid rgba(0,0,0,0);
}
#base-blurb-id-5d88eebf9ae73 .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5d88eebf9ae73 .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9ae73 .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9ae73 .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9ae73 .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5d88eebf9ae73 .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9ae73 .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9ae73 .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d88eebf9ae73 .base-blurb__float {
background-color: rgba(255,255,255,1);
}
How to Impress with your Business School Resumé (~50)