Your sites loading issues are primarily js related.
858.6KiB of JavaScript is parsed during initial page load.
Which in my experience is like loading another website or two in some cases in javascript alone.
Page load time: 10.40s
Total page size: 1.62MB
Total number of requests: 183
Not being funny, but you could seriously do with a tune up.
<link rel='stylesheet' id='tentblogger-rss-reminder-css' href='http://noahsdad.com/wp-content/plugins/tentblogger-rss-reminder/css/style.css?ver=3.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='fb-css' href='http://noahsdad.com/wp-content/plugins/facebook/style/style.css?ver=1.0' type='text/css' media='all' />
<link rel='stylesheet' id='bootstrap-css' href='http://cdn.noahsdad.com/wp-content/themes/standard/css/lib/bootstrap.css?ver=3.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='bootstrap-responsive-css' href='http://cdn.noahsdad.com/wp-content/themes/standard/css/lib/bootstrap-responsive.css?ver=3.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='standard-css' href='http://cdn.noahsdad.com/wp-content/themes/eightbit-standard-child-theme-kit-23729a7/style.css?ver=3.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='standard-videopress-css' href='http://cdn.noahsdad.com/wp-content/themes/eightbit-standard-child-theme-kit-23729a7/css/theme.videopress.css?ver=3.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='standard-activity-tabs-css' href='http://cdn.noahsdad.com/wp-content/themes/standard/lib/activity/css/widget.css?ver=3.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='gcse-widget-css' href='http://cdn.noahsdad.com/wp-content/themes/standard/lib/google-custom-search/css/widget.css?ver=3.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='standard-ad-300x250-widget-css' href='http://cdn.noahsdad.com/wp-content/themes/standard/lib/ad-300x250/css/widget.css?ver=3.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='standard-ad-125x125-widget-css' href='http://cdn.noahsdad.com/wp-content/themes/standard/lib/ad-125x125/css/widget.css?ver=3.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='standard-ad-468x60-css' href='http://cdn.noahsdad.com/wp-content/themes/standard/lib/ad-468x60/css/widget.css?ver=3.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='standard-personal-image-widget-css' href='http://cdn.noahsdad.com/wp-content/themes/standard/lib/personal-image/css/widget.css?ver=3.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='standard-influence-css' href='http://cdn.noahsdad.com/wp-content/themes/standard/lib/influence/css/widget.css?ver=3.4.1' type='text/css' media='all' />
Those stylesheets could be combined and compressed.
Should move you google analytics and put it down near the bottom.
All you facebook scripts should be put right at the bottom.
For example the facebook like box.
http://developers.facebook.com/docs/reference/plugins/like-box/
When you create it you get two parts to it.
first like this:
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1&appId=your app id";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
second like this :
<div class="fb-like-box" data-href="http://www.facebook.com/platform" data-width="292" data-show-faces="true" data-stream="true" data-header="true"></div>
Put the first script which is js, right at the bottom, in your footer.php above the closing </body> tag.
Then place the second part where ever you want it to display. I.e in a widget.
Facebook is causing your site to load slowly
blocking of page rendering.
http://static.ak.fbcdn.net/rsrc.php/v2/yI/r/UtF7rMWT5EN.js (570.6KiB)
http://static.ak.fbcdn.net/rsrc.php/v2/yu/r/Cs62Mw2ydAh.js (96.0KiB)
http://static.ak.fbcdn.net/rsrc.php/v2/yH/r/8U6R6ANV56e.js (44.5KiB)
http://static.ak.fbcdn.net/rsrc.php/v2/yX/r/AhktXCJ4AD1.js (41.9KiB)
http://static.ak.fbcdn.net/rsrc.php/v2/yI/r/HyTVfOLb4v3.js (38.0KiB)
http://static.ak.fbcdn.net/rsrc.php/v2/yr/r/xH0QJQfsOa2.js (35.0KiB)
https://s-static.ak.facebook.com/connect/xd_arbiter.php?version=9 (20.8KiB of inline JavaScript)
http://static.ak.fbcdn.net/rsrc.php/v2/yF/r/A3_4Itx-5zc.js (4.7KiB)
So I would drop that plugin and manually add it.
Need help and I will be more than willing.
I do have a plugin for loading share button on posts, with defered js.
http://diywpblog.com/social-media-plugin-for-wordpress-with-defered-javascript/
Hope this helps