Den of Thieves (James Stewart)Liar’s Poker (Michael Lewis)Monkey Business (John and Rolfe)Beating the Street (Peter Lynch)Dumb Money (Anuff and Wolf)The Predictors (Bass)Irrational Exuberance (James Shiller)Random Walk Down Wall Street (Burton Malkiel)Non-Random Walk Down Wall Street (Lo and MacKinlay)Barbarians at the Gate (Burroughs and Heylar)When Genius Failed: The Rise and Fall of Long-Term Capital Management (Lowenstein)Inventing Money (Nicholas Dunbar)Rich Dad, Poor Dad: What the rich teach their kids about money — that the poor and middle class do not! (Kiyosaki)The Money Book for the Young, Fabulous & Broke (Orman)My Life as a Quant: Reflections on Physics and Finance (Emanuel Derman)Fooled by Randomness: The Hidden Role of Chance in Life and in the Markets, Second Edition (Nasim Telab)The Black Swan: The Impact of the Highly Improbable (Nicholas Taleb)Fischer Black and the Revolutionary Idea of Finance (Perry Mehrling)Against the Gods (Peter Bernstein)Freakenomics (Levitt and Dunbar)Superfreakenomics (Levitt and DunbarOThe Millionaire Next Door (Stanley and Danko)
Last Completed Projects
topic title | academic level | Writer | delivered |
---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });