Want to Get Into Your Dream School? Don’t Do These 5 Things
Daniel
November 9, 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’);
});
Want to Get Into Your Dream School? Don’t Do These 5 Things
I get it: when you fall in love with a school, it can be hard to see yourself anywhere else. You may envision yourself as a student, strolling the campus, exploring all of the possibilities at the college. But as acceptance rates become more selective and daunting with each passing year, fixating on just your dream school is a dangerous strategy.
In today’s cut throat admissions landscape, I fear that prospective students increasingly focus on the strategy of the application process at the expense of their own wellbeing. Trust me — this approach isn’t worth it! In an attempt to counteract some common misperceptions about “How To Get In,” I would like to offer you a list of five things not to do if you’re hoping to gain acceptance to your dream school. These tips will not only help keep you sane, but also set you up for a successful, rewarding admissions process.
1. Do not focus on only one school or program.
Once you’ve done enough school research, you’ll begin to notice that different colleges have quite a bit more in common than you might have originally imagined. Similar kinds of schools (urban universities, small liberal arts colleges, etc.) tend to have similar curricula, social scenes, and student amenities. If you have a dream school that you’ve fallen in love with, be comforted by the fact that there are dozens of comparable institutions at which you might be just as happy. Spend time balancing your college list; try to apply to institutions like your dream school at a variety of selectivity levels, giving you the best chance of ending up at a place that will fit you well.
2. Do not change your interests.
Admissions officers might be overloaded with applications, but they’re not fools. Having read and assessed thousands of applications, I can tell you that it’s obvious when a student has pursued an experience or activity in order to seem impressive, as opposed to pursuing genuine interests.
As you build your candidacy, do not spend time worrying about what your dream school wants. Don’t agonize over an activity that you hate or apply for a certain major because you think it will increase your odds. Instead, try to figure out what you want. Don’t be afraid to experiment with different extracurriculars and academic offerings, especially as a 9th or 10th grader. More so than published authors or highly-ranked chess players, all schools want thoughtful students who are genuinely passionate. This is a quality that simply cannot be faked.
3. Do not refuse to have a good time in high school!
Although it will be necessary to demonstrate significant scholastic achievement in order to be considered at top schools, do not let your academic ambitions get in the way of having fun during your high school years. Friendships and travel experiences may not feel as relevant to your future as studying for the SAT, but I promise that they are.
The perspective you gain and maturity you develop over the course of your high school years will come through in your application materials. These are the sorts of subtle personal qualities that admission officers look for through interviews and the personal statement. As intangible as these characteristics are, they can make or break an admissions officer’s impression of you. Take the time to relax and become a self-aware human — it will pay off!
4. Do not forget about your community.
When you’re solely focused on applying to your dream school, it can be easy to occupy a distant realm of fantasies of strolling through the quadrangles of your favorite campus. And while it’s important to indulge these thoughts as a way of understanding your future ambitions, it’s also crucial to stay grounded within the context of your present community.
If you’re lucky enough to be applying to college, you have talents and resources that can and should be shared for the benefit of others. Do not worry so much about your own future that you neglect to give back to the places or people that made you who you are. Working with your community is not only the right thing to do, but will help show that you’re an actively engaged person who has had an impact.
5. Do not write your personal statement to sound as impressive as possible.
The college application is a data-heavy document, filled with grades, scores, lists, and assessments of all sorts. The personal statement is the moment in your application where your personality will shine through. Admission officers are hoping to get to know who you are by reading this essay — how you think, feel, and conceive of the world around you. This is not an appropriate place to recap your academic or extracurricular successes. I assure you that your other application components will do a perfectly sufficient job of capturing your achievements. Try to show admissions officers what makes you you. It is intended to be an opportunity for human connection, not a resumé in disguise. There are many personal statement mistakes you’ll want to avoid, and regurgitating your accomplishments is one of them.
It’s okay to have a dream school that you love and are crossing your fingers for! Don’t let this blog dissuade you from applying — you should definitely throw your hat in the ring for a college you love. Reach high, but use these tips to maintain perspective and be strategic along the way.
Tags :Common Mistakes,college application mistakes,college application process,get into college,how to get into college,dream school
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-3286bc63a1a90583b1a6fa0c366a6fd5”).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_3286bc63a1a90583b1a6fa0c366a6fd5() {
if( $( “#contact-form-3286bc63a1a90583b1a6fa0c366a6fd5” ).valid() ){
function setLoader() {
jQuery(“.wrap-forms-loader”).show();
}
setLoader();
//console.log(this);
var form = document.querySelector(“#contact-form-3286bc63a1a90583b1a6fa0c366a6fd5”).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-3286bc63a1a90583b1a6fa0c366a6fd5")[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 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-9a33f186146fb873291aa69f92da99cf”).validate();
var frm = $(‘#contact-form-9a33f186146fb873291aa69f92da99cf’);
frm.submit(function (e) {
if (frm.valid()) {
e.preventDefault();
$(“.is_ajax-5c9a8ef30bec7”).html(‘‘);
$(“.is_ajax-5c9a8ef30bec7”).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-5c9a8ef30bec7”).html(‘Message sent!’);
$(frm)[0].reset();
}
else {
$(“.is_ajax-5c9a8ef30bec7”).html(‘Oops something went wrong.’);
}
},
error: function (e) {
$(“.contact-form-submit input[type=’submit’]”).prop(‘disabled’, false);
$(“.is_ajax-5c9a8ef30bec7”).html(‘Oops something went wrong.’);
}
});
$(“.is_ajax-5c9a8ef30bec7”).show();
$(“.contact-form-submit input[type=’submit’]”).prop(‘disabled’, true);
}else{
$(“.is_ajax-5c9a8ef30bec7”).html(‘‘);
$(“.is_ajax-5c9a8ef30bec7”).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_9a33f186146fb873291aa69f92da99cf() {
if( $( “#contact-form-9a33f186146fb873291aa69f92da99cf” ).valid() ){
function setLoader() {
jQuery(“.wrap-forms-loader”).show();
}
setLoader();
//console.log(this);
var form = document.querySelector(“#contact-form-9a33f186146fb873291aa69f92da99cf”).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-9a33f186146fb873291aa69f92da99cf")[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-5c9a8ef30c796 .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-5c9a8ef30c796 .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5c9a8ef30c796 .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30c796 .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30c796 .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30c796 .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5c9a8ef30c796 .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30c796 .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30c796 .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30c796 .base-blurb__float {
background-color: rgba(255,255,255,1);
}
How to Impress with your Business SchoolResumé (~50)
#base-blurb-id-5c9a8ef30cdd5 .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-5c9a8ef30cdd5 .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5c9a8ef30cdd5 .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30cdd5 .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30cdd5 .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30cdd5 .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5c9a8ef30cdd5 .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30cdd5 .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30cdd5 .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30cdd5 .base-blurb__float {
background-color: rgba(255,255,255,1);
}
How to Impress with your Business School Resumé (~50)
#base-blurb-id-5c9a8ef30ceb4 .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-5c9a8ef30ceb4 .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5c9a8ef30ceb4 .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30ceb4 .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30ceb4 .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30ceb4 .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5c9a8ef30ceb4 .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30ceb4 .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30ceb4 .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5c9a8ef30ceb4 .base-blurb__float {
background-color: rgba(255,255,255,1);
}
How to Impress with your Business School Resumé (~50)