'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

On the Run (novel series)

On the Run is a series of children's novels written by Gordon Korman. It tells a story about two children who try to clear their parents' names, while they are also being hunted by the authorities themselves. The series has six books in total and was published in 2005 through 2006. The series also has a sequel series entitled Kidnapped, which follows the children after this series.

Books

  • Chasing the Falconers — Aiden and Meg Falconer escape from Sunnydale juvenile detention farm to prove their parents are innocent by finding their Uncle Frank Lindenauer, a family friend.
  • The Fugitive Factor — The Falconers go to Boston and talk to Frank Lindenauer's former girlfriend, but Meg is captured and thrown in jail.
  • Now You See Them, Now You Don't — Aiden and Meg fly to Los Angeles and receive help from a street gang called the International Crew led by Bo.
  • The Stowaway Solution — The siblings stowaway on a ship to get closer to escape the police. They get captured on the ship but, escape on an inflatable raft. Meg gets purposely hit by a car to be able to get to the same hospital as Aiden and handcuffs Emmanuel Harris the FBI agent to a radiator while in the hospital.
  • Public enemy (disambiguation)

    The term public enemy was first widely used in the United States in the 1930s to describe individuals whose activities were seen as criminal and extremely damaging to society.

    Public enemy or public enemies may also refer to:

    In media and entertainment

    In film

    (Chronological)

  • The Public Enemy, a 1931 American film
  • Public Enemies (1941 film) aka Gangs of the City, a comedy crime film
  • Public Enemies (1996 film), a crime film about Ma Barker
  • Public Enemy (2002 film), a South Korean film
  • Public Enemies (2009 film), an American crime drama about John Dillinger directed by Michael Mann
  • Superman/Batman: Public Enemies (2009), the DC Universe Animated Original Movies adaptation of the comic book story of its same name
  • In literature and publications

  • Public Enemies (book), the fifth book of the "On the Run" series by American author Gordon Korman
  • Public Enemies: Dueling Writers Take On Each Other and the World, a book written by Bernard-Henri Lévy and Michel Houellebecq
  • Superman/Batman Public Enemies, the first story arc of the DC Comic book Superman/Batman comic book series
  • Public Enemies (2009 film)

    Public Enemies is a 2009 American biographical mob drama film directed by Michael Mann and written by Mann, Ronan Bennett and Ann Biderman. It is an adaptation of Bryan Burrough's non-fiction book Public Enemies: America's Greatest Crime Wave and the Birth of the FBI, 1933–34. Set during the Great Depression, the film chronicles the final years of the notorious bank robber John Dillinger (Johnny Depp) as he is pursued by FBI agent Melvin Purvis (Christian Bale), Dillinger's relationship with Billie Frechette (Marion Cotillard), as well as Purvis' pursuit of Dillinger's associates and fellow criminals Homer Van Meter (Stephen Dorff) and Baby Face Nelson (Stephen Graham).

    Burrough originally intended to make a television miniseries about the Depression-era crime wave in the United States, but decided to write a book on the subject instead. Mann developed the project, and some scenes were filmed on location where certain events depicted in the film occurred, though the film is not entirely historically accurate.

    Public Enemies (group)

    Public Enemies was a leading Norwegian rhythm and blues band from Oslo, known for its performances at Club 7 and later work with Karin Krog. They released a notable version of Sunny and Watermelon Man with Karin Krog. The group toured Northern Europe, sharing stages with, among others, Steve Winwood from Traffic.

    Band members

    The members of Public Enemies were Hans Petter Holm (vocals, guitar, bass), Bjørn Johansen (guitar, vocals), Thomas Berg Monsen (harmonica, vocals), Arild Boman (organ), Hans Marius Stormoen (bass) and Jan Lie (drums, vocals).

    Success

    Public Enemies was voted the most popular band in Norway in 1966, with a good margin down to The Pussycats. They featured in the Norwegian film Hurra for Andersens, performing their hit single Shotgun. Later that year Public Enemies' Shotgun reached #7 on Radio Luxembourg Top 20, making Public Enemies the first Norwegian band with success on international hit lists. Their 1967 album From Public Enemies Without Love, simply titled Public Enemies, was released also in Italy with a different cover on the Thunder label.

    Podcasts:

    • Public Enemies by Bryan Burrough · Audiobook preview

      PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAIAS_Ut9SM Public Enemies Authored by Bryan Burrough Narrated by Campbell Scott Abridged #bryanburrough #publicenemies — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION The astonishing true story of America's first and greatest "War on Crime." In Public Enemies, Bryan Burrough strips away a thick layer of myths put out by J. Edgar Hoover's FBI to tell the full story of the most spectacular crime wave in American history, the two-year battle ...

      published: 27 Jan 2024
    • Public Enemies - Bryan Burrough - Book review.

      A book about crime history of America. This book is mainly about John Dillinger though.

      published: 05 Nov 2023
    • PUBLIC ENEMY NO. 1 - the story of John Dillinger

      Support the channel by buying branded merch - https://potustoronuzakona.gumroad.com/ John Dillinger is the most famous bank robber in history and was chased for a year by almost all law enforcement agencies in the United States. During this time he managed to rob about two dozen banks for a sum of 500 thousand dollars. During his lifetime, he was called a gentleman bandit and a modern-day Robin Hood. And his death was the starting point after which Hoover and the FBI really gained power. About a dozen movies have been made about him and even more books have been written. Pieces of his tombstone have been taken several times by fans from all over the world, and everyone who knew him made money for the rest of their lives just from stories about Dillinger. But is his story so unequivocal?...

      published: 17 Jan 2024
    • Why I love PUBLIC ENEMIES (2009)

      I recently saw Michael Mann's 2009 crime epic Public Enemies with Johnny Depp and that, combined with the fact that I'm currently reading the book by Bryan Burrough, has led me to make this quick video about why I love it so. I think Public Enemies is such an underrated film, deserving of so much more love. I talk about the acting, the directing, some of the historical facts and just why in general I think it is such an amazing film. I'd love to hear what you think about it so please leave some comments below about what you either love or hate about the film. Let's get the conversation going! A new channel, still finding it's feet. Please, if you have any suggestions, leave a comment in the video. This will help the channel to grow and help me in being able to bring to you the type of ...

      published: 02 Feb 2023
    • Bye Bye Blackbird (final scene of Public Enemies 2009)

      a 2009 crime film starring Johnny Depp as Johnny Dillinger, Christian Bale as Melvin Purvis, Marion Cotillard as Billie Frechette.

      published: 04 Jul 2020
    • Superman/Batman Public Enemies Comic Book Review

      Hey Guys IAM your PokeRanger Sathvik today I am going to do a Review on my Favorite Comic Book Superman/Batman Public Enemies and this was one of the finest Storyline of DC comics. Please like and share my video and please Subscribe my Channel.

      published: 18 Feb 2018
    • "Public Enemies" - Trailer [HQ HD]

      In theaters: July 1, 2009 Starring Johnny Depp, Christian Bale, Marion Cotillard, Jason Clarke, Rory Cochran In the action-thriller Public Enemies, acclaimed filmmaker Michael Mann directs Johnny Depp, Christian Bale and Academy Award® winner Marion Cotillard in the story of legendary Depression-era outlaw John Dillinger (Depp)—the charismatic bank robber whose lightning raids made him the number one target of J. Edgar Hoovers fledgling FBI and its top agent, Melvin Purvis (Bale), and a folk hero to much of the downtrodden public. No one could stop Dillinger and his gang. No jail could hold him. His charm and audacious jailbreaks endeared him to almost everyone—from his girlfriend Billie Frechette to an American public who had no sympathy for the banks that had plunged the country into ...

      published: 19 Jun 2009
    • PUBLIC ENEMIES - Billy's Capture

      COPYRIGHT UNIVERSAL PICTURES #publicenemies is a 2009 biographical crime drama film and is an adaptation of Bryan Burrough's 2004 non-fiction book Public Enemies: America's Greatest Crime Wave and the Birth of the FBI, 1933–34. The film stars #johnnydepp, #christianbale, #billycrudup and #marioncotillard. In the film, against the background of the Great Depression, notorious bank robber #JohnDillinger (depp) continues to make a mockery of the FBI as he time and time again eludes capture. Desperate to capture the outlaw, FBI director J. Edgar Hoover (Crudup) makes Dillinger his first Public Enemy Number One and assigns his top agent, Melvin Purvis (Bale), the task of bringing Dillinger in dead or alive. SUBSCRIBE FOR MORE CLIPS! https://www.youtube.com/channel/UCs9pWwXMBRcqdF4-GvwHCxQ?su...

      published: 01 Feb 2024
    • Public Enemies - Bank Job

      Public Enemies is a 2009 American biographical crime drama film directed by Michael Mann who co-wrote the screenplay with Ronan Bennett and Ann Biderman. It is an adaptation of Bryan Burrough's non-fiction book Public Enemies: America's Greatest Crime Wave and the Birth of the FBI, 1933–34. Set during the Great Depression, the film chronicles the final years of the notorious bank robber John Dillinger (Johnny Depp) as he is pursued by FBI agent Melvin Purvis (Christian Bale), Dillinger's relationship with Billie Frechette (Marion Cotillard), as well as Purvis' pursuit of Dillinger's associates and fellow criminals Homer Van Meter (Stephen Dorff) and Baby Face Nelson (Stephen Graham). In between a series of bank robberies, Dillinger meets Billie Frechette at a restaurant and impresses her b...

      published: 08 Jul 2020
    • Public Enemies (9/10) Movie CLIP - Defying the Law (2009) HD

      Public Enemies movie clips: http://j.mp/1Ja5Ap9 BUY THE MOVIE: http://amzn.to/s9S5wq Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Though beaten and emotionally frayed, Billie (Marion Cotillard) endures a brutal interrogation just so she can tell the the feds how Dillinger outsmarted all of them. FILM DESCRIPTION: Based on author Bryan Burrough's ambitious tome Public Enemies: America's Greatest Crime Wave and the Birth of the FBI, 1933-43, director Michael Mann's sprawling historical crime drama follows the efforts of top FBI agent Melvin Purvis (Christian Bale ) in capturing notorious bank robber John Dillinger. A folk hero to the American public thanks to his penchant for robbing the banks that many people believed responsible for the Great Depression, c...

      published: 16 Jun 2011
    developed with YouTube
    Public Enemies by Bryan Burrough · Audiobook preview
    11:10

    Public Enemies by Bryan Burrough · Audiobook preview

    • Order:
    • Duration: 11:10
    • Uploaded Date: 27 Jan 2024
    • views: 8
    PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAIAS_Ut9SM Public Enemies Authored by Bryan Burrough Narrated by Campbell Scott Abridged #bryanburrough #publicenemies — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION The astonishing true story of America's first and greatest "War on Crime." In Public Enemies, Bryan Burrough strips away a thick layer of myths put out by J. Edgar Hoover's FBI to tell the full story of the most spectacular crime wave in American history, the two-year battle between the young Hoover and an assortment of criminals who became national icons: John Dillinger, Machine Gun Kelly, Bonnie and Clyde, Baby Face Nelson, Pretty Boy Floyd, and the Barkers. In 1933, police jurisdictions ended at state lines, the FBI was in its infancy, and fast cars and machine guns were easily available. It was a great time to be a bank robber. On hand were a motley crew of criminal masterminds, sociopaths, romantics, and cretins. Bryan Burrough has unearthed an extraordinary amount of new material on all the major figures involved -- revealing many fascinating interconnections in the vast underworld ecosystem that stretched from Texas up to Minnesota. But the real-life connections were insignificant next to the sense of connectedness J. Edgar Hoover worked to create in the mind of the American public-using the "Great Crime Wave" to gain the position of untouchable power he would occupy for almost half a century. — ABOUT THE AUTHOR Bryan Burrough is a special correspondent at Vanity Fair, and the author of three books, Barbarians at the Gate: The Fall of RJR Nabisco (With John Helyar), Dragonfly: An Epic Adventure of Survival in Outer Space, and Vendetta: American Express and the Smearing of Edmond Safra. A former reporter for The Wall Street Journal, he is a three-time winner of the John Hancock Award for excellence in financial journalism. He lives in Summit, New Jersey with his wife Marla and their two sons. Campbell Scott directed the film Off The Map, and received the best actor award from the National Board of Review for his performance in Roger Dodger. His other films include The Secret Lives of Dentists, The Dying Gaul, Mrs. Parker and the Vicious Circle and Big Night, which he also co-directed. — AUDIOBOOK DETAILS Purchase on Google Play Books ►► https://g.co/booksYT/AQAAAIAS_Ut9SM Language: English Publisher: Simon and Schuster Published on: July 1, 2004 ISBN: 9780743539913 Duration: 6 hr, 9 min Genres: History / General, History / United States / 20th Century, History / United States / General
    https://wn.com/Public_Enemies_By_Bryan_Burrough_·_Audiobook_Preview
    Public Enemies - Bryan Burrough - Book review.
    7:12

    Public Enemies - Bryan Burrough - Book review.

    • Order:
    • Duration: 7:12
    • Uploaded Date: 05 Nov 2023
    • views: 20
    A book about crime history of America. This book is mainly about John Dillinger though.
    https://wn.com/Public_Enemies_Bryan_Burrough_Book_Review.
    PUBLIC ENEMY NO. 1 - the story of John Dillinger
    2:02:13

    PUBLIC ENEMY NO. 1 - the story of John Dillinger

    • Order:
    • Duration: 2:02:13
    • Uploaded Date: 17 Jan 2024
    • views: 513767
    Support the channel by buying branded merch - https://potustoronuzakona.gumroad.com/ John Dillinger is the most famous bank robber in history and was chased for a year by almost all law enforcement agencies in the United States. During this time he managed to rob about two dozen banks for a sum of 500 thousand dollars. During his lifetime, he was called a gentleman bandit and a modern-day Robin Hood. And his death was the starting point after which Hoover and the FBI really gained power. About a dozen movies have been made about him and even more books have been written. Pieces of his tombstone have been taken several times by fans from all over the world, and everyone who knew him made money for the rest of their lives just from stories about Dillinger. But is his story so unequivocal? Was this man really the “American Robin Hood,” and why did one single year of his life give him fame that lives on to this day? We will tell you about this and much more in our video today. And if you're interested in the real story of America’s top enemy and go beyond the now trite framework of his conflict with Hoover, then meet John Dillinger, on the other side of the law.
    https://wn.com/Public_Enemy_No._1_The_Story_Of_John_Dillinger
    Why I love PUBLIC ENEMIES (2009)
    10:44

    Why I love PUBLIC ENEMIES (2009)

    • Order:
    • Duration: 10:44
    • Uploaded Date: 02 Feb 2023
    • views: 1487
    I recently saw Michael Mann's 2009 crime epic Public Enemies with Johnny Depp and that, combined with the fact that I'm currently reading the book by Bryan Burrough, has led me to make this quick video about why I love it so. I think Public Enemies is such an underrated film, deserving of so much more love. I talk about the acting, the directing, some of the historical facts and just why in general I think it is such an amazing film. I'd love to hear what you think about it so please leave some comments below about what you either love or hate about the film. Let's get the conversation going! A new channel, still finding it's feet. Please, if you have any suggestions, leave a comment in the video. This will help the channel to grow and help me in being able to bring to you the type of content you really want to see and experience.
    https://wn.com/Why_I_Love_Public_Enemies_(2009)
    Bye Bye Blackbird (final scene of Public Enemies 2009)
    2:46

    Bye Bye Blackbird (final scene of Public Enemies 2009)

    • Order:
    • Duration: 2:46
    • Uploaded Date: 04 Jul 2020
    • views: 113621
    a 2009 crime film starring Johnny Depp as Johnny Dillinger, Christian Bale as Melvin Purvis, Marion Cotillard as Billie Frechette.
    https://wn.com/Bye_Bye_Blackbird_(Final_Scene_Of_Public_Enemies_2009)
    Superman/Batman Public Enemies Comic Book Review
    8:00

    Superman/Batman Public Enemies Comic Book Review

    • Order:
    • Duration: 8:00
    • Uploaded Date: 18 Feb 2018
    • views: 411
    Hey Guys IAM your PokeRanger Sathvik today I am going to do a Review on my Favorite Comic Book Superman/Batman Public Enemies and this was one of the finest Storyline of DC comics. Please like and share my video and please Subscribe my Channel.
    https://wn.com/Superman_Batman_Public_Enemies_Comic_Book_Review
    "Public Enemies" -  Trailer [HQ HD]
    2:40

    "Public Enemies" - Trailer [HQ HD]

    • Order:
    • Duration: 2:40
    • Uploaded Date: 19 Jun 2009
    • views: 4951950
    In theaters: July 1, 2009 Starring Johnny Depp, Christian Bale, Marion Cotillard, Jason Clarke, Rory Cochran In the action-thriller Public Enemies, acclaimed filmmaker Michael Mann directs Johnny Depp, Christian Bale and Academy Award® winner Marion Cotillard in the story of legendary Depression-era outlaw John Dillinger (Depp)—the charismatic bank robber whose lightning raids made him the number one target of J. Edgar Hoovers fledgling FBI and its top agent, Melvin Purvis (Bale), and a folk hero to much of the downtrodden public. No one could stop Dillinger and his gang. No jail could hold him. His charm and audacious jailbreaks endeared him to almost everyone—from his girlfriend Billie Frechette to an American public who had no sympathy for the banks that had plunged the country into the Depression. But while the adventures of Dillingers gang—later including the sociopathic Baby Face Nelson (Stephen Graham) and Alvin Karpis (Giovanni Ribisi)—thrilled many, Hoover (Billy Crudup) hit on the idea of exploiting the outlaws capture as a way to elevate his Bureau of Investigation into the national police force that became the FBI. He made Dillinger Americas first Public Enemy Number One and sent in Purvis, the dashing Clark Gable of the FBI. However, Dillinger and his gang outwitted and outgunned Purvis men in wild chases and shootouts. Only after importing a crew of Western ex-lawmen (newly baptized as agents) and orchestrating epic betrayals—from the infamous Lady in Red to the Chicago crime boss Frank Nitti—were Purvis, the FBI and their new crew of gunfighters able to close in on Dillinger.
    https://wn.com/Public_Enemies_Trailer_Hq_Hd
    PUBLIC ENEMIES - Billy's Capture
    2:13

    PUBLIC ENEMIES - Billy's Capture

    • Order:
    • Duration: 2:13
    • Uploaded Date: 01 Feb 2024
    • views: 4
    COPYRIGHT UNIVERSAL PICTURES #publicenemies is a 2009 biographical crime drama film and is an adaptation of Bryan Burrough's 2004 non-fiction book Public Enemies: America's Greatest Crime Wave and the Birth of the FBI, 1933–34. The film stars #johnnydepp, #christianbale, #billycrudup and #marioncotillard. In the film, against the background of the Great Depression, notorious bank robber #JohnDillinger (depp) continues to make a mockery of the FBI as he time and time again eludes capture. Desperate to capture the outlaw, FBI director J. Edgar Hoover (Crudup) makes Dillinger his first Public Enemy Number One and assigns his top agent, Melvin Purvis (Bale), the task of bringing Dillinger in dead or alive. SUBSCRIBE FOR MORE CLIPS! https://www.youtube.com/channel/UCs9pWwXMBRcqdF4-GvwHCxQ?sub_confirmation=1 #publicenemies #johnnydepp #marioncotillard #johndillinger
    https://wn.com/Public_Enemies_Billy's_Capture
    Public Enemies - Bank Job
    3:47

    Public Enemies - Bank Job

    • Order:
    • Duration: 3:47
    • Uploaded Date: 08 Jul 2020
    • views: 3060
    Public Enemies is a 2009 American biographical crime drama film directed by Michael Mann who co-wrote the screenplay with Ronan Bennett and Ann Biderman. It is an adaptation of Bryan Burrough's non-fiction book Public Enemies: America's Greatest Crime Wave and the Birth of the FBI, 1933–34. Set during the Great Depression, the film chronicles the final years of the notorious bank robber John Dillinger (Johnny Depp) as he is pursued by FBI agent Melvin Purvis (Christian Bale), Dillinger's relationship with Billie Frechette (Marion Cotillard), as well as Purvis' pursuit of Dillinger's associates and fellow criminals Homer Van Meter (Stephen Dorff) and Baby Face Nelson (Stephen Graham). In between a series of bank robberies, Dillinger meets Billie Frechette at a restaurant and impresses her by buying her a fur coat. Frechette falls for Dillinger even after he reveals his identity, and the two become inseparable.
    https://wn.com/Public_Enemies_Bank_Job
    Public Enemies (9/10) Movie CLIP - Defying the Law (2009) HD
    2:47

    Public Enemies (9/10) Movie CLIP - Defying the Law (2009) HD

    • Order:
    • Duration: 2:47
    • Uploaded Date: 16 Jun 2011
    • views: 503696
    Public Enemies movie clips: http://j.mp/1Ja5Ap9 BUY THE MOVIE: http://amzn.to/s9S5wq Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Though beaten and emotionally frayed, Billie (Marion Cotillard) endures a brutal interrogation just so she can tell the the feds how Dillinger outsmarted all of them. FILM DESCRIPTION: Based on author Bryan Burrough's ambitious tome Public Enemies: America's Greatest Crime Wave and the Birth of the FBI, 1933-43, director Michael Mann's sprawling historical crime drama follows the efforts of top FBI agent Melvin Purvis (Christian Bale ) in capturing notorious bank robber John Dillinger. A folk hero to the American public thanks to his penchant for robbing the banks that many people believed responsible for the Great Depression, charming bandit Dillinger (Johnny Depp) was virtually unstoppable at the height of his criminal career; no jail could hold him, and his exploits endeared him to the common people while making headlines across the country. J. Edgar Hoover's (Billy Crudup) FBI was just coming into formation, and what better way for the ambitious lawman to transform his fledgling Bureau of Investigation into a national police force than to capture the gang that always gets away? Determined to bust Dillinger and his crew, which also included sociopathic Baby Face Nelson (Stephen Graham) and Alvin Karpis (Giovanni Ribisi), Hoover christened Dillinger the country's very first Public Enemy Number One, and unleashed Purvis to take them down by whatever means necessary. But Purvis underestimated Dillinger's ingenuity as a master criminal, and after embarking on a frantic series of chases and shoot-outs, the dashing agent humbly surmised that he was in over his head. Outwitted and outgunned, Purvis knew that his only hope for busting Dillinger's gang was to baptize a crew of Western ex-lawmen as official agents, and orchestrate a series of betrayals so cunning that even America's criminal mastermind wouldn't know what hit him. Marion Cotillard, Channing Tatum, and Stephen Dorff co-star. CREDITS: TM & © Universal (2009) Cast: Christian Bale, Stephen Lang, Adam Mucci, Marion Cotillard, Rebecca Spence Director: Michael Mann Producers: G. Mac Brown, Bryan H. Carroll, Gusmano Cesaretti, Kevin De La Noy, Michael Mann, Kevin Misher, Maria Norman, Robert De Niro, Jane Rosenthal Screenwriters: Ronan Bennett, Michael Mann, Ann Biderman, Bryan Burrough WHO ARE WE? The MOVIECLIPS channel is the largest collection of licensed movie clips on the web. Here you will find unforgettable moments, scenes and lines from all your favorite films. Made by movie fans, for movie fans. SUBSCRIBE TO OUR MOVIE CHANNELS: MOVIECLIPS: http://bit.ly/1u2yaWd ComingSoon: http://bit.ly/1DVpgtR Indie & Film Festivals: http://bit.ly/1wbkfYg Hero Central: http://bit.ly/1AMUZwv Extras: http://bit.ly/1u431fr Classic Trailers: http://bit.ly/1u43jDe Pop-Up Trailers: http://bit.ly/1z7EtZR Movie News: http://bit.ly/1C3Ncd2 Movie Games: http://bit.ly/1ygDV13 Fandango: http://bit.ly/1Bl79ye Fandango FrontRunners: http://bit.ly/1CggQfC HIT US UP: Facebook: http://on.fb.me/1y8M8ax Twitter: http://bit.ly/1ghOWmt Pinterest: http://bit.ly/14wL9De Tumblr: http://bit.ly/1vUwhH7
    https://wn.com/Public_Enemies_(9_10)_Movie_Clip_Defying_The_Law_(2009)_Hd
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Public Enemies by Bryan Burrough · Audiobook preview
      11:10
      Public Enemies by Bryan Burrough · Audiobook previewremove from playlist
    • Public Enemies - Bryan Burrough - Book review.
      7:12
      Public Enemies - Bryan Burrough - Book review.remove from playlist
    • PUBLIC ENEMY NO. 1 - the story of John Dillinger
      2:02:13
      PUBLIC ENEMY NO. 1 - the story of John Dillingerremove from playlist
    • Why I love PUBLIC ENEMIES (2009)
      10:44
      Why I love PUBLIC ENEMIES (2009)remove from playlist
    • Bye Bye Blackbird (final scene of Public Enemies 2009)
      2:46
      Bye Bye Blackbird (final scene of Public Enemies 2009)remove from playlist
    • Superman/Batman Public Enemies Comic Book Review
      8:00
      Superman/Batman Public Enemies Comic Book Reviewremove from playlist
    • 2:40
      "Public Enemies" - Trailer [HQ HD]remove from playlist
    • PUBLIC ENEMIES - Billy's Capture
      2:13
      PUBLIC ENEMIES - Billy's Captureremove from playlist
    • Public Enemies - Bank Job
      3:47
      Public Enemies - Bank Jobremove from playlist
    • Public Enemies (9/10) Movie CLIP - Defying the Law (2009) HD
      2:47
      Public Enemies (9/10) Movie CLIP - Defying the Law (2009) HDremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Public Enemies by Bryan Burrough · Audiobook preview

    PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAIAS_Ut9SM Public Enemies Authored by Bryan Burrough Narrated by Campbell Scott Abridged #bryanburrough #publicenemies — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION The astonishing true story of America's first and greatest "War on Crime." In Public Enemies, Bryan Burrough strips away a thick layer of myths put out by J. Edgar Hoover's FBI to tell the full story of the most spectacular crime wave in American history, the two-year battle between the young Hoover and an assortment of criminals who became national icons: John Dillinger, Machine Gun Kelly, Bonnie and Clyde, Baby Face Nelson, Pretty Boy Floyd, and the Barkers. In 1933, police jurisdictions ended at state lines, the FBI was in its infancy, and fast cars and machine guns were easily available. It was a great time to be a bank robber. On hand were a motley crew of criminal masterminds, sociopaths, romantics, and cretins. Bryan Burrough has unearthed an extraordinary amount of new material on all the major figures involved -- revealing many fascinating interconnections in the vast underworld ecosystem that stretched from Texas up to Minnesota. But the real-life connections were insignificant next to the sense of connectedness J. Edgar Hoover worked to create in the mind of the American public-using the "Great Crime Wave" to gain the position of untouchable power he would occupy for almost half a century. — ABOUT THE AUTHOR Bryan Burrough is a special correspondent at Vanity Fair, and the author of three books, Barbarians at the Gate: The Fall of RJR Nabisco (With John Helyar), Dragonfly: An Epic Adventure of Survival in Outer Space, and Vendetta: American Express and the Smearing of Edmond Safra. A former reporter for The Wall Street Journal, he is a three-time winner of the John Hancock Award for excellence in financial journalism. He lives in Summit, New Jersey with his wife Marla and their two sons. Campbell Scott directed the film Off The Map, and received the best actor award from the National Board of Review for his performance in Roger Dodger. His other films include The Secret Lives of Dentists, The Dying Gaul, Mrs. Parker and the Vicious Circle and Big Night, which he also co-directed. — AUDIOBOOK DETAILS Purchase on Google Play Books ►► https://g.co/booksYT/AQAAAIAS_Ut9SM Language: English Publisher: Simon and Schuster Published on: July 1, 2004 ISBN: 9780743539913 Duration: 6 hr, 9 min Genres: History / General, History / United States / 20th Century, History / United States / General
    11:10
    Public Enemies by Bryan Burrough · Audiobook preview
    PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAIAS_Ut9SM Public Enemies Autho...
    published: 27 Jan 2024
    Play in Full Screen
    7:12
    Public Enemies - Bryan Burrough - Book review.
    A book about crime history of America. This book is mainly about John Dillinger though.
    published: 05 Nov 2023
    Play in Full Screen
    2:02:13
    PUBLIC ENEMY NO. 1 - the story of John Dillinger
    Support the channel by buying branded merch - https://potustoronuzakona.gumroad.com/ John...
    published: 17 Jan 2024
    Play in Full Screen
    10:44
    Why I love PUBLIC ENEMIES (2009)
    I recently saw Michael Mann's 2009 crime epic Public Enemies with Johnny Depp and that, co...
    published: 02 Feb 2023
    Play in Full Screen
    2:46
    Bye Bye Blackbird (final scene of Public Enemies 2009)
    a 2009 crime film starring Johnny Depp as Johnny Dillinger, Christian Bale as Melvin Purvi...
    published: 04 Jul 2020
    Play in Full Screen
    8:00
    Superman/Batman Public Enemies Comic Book Review
    Hey Guys IAM your PokeRanger Sathvik today I am going to do a Review on my Favorite Comic ...
    published: 18 Feb 2018
    Play in Full Screen
    2:40
    "Public Enemies" - Trailer [HQ HD]
    In theaters: July 1, 2009 Starring Johnny Depp, Christian Bale, Marion Cotillard, Jason C...
    published: 19 Jun 2009
    Play in Full Screen
    2:13
    PUBLIC ENEMIES - Billy's Capture
    COPYRIGHT UNIVERSAL PICTURES #publicenemies is a 2009 biographical crime drama film and ...
    published: 01 Feb 2024
    Play in Full Screen
    3:47
    Public Enemies - Bank Job
    Public Enemies is a 2009 American biographical crime drama film directed by Michael Mann w...
    published: 08 Jul 2020
    Play in Full Screen
    2:47
    Public Enemies (9/10) Movie CLIP - Defying the Law (2009) HD
    Public Enemies movie clips: http://j.mp/1Ja5Ap9 BUY THE MOVIE: http://amzn.to/s9S5wq Don't...
    published: 16 Jun 2011
    Play in Full Screen

    On the Run (novel series)

    On the Run is a series of children's novels written by Gordon Korman. It tells a story about two children who try to clear their parents' names, while they are also being hunted by the authorities themselves. The series has six books in total and was published in 2005 through 2006. The series also has a sequel series entitled Kidnapped, which follows the children after this series.

    Books

  • Chasing the Falconers — Aiden and Meg Falconer escape from Sunnydale juvenile detention farm to prove their parents are innocent by finding their Uncle Frank Lindenauer, a family friend.
  • The Fugitive Factor — The Falconers go to Boston and talk to Frank Lindenauer's former girlfriend, but Meg is captured and thrown in jail.
  • Now You See Them, Now You Don't — Aiden and Meg fly to Los Angeles and receive help from a street gang called the International Crew led by Bo.
  • The Stowaway Solution — The siblings stowaway on a ship to get closer to escape the police. They get captured on the ship but, escape on an inflatable raft. Meg gets purposely hit by a car to be able to get to the same hospital as Aiden and handcuffs Emmanuel Harris the FBI agent to a radiator while in the hospital.
  • '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×