'+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; })); }); -->

Destroyermen

The Destroyermen series is a series of alternate history books, written by American writer and historian Taylor Anderson. The ten books in the series so far are Into The Storm, Crusade, Maelstrom, Distant Thunders, Rising Tides, Firestorm, Iron Gray Sea, Storm Surge, Deadly Shores, and Straits of Hell.

The books chronicle the adventures of the crews of the destroyer USS Walker (DD-163) and the Japanese battlecruiser Amagi, in the early stages of the War in the Pacific during World War II, being transported to an alternate Earth. This earth is relatively the same geographically as the one they left, but evolution took a different turn eons ago.

Plot summary

Into The Storm

In Into The Storm, the story begins during the Second Battle of the Java Sea. The USS Walker (DD-163) is a destroyer of the United States Asiatic Fleet, commanded by Lieutenant Commander Matthew Reddy. The Walker was a part of the surviving ABDACOM fleet, consisting of the Royal Navy cruiser HMS Exeter, HMS Encounter, and the United States Navy destroyers Pope and Mahan, all of which were fleeing from Japanese Naval forces. However, the Japanese forces closed range, and opened up on the small Allied fleet. The Exeter took a major hit, and ordered the remaining four destroyers to leave the crippled cruiser.

Book

A book is a set of written, printed, illustrated, or blank sheets, made of ink, paper, parchment, or other materials, fastened together to hinge at one side. A single sheet within a book is a leaf, and each side of a leaf is a page. A set of text-filled or illustrated pages produced in electronic format is known as an electronic book, or e-book.

Books may also refer to works of literature, or a main division of such a work. In library and information science, a book is called a monograph, to distinguish it from serial periodicals such as magazines, journals or newspapers. The body of all written works including books is literature. In novels and sometimes other types of books (for example, biographies), a book may be divided into several large sections, also called books (Book 1, Book 2, Book 3, and so on). An avid reader of books is a bibliophile or colloquially, bookworm.

A shop where books are bought and sold is a bookshop or bookstore. Books can also be borrowed from libraries. Google has estimated that as of 2010, approximately 130,000,000 unique titles had been published. In some wealthier nations, printed books are giving way to the usage of electronic or e-books, though sales of e-books declined in the first half of 2015.

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Book

Musical theatre

Musical theatre is a form of theatrical performance that combines songs, spoken dialogue, acting, and dance. The story and emotional content of a musical – humor, pathos, love, anger – are communicated through the words, music, movement and technical aspects of the entertainment as an integrated whole. Although musical theatre overlaps with other theatrical forms like opera and dance, it may be distinguished by the equal importance given to the music as compared with the dialogue, movement and other elements. Since the early 20th century, musical theatre stage works have generally been called, simply, musicals.

Although music has been a part of dramatic presentations since ancient times, modern Western musical theatre emerged during the 19th century, with many structural elements established by the works of Gilbert and Sullivan in Britain and those of Harrigan and Hart in America. These were followed by the numerous Edwardian musical comedies and the musical theatre works of American creators like George M. Cohan. The Princess Theatre musicals and other smart shows like Of Thee I Sing (1931) were artistic steps forward beyond revues and other frothy entertainments of the early 20th century and led to such groundbreaking works as Show Boat (1927) and Oklahoma! (1943). Some of the most famous and iconic musicals through the decades that followed include West Side Story (1957), The Fantasticks (1960), Hair (1967), A Chorus Line (1975), Les Misérables (1985), The Phantom of the Opera (1986), Rent (1996), The Producers (2001) and Wicked (2003).

33⅓

33⅓ (Thirty-Three and a Third) is a series of books written about music albums, featuring one author per album. Published by Bloomsbury Publishing, the series was founded by David Barker, and is edited by Ally Jane Grossan. The series title refers to the speed (33⅓ revolutions per minute) of an LP album.

Published titles

As of January 2016, 110 books have been published.

[*] Intentionally mis-numbered

Forthcoming titles

  • Parallel Lines, by Kembrew McLeod, on the album by Blondie (1978)
  • Hangin' Tough, by Rebecca Wallwork, on the album by New Kids on the Block (1988)
  • Workingman’s Dead, by Buzz Poole, on the album by Grateful Dead (1970)
  • Dig Me Out, by Jovana Babović, on the album by Sleater-Kinney (1997)
  • The Geto Boys, by Rolf Potts, on the album by the Geto Boys (1990)
  • Psychocandy, by Paula Mejia, on the album by The Jesus and Mary Chain (1985)
  • Donny Hathaway Live, by Emily Lordi, on the live album by Donny Hathaway (1972)
  • The Raincoats, by Jenn Pelly, on the album by The Raincoats (1979)
  • 203 series

    The 203 series (203系) is an electric multiple unit (EMU) train type operated in Japan between 1982 and 2011 by Japanese National Railways (JNR) and later by East Japan Railway Company (JR East), and currently operated by KRL Jabodetabek in Indonesia and Philippine National Railways (PNR) in the Philippines.

    Operations

    The 203 series sets were on through services between the Joban Line and Tokyo Metro Chiyoda Line until they were replaced by E233-2000 series EMUs, and finally withdrawn from services in Japan in September 2011.

    Formation

    The sets were formed as follows.

    Cars 3, 6, and 9 were each fitted with one PS21 pantograph.

    Interior

  • Interior view, September 2007

  • Interior view, September 2007

  • Priority seating, November 2010

  • Priority seating, November 2010

    History

    Withdrawal

    The trains were gradually replaced by new E233-2000 series EMUs, and the last set ran in revenue service on 26 September 2011.

    Overseas operations

    Indonesia

    Five former 203 series sets have been sent to KRL Jabodetabek (KCJ) in Jakarta, Indonesia. All trains are in operation in the Jabodetabek area with 8 cars per set, due to the short platforms at most stations in Indonesia.

    281 series

    The 281 series (281系) is a DC electric multiple unit (EMU) train type operated by West Japan Railway Company (JR West). It was introduced on September 4, 1994 for passengers travelling to/from Kansai International Airport. Provisions are made for luggage racks and dedicated luggage room.

    Design

    Built jointly by Kinki Sharyo and Kawasaki Heavy Industries, the trains are used on the Haruka limited express service via the Kansai Airport Line in 3- or 6-car formations.

    Formations

    Sets are based at Hineno Depot, and are formed as shown below.

    6-car sets

    3-car sets

    Interior

  • 281 series standard-class interior

  • 281 series standard-class interior

  • 281 series Green (first class) car interior

  • 281 series Green (first class) car interior

    References

    External links

  • jr-odekake.net "Haruka 281 series" (Japanese)
  • JR Shikoku 7000 series

    The 7000 series (7000系) is an electric multiple unit (EMU) train type operated by Shikoku Railway Company (JR Shikoku) in Shikoku, Japan, since November 1990.

    Operations

    The sets are based at Takamatsu and Matsuyama depots, and operate on the Yosan Line and Dosan Line. The 7000 series can operate as single-car sets, but the 7100 subseries is single-ended, and must be operated coupled with another 7000 series unit. The sets are designed for use on wanman driver only operation services.

    Formations

    As of 1 April 2012, the fleet consists of 25 7000 series motored cars and 11 7100 series trailer cars.

    The "cMc" (7000 series) cars are fitted with one S-PS58 lozenge-type pantograph. The "Tc" (7100 series) trailer cars have no pantographs and can not operate alone.

  • Double-ended car 7017 at Iyoshi Station, January 2008

  • Double-ended car 7017 at Iyoshi Station, January 2008

  • Single-ended car 7111 at Kotohira Station, January 2008

  • Single-ended car 7111 at Kotohira Station, January 2008

    Podcasts:

    • The Book Designed To Cause NIGHTMARES

      published: 30 Nov 2023
    • 💨 Kids Read Aloud: THE MOST SERIOUS FART A Seriously Funny Book by Mike Bender and Chuck Dillon

      Meet Siegfried, a most serious fart who is sick and tired of farts being a laughing matter. What do you think will happen when he sets out on a most serious mission to change the fart as we know it? Come read with me to find out! THE MOST SERIOUS FART Written by Mike Bender Illustrated by Chuck Dillon You can find this book at my Amazon Store: https://www.amazon.com/shop/storytimeatawnieshouse Welcome back to Awnie's House, where we bring the magic of books to life through read-alouds for children. Here you'll find a wonderful selection of the best in kids literature for pre-school, kindergarten, first and second grade, and above (no one is ever too old to be read to!). Come join Awnie on fun adventures through storytime! These videos can be used at bedtime to supplement your family rea...

      published: 08 Apr 2024
    • DIY how to make small dairy ll mini note book ll cute notebook ll 😘🥰

      published: 15 Oct 2021
    • The Book Of Enoch: Movie 1 | The Fallen Angels Descent

      This movie offers a dramatic interpretation of the first and second sections of the Book of Enoch known as "The Book of the Watchers" and "The Book of Parables of Enoch". Ascribed to the ancient patriarch Enoch, The Book of Enoch is an ancient Hebrew religious text that reveals the origins of demons and Nephilim, hidden knowledge about angels, and why some angels fell from heaven. It also explains the moral necessity of the Genesis flood and offers prophetic visions of the Messiah’s reign. This video brings to life the story of the fallen angels, their descent to Earth, and the chaos they wrought upon humanity, combining dramatic visuals with compelling storytelling. It also portrays the powerful visions and revelations that Enoch received, revealing divine wisdom imparted by the Lord of...

      published: 13 Oct 2024
    • ⚾ No, David! | Animated (Kids Books Read Aloud)

      🍄 David is always getting into mischief. He is learning self-control. Enjoy this animated kid's book read aloud of, "No, David!" by David Shannon read by Miss Jill. #readaloud #storytime #kidsbooksonline Thank you a ton for watching my videos! Don't forget to subscribe to stay up-to-date on my latest releases. Subscribe here: https://bit.ly/storytimes ✨ #readaloud #kidsonlinevideobooks #kidsbooksonline 📚 See all my read-aloud books for purchase: https://amazon.com/shop/toadstoolsandfairydust 🛍️ Shop my favorite books by age! My Amazon store for tons of my favorite series for ALL ages! https://amazon.com/shop/toadstoolsandfairydust Connect with us on Facebook for even more magical content and behind-the-scenes fun! Join our community at Toadstools & Fairydust Facebook: https://face...

      published: 16 Sep 2024
    • I read 173 books but never saw this coming

      ⭐️instagram: https://www.instagram.com/haleypham/ ⭐️merch: https://haleypham.com/ ⭐️brand inquiries: haleyphamteam@unitedtalent.com

      published: 22 Nov 2022
    • The Pigeon HAS to Go to School! - Animated Read Aloud Book

      by Mo Willems (Author, Illustrator) Publisher ‏ : ‎ Hyperion Books for Children Why does the Pigeon have to go to school? He already knows everything! And what if he doesn't like it? What if the teacher doesn't like him? What if he learns TOO MUCH!?! Ask not for whom the school bell rings; it rings for the Pigeon! Subscribe to Reading is Here: https://www.youtube.com/channel/UC0MXCIEspd1cBXivnaeVRTQ?sub_confirmation=1 You can show your support by purchasing me a coffee ☕️https://www.buymeacoffee.com/youtubereab If you have any wishes or suggestions write here: youtubereadingis@yahoo.com Support the authors, take your copies and let's read together! You can purchase this book on Amazon : https://www.amazon.ca/shop/readingis/list/6PRGU4TXY93I?ref_=aip_sf_list_spv_ons_mixed_d #kidsani...

      published: 25 Aug 2023
    • Books w the best Opening Lines

      published: 11 May 2023
    • How do you read a book every day? #booktube

      published: 11 Sep 2023
    • popular vs. unpopular books! #reading #booktok #bookrec #reading #aesthetic

      published: 07 Mar 2023
    developed with YouTube
    The Book Designed To Cause NIGHTMARES
    1:01

    The Book Designed To Cause NIGHTMARES

    • Order:
    • Duration: 1:01
    • Uploaded Date: 30 Nov 2023
    • views: 22252243
    https://wn.com/The_Book_Designed_To_Cause_Nightmares
    💨 Kids Read Aloud: THE MOST SERIOUS FART A Seriously Funny Book by Mike Bender and Chuck Dillon
    6:59

    💨 Kids Read Aloud: THE MOST SERIOUS FART A Seriously Funny Book by Mike Bender and Chuck Dillon

    • Order:
    • Duration: 6:59
    • Uploaded Date: 08 Apr 2024
    • views: 1461639
    Meet Siegfried, a most serious fart who is sick and tired of farts being a laughing matter. What do you think will happen when he sets out on a most serious mission to change the fart as we know it? Come read with me to find out! THE MOST SERIOUS FART Written by Mike Bender Illustrated by Chuck Dillon You can find this book at my Amazon Store: https://www.amazon.com/shop/storytimeatawnieshouse Welcome back to Awnie's House, where we bring the magic of books to life through read-alouds for children. Here you'll find a wonderful selection of the best in kids literature for pre-school, kindergarten, first and second grade, and above (no one is ever too old to be read to!). Come join Awnie on fun adventures through storytime! These videos can be used at bedtime to supplement your family read-alouds, in the classroom, or on the go. Together we can instill a love of learning and teach children the joy that books can bring. Welcome to our reading family! Please support the authors and publishers of these amazing books by purchasing a copy for your home library. There's nothing like holding an actual book in your hand and turning its pages to fully experience the story. These are books your family will treasure and read over and over again! Thank you so very much for watching! Don't forget to subscribe to stay up-to-date on my latest videos. Subscribe here: https://goo.gl/i228Rr #themostseriousfart #readaloud #kidsbooksreadaloud #kidsbooks Follow me on: Instagram @awnieshouse Facebook @awnieshouse Twitter @awnieshouse
    https://wn.com/💨_Kids_Read_Aloud_The_Most_Serious_Fart_A_Seriously_Funny_Book_By_Mike_Bender_And_Chuck_Dillon
    DIY how to make small dairy ll mini note book ll cute notebook ll 😘🥰
    0:26

    DIY how to make small dairy ll mini note book ll cute notebook ll 😘🥰

    • Order:
    • Duration: 0:26
    • Uploaded Date: 15 Oct 2021
    • views: 10893295
    https://wn.com/Diy_How_To_Make_Small_Dairy_Ll_Mini_Note_Book_Ll_Cute_Notebook_Ll_😘🥰
    The Book Of Enoch: Movie 1 | The Fallen Angels Descent
    1:21:05

    The Book Of Enoch: Movie 1 | The Fallen Angels Descent

    • Order:
    • Duration: 1:21:05
    • Uploaded Date: 13 Oct 2024
    • views: 2577448
    This movie offers a dramatic interpretation of the first and second sections of the Book of Enoch known as "The Book of the Watchers" and "The Book of Parables of Enoch". Ascribed to the ancient patriarch Enoch, The Book of Enoch is an ancient Hebrew religious text that reveals the origins of demons and Nephilim, hidden knowledge about angels, and why some angels fell from heaven. It also explains the moral necessity of the Genesis flood and offers prophetic visions of the Messiah’s reign. This video brings to life the story of the fallen angels, their descent to Earth, and the chaos they wrought upon humanity, combining dramatic visuals with compelling storytelling. It also portrays the powerful visions and revelations that Enoch received, revealing divine wisdom imparted by the Lord of Spirits. Enoch's prophetic messages are both profound and far-reaching, speaking to the righteous and the sinners alike. He calls upon people—both from the past and the future—to listen to the wisdom he has been entrusted with. The Book of Enoch offers a crucial perspective on the connection between angels, gods, and humanity. If you enjoyed "The Book of Enoch: Movie 1 | The Fallen Angels Descent", don't forget to like this video and subscribe to our channel for more epic interpretations of ancient texts! Share this movie with your friends and family to spread the mystery and knowledge of the Book of Enoch. Go here https://bit.ly/3TOQ4Kx to grab your FREE eBook on using ancient knowledge to manifest your greatest desires. Watch The Book Of Enoch Full Movie 👉 https://www.youtube.com/watch?v=Zt_HPic3_Sk&list=PLoO9dbLxc9K20nKOze29biBnwU_0--_3x SUBSCRIBE for more movies: https://www.youtube.com/channel/UCxAt0KkZZUxgG3yxl-WDM2A/?sub_confirmation=1 #bookofenoch #enoch #movie
    https://wn.com/The_Book_Of_Enoch_Movie_1_|_The_Fallen_Angels_Descent
    ⚾ No, David! | Animated (Kids Books Read Aloud)
    2:26

    ⚾ No, David! | Animated (Kids Books Read Aloud)

    • Order:
    • Duration: 2:26
    • Uploaded Date: 16 Sep 2024
    • views: 2374167
    🍄 David is always getting into mischief. He is learning self-control. Enjoy this animated kid's book read aloud of, "No, David!" by David Shannon read by Miss Jill. #readaloud #storytime #kidsbooksonline Thank you a ton for watching my videos! Don't forget to subscribe to stay up-to-date on my latest releases. Subscribe here: https://bit.ly/storytimes ✨ #readaloud #kidsonlinevideobooks #kidsbooksonline 📚 See all my read-aloud books for purchase: https://amazon.com/shop/toadstoolsandfairydust 🛍️ Shop my favorite books by age! My Amazon store for tons of my favorite series for ALL ages! https://amazon.com/shop/toadstoolsandfairydust Connect with us on Facebook for even more magical content and behind-the-scenes fun! Join our community at Toadstools & Fairydust Facebook: https://facebook.com/toadstoolsandfairydust Thank you so much for tuning in to enjoy my videos! If you loved what you watched, Remember to subscribe to my channel so you never miss out on our latest releases. Click the link above ⬆️ It's free! Stay tuned for more enchanting adventures! 🍄✨
    https://wn.com/⚾_No,_David_|_Animated_(Kids_Books_Read_Aloud)
    I read 173 books but never saw this coming
    0:27

    I read 173 books but never saw this coming

    • Order:
    • Duration: 0:27
    • Uploaded Date: 22 Nov 2022
    • views: 9170063
    ⭐️instagram: https://www.instagram.com/haleypham/ ⭐️merch: https://haleypham.com/ ⭐️brand inquiries: haleyphamteam@unitedtalent.com
    https://wn.com/I_Read_173_Books_But_Never_Saw_This_Coming
    The Pigeon HAS to Go to School! - Animated Read Aloud Book
    5:46

    The Pigeon HAS to Go to School! - Animated Read Aloud Book

    • Order:
    • Duration: 5:46
    • Uploaded Date: 25 Aug 2023
    • views: 1145473
    by Mo Willems (Author, Illustrator) Publisher ‏ : ‎ Hyperion Books for Children Why does the Pigeon have to go to school? He already knows everything! And what if he doesn't like it? What if the teacher doesn't like him? What if he learns TOO MUCH!?! Ask not for whom the school bell rings; it rings for the Pigeon! Subscribe to Reading is Here: https://www.youtube.com/channel/UC0MXCIEspd1cBXivnaeVRTQ?sub_confirmation=1 You can show your support by purchasing me a coffee ☕️https://www.buymeacoffee.com/youtubereab If you have any wishes or suggestions write here: youtubereadingis@yahoo.com Support the authors, take your copies and let's read together! You can purchase this book on Amazon : https://www.amazon.ca/shop/readingis/list/6PRGU4TXY93I?ref_=aip_sf_list_spv_ons_mixed_d #kidsanimatedbooks #thepigeonhastogotoschool #pigeon #school #back to school #first day of school #readaloud #storytime #kidsbooksonline #readingis #nighttimestory #fairytales #thepigeonhastogotoschoolbymowillems Thank you so much for watching! I hope you enjoyed this video. Don't forget to subscribe to stay tuned for another latest videos. Much love to you all! ♥ @readingis
    https://wn.com/The_Pigeon_Has_To_Go_To_School_Animated_Read_Aloud_Book
    Books w the best Opening Lines
    0:16

    Books w the best Opening Lines

    • Order:
    • Duration: 0:16
    • Uploaded Date: 11 May 2023
    • views: 921367
    https://wn.com/Books_W_The_Best_Opening_Lines
    How do you read a book every day? #booktube
    0:31

    How do you read a book every day? #booktube

    • Order:
    • Duration: 0:31
    • Uploaded Date: 11 Sep 2023
    • views: 1618246
    https://wn.com/How_Do_You_Read_A_Book_Every_Day_Booktube
    popular vs. unpopular books! #reading #booktok #bookrec #reading #aesthetic
    0:22

    popular vs. unpopular books! #reading #booktok #bookrec #reading #aesthetic

    • Order:
    • Duration: 0:22
    • Uploaded Date: 07 Mar 2023
    • views: 1054220
    https://wn.com/Popular_Vs._Unpopular_Books_Reading_Booktok_Bookrec_Reading_Aesthetic
    • Broadway's 'Frozen' cast performs 'For the First Time in Forever'

      The cast of Broadway's new "Frozen" musical give a special performance of the fan-favorite song just for "GMA." https://www.goodmorningamerica.com/culture WATCH FULL EPISODES: http://abc.go.com/shows/good-morning-america Visit Good Morning America’s Homepage: https://www.goodmorningamerica.com/

      published: 30 May 2018
    • Matilda Jr | Revolting Children | TKA Theatre Co

      To see more of The King's Academy's "Matilda Jr.", click here: https://www.youtube.com/watch?v=YgQKrQ-rzio&list=PLzvdeRjhZpVnmmzJtUmLDrE5ye7VW8wXa ! TKA Theatre Company and the Smith Family Conservatory of the Arts recently produced the junior musical, "Matilda"! TKA’s Smith Family Conservatory of the Arts, a two-time American High School Theatre Festival award-winning fine arts program, is led by Mr. Kyle Schnack (Artistic Director, Theatre Arts, Musical Theater, Department Chair), Mrs. Catherine Mitil (Director of Vocal Arts), Mrs. Cathy Higgins (Director of Dance- Ballet, Tap, Modern and Jazz), Mr. Douglas Gawriljuk (Dance- Ballet and Modern), Mr. Brad Majzner (Stagecraft & Technical Director), Mr. Wes Lowe (Director of Instrumental Arts), Mr. Andrew Jeffrey (Instrumental Arts Str...

      published: 13 Jul 2022
    • CrEePy OlD gUy

      Beetlejuice Beetlejuice Beetlejuice

      published: 21 Jun 2020
    • Famous People Who Started on Broadway - Part 2 #musical #singer #shorts #broadway

      published: 25 Jun 2022
    • Here to show us EXACTLY how it’s done: Welcome Matilda The Musical! | Semi-Finals | BGT

      Jetting in direct from London’s West End it’s the amazing cast of Matilda The Musical! Watch as they treat us to an incredible performance taken from their hit show, and remind our Semi-Finalists just how wonderful a life on the stage could be... See more from Britain's Got Talent at http://itv.com/talent SUBSCRIBE: http://bit.ly/BGTsub Facebook: http://www.facebook.com/BGT Twitter: http://twitter.com/BGT

      published: 28 May 2018
    • The Most Expensive Musical of All Time? #singer #musical #shorts

      published: 10 Mar 2022
    • Veronica being the best character in Heathers for almost a minute 😭💀

      #heather #heathersthemusical #byler #robinbuckley #sadiesink #milliebobbybrown #strangerthings #strangerthings4 #strangerthingsedit #viral #shorts #broadway

      published: 20 Nov 2022
    • Best of the Pop Songs | Sing & Sing 2 | TUNE

      We love all the pop songs in Sing and Sing 2, so we put together our favourite, with performances from Halsey, Reese Witherspoon and more! Watch the full movies here: Sing: https://www.uphe.com/movies/sing Sing 2: https://www.uphe.com/movies/sing-2 Sing is an American CGI-animated musical franchise created by Garth Jennings and produced by Illumination. It features the voice talents of Matthew McConaughey, Reese Witherspoon, Scarlett Johansson, Nick Kroll, Taron Egerton, and Tori Kelly among others. In the original Sing, a koala named Buster Moon decides to hold a singing competition to get it out of debt. In Sing 2, Buster Moon and his gang now have their sights set on debuting a new show at the Crystal Tower Theater in glamorous Redshore City. But without connections, he and his sin...

      published: 13 Dec 2023
    • We can't get enough of Aaron Tveit! #shorts

      What roll would you like to see Aaron in next? #shortvideo #broadway #theatre #moulinrouge

      published: 08 Jul 2022
    • Musical Theatre Moments that Always give me CHILLS

      Compilation of Musical Theatre Moments that are Chill-Inducing. Enjoy :D As always, here are the timestamps 0:00 El Tango de Roxanne (Aaron Tveit) - Moulin Rouge! 0:36 Don’t Rain on My Parade (Lea Michele) - Funny Girl 1:02 Cabaret (Amy Lennox) - Cabaret 1:23 Til I Hear You Sing (Ramin Karimloo) - Love Never Dies 1:59 The Bells of Notre Dame (Paper Mill cast) - The Hunchback of Notre Dame 2:39 The Winner Takes It All (Carolee Carmello) - Mamma Mia! 3:03 Yorktown (The World Turned Upside Down) (Hamilton Broadway Original Cast) 3:38 Totally Fu***d (Spring Awakening Broadway Cast) 4:32 Part of Your World (Reprise) (Sierra Boggess) - The Little Mermaid 5:01 Out There (Joshua Castille and E.J. Cardona) - The Hunchback of Notre Dame 5:19 If I Can't Love Her (Ryan Everett Wood) - Beauty and th...

      published: 26 Jan 2024
    developed with YouTube
    Broadway's 'Frozen' cast performs 'For the First Time in Forever'
    5:19

    Broadway's 'Frozen' cast performs 'For the First Time in Forever'

    • Order:
    • Duration: 5:19
    • Uploaded Date: 30 May 2018
    • views: 8408584
    The cast of Broadway's new "Frozen" musical give a special performance of the fan-favorite song just for "GMA." https://www.goodmorningamerica.com/culture WATCH FULL EPISODES: http://abc.go.com/shows/good-morning-america Visit Good Morning America’s Homepage: https://www.goodmorningamerica.com/
    https://wn.com/Broadway's_'Frozen'_Cast_Performs_'For_The_First_Time_In_Forever'
    Matilda Jr | Revolting Children | TKA Theatre Co
    6:07

    Matilda Jr | Revolting Children | TKA Theatre Co

    • Order:
    • Duration: 6:07
    • Uploaded Date: 13 Jul 2022
    • views: 14835686
    To see more of The King's Academy's "Matilda Jr.", click here: https://www.youtube.com/watch?v=YgQKrQ-rzio&list=PLzvdeRjhZpVnmmzJtUmLDrE5ye7VW8wXa ! TKA Theatre Company and the Smith Family Conservatory of the Arts recently produced the junior musical, "Matilda"! TKA’s Smith Family Conservatory of the Arts, a two-time American High School Theatre Festival award-winning fine arts program, is led by Mr. Kyle Schnack (Artistic Director, Theatre Arts, Musical Theater, Department Chair), Mrs. Catherine Mitil (Director of Vocal Arts), Mrs. Cathy Higgins (Director of Dance- Ballet, Tap, Modern and Jazz), Mr. Douglas Gawriljuk (Dance- Ballet and Modern), Mr. Brad Majzner (Stagecraft & Technical Director), Mr. Wes Lowe (Director of Instrumental Arts), Mr. Andrew Jeffrey (Instrumental Arts Strings, Piano), Mrs. Patricia Holland (Piano), Mr. Austin Parenti (Media Arts Director), Mr. Timothy DeMoss (Media Arts, Photography), Mr. Phillip King (Media Arts), and Ms. Sarah Best (Visual Arts). More information about The King's Academy is available at http://www.TKA.net and http://www.TKAFineArts.net. Copyright, The King's Academy, Inc., 2022. All rights reserved.
    https://wn.com/Matilda_Jr_|_Revolting_Children_|_Tka_Theatre_Co
    CrEePy OlD gUy
    0:12

    CrEePy OlD gUy

    • Order:
    • Duration: 0:12
    • Uploaded Date: 21 Jun 2020
    • views: 1752711
    Beetlejuice Beetlejuice Beetlejuice
    https://wn.com/Creepy_Old_Guy
    Famous People Who Started on Broadway - Part 2 #musical #singer #shorts #broadway
    0:36

    Famous People Who Started on Broadway - Part 2 #musical #singer #shorts #broadway

    • Order:
    • Duration: 0:36
    • Uploaded Date: 25 Jun 2022
    • views: 156698
    https://wn.com/Famous_People_Who_Started_On_Broadway_Part_2_Musical_Singer_Shorts_Broadway
    Here to show us EXACTLY how it’s done: Welcome Matilda The Musical! | Semi-Finals | BGT
    2:55

    Here to show us EXACTLY how it’s done: Welcome Matilda The Musical! | Semi-Finals | BGT

    • Order:
    • Duration: 2:55
    • Uploaded Date: 28 May 2018
    • views: 4874863
    Jetting in direct from London’s West End it’s the amazing cast of Matilda The Musical! Watch as they treat us to an incredible performance taken from their hit show, and remind our Semi-Finalists just how wonderful a life on the stage could be... See more from Britain's Got Talent at http://itv.com/talent SUBSCRIBE: http://bit.ly/BGTsub Facebook: http://www.facebook.com/BGT Twitter: http://twitter.com/BGT
    https://wn.com/Here_To_Show_US_Exactly_How_It’S_Done_Welcome_Matilda_The_Musical_|_Semi_Finals_|_Bgt
    The Most Expensive Musical of All Time? #singer #musical #shorts
    0:52

    The Most Expensive Musical of All Time? #singer #musical #shorts

    • Order:
    • Duration: 0:52
    • Uploaded Date: 10 Mar 2022
    • views: 1857474
    https://wn.com/The_Most_Expensive_Musical_Of_All_Time_Singer_Musical_Shorts
    Veronica being the best character in Heathers for almost a minute 😭💀
    0:46

    Veronica being the best character in Heathers for almost a minute 😭💀

    • Order:
    • Duration: 0:46
    • Uploaded Date: 20 Nov 2022
    • views: 1332827
    #heather #heathersthemusical #byler #robinbuckley #sadiesink #milliebobbybrown #strangerthings #strangerthings4 #strangerthingsedit #viral #shorts #broadway
    https://wn.com/Veronica_Being_The_Best_Character_In_Heathers_For_Almost_A_Minute_😭💀
    Best of the Pop Songs | Sing & Sing 2 | TUNE
    9:28

    Best of the Pop Songs | Sing & Sing 2 | TUNE

    • Order:
    • Duration: 9:28
    • Uploaded Date: 13 Dec 2023
    • views: 1693961
    We love all the pop songs in Sing and Sing 2, so we put together our favourite, with performances from Halsey, Reese Witherspoon and more! Watch the full movies here: Sing: https://www.uphe.com/movies/sing Sing 2: https://www.uphe.com/movies/sing-2 Sing is an American CGI-animated musical franchise created by Garth Jennings and produced by Illumination. It features the voice talents of Matthew McConaughey, Reese Witherspoon, Scarlett Johansson, Nick Kroll, Taron Egerton, and Tori Kelly among others. In the original Sing, a koala named Buster Moon decides to hold a singing competition to get it out of debt. In Sing 2, Buster Moon and his gang now have their sights set on debuting a new show at the Crystal Tower Theater in glamorous Redshore City. But without connections, he and his singers must convince the ruthless media mogul Jimmy Crystal and pitch the idea of casting the lion rock legend Clay Calloway in their show. Buster must embark on a quest to find the now-reclusive Clay and persuade him to return to the stage. Welcome to TUNE, a channel that celebrates the musical moments in film. From the movie musicals to the musical biopic, we'll be bringing you iconic scenes and the tunes you love! Subscribe here: / @tunemusicalmoments #sing #tune #singmovie #musicals #musicaltheatre
    https://wn.com/Best_Of_The_Pop_Songs_|_Sing_Sing_2_|_Tune
    We can't get enough of Aaron Tveit! #shorts
    0:35

    We can't get enough of Aaron Tveit! #shorts

    • Order:
    • Duration: 0:35
    • Uploaded Date: 08 Jul 2022
    • views: 157656
    What roll would you like to see Aaron in next? #shortvideo #broadway #theatre #moulinrouge
    https://wn.com/We_Can't_Get_Enough_Of_Aaron_Tveit_Shorts
    Musical Theatre Moments that Always give me CHILLS
    15:54

    Musical Theatre Moments that Always give me CHILLS

    • Order:
    • Duration: 15:54
    • Uploaded Date: 26 Jan 2024
    • views: 474778
    Compilation of Musical Theatre Moments that are Chill-Inducing. Enjoy :D As always, here are the timestamps 0:00 El Tango de Roxanne (Aaron Tveit) - Moulin Rouge! 0:36 Don’t Rain on My Parade (Lea Michele) - Funny Girl 1:02 Cabaret (Amy Lennox) - Cabaret 1:23 Til I Hear You Sing (Ramin Karimloo) - Love Never Dies 1:59 The Bells of Notre Dame (Paper Mill cast) - The Hunchback of Notre Dame 2:39 The Winner Takes It All (Carolee Carmello) - Mamma Mia! 3:03 Yorktown (The World Turned Upside Down) (Hamilton Broadway Original Cast) 3:38 Totally Fu***d (Spring Awakening Broadway Cast) 4:32 Part of Your World (Reprise) (Sierra Boggess) - The Little Mermaid 5:01 Out There (Joshua Castille and E.J. Cardona) - The Hunchback of Notre Dame 5:19 If I Can't Love Her (Ryan Everett Wood) - Beauty and the Beast 5:38 Once And For All (Disney's Newsies the Broadway Musical 2017 Cast) 6:18 Goodbye (Aaron Tveit) - Catch Me if You Can 6:41: Quartet at the Ballet (Broadway Original Cast of Anastasia) 7:02 Legally Blonde Remix (MTV Recording of Legally Blonde) 7:46 The Phantom Of The Opera (Sierra Boggess and Ramin Karimloo) - The Phantom Of The Opera 8:02 Circle of Life (The Lion King Broadway Cast) 8:21 Wait for Me (Reprise) (Eva Noblezada) - Hadestown 8:47 Soul of a Man (Stark Sands) - Kinky Boots 9:00 One Day More (Les Misérables: The Dream Cast in Concert with 17 Jean Valjeans around the world) 10:04 The Movie in My Mind (Eva Noblezada) - Miss Saigon 10:20 Opening Sequence: The New World (Solea Pfeiffer) - Songs for a New World 10:27 Hans of the Southern Isles (Ryan McCartan) - Frozen 10:37 Everything to Win (Derek Klena) - Anastasia 10:51 He Lives in You (Reprise) (The Lion King West End Cast) 11:58 Defying Gravity (Danna Paola) - Wicked Mexico 12:30 Down Once More /Track Down This Murderer (Sierra Boggess and Hadley Fraser) 12:53 Rent (Will Chase and Adam Kantor for Rent: Filmed Live on Broadway) 13:24 Revolting Children (Matilda Broadway Cast) 13:53 Journey to the Past (Christy Altomare) - Anastasia 14:29 Ex-Wives (Six West End Original Cast) 15:08 Finale - Do You Hear The People Sing? (Reprise) (Do Les Misérables: The Dream Cast in Concert)
    https://wn.com/Musical_Theatre_Moments_That_Always_Give_Me_Chills
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    The Book Designed To Cause NIGHTMARES

    1:01
    The Book Designed To Cause NIGHTMARES
    published: 30 Nov 2023
    Play in Full Screen
    6:59
    💨 Kids Read Aloud: THE MOST SERIOUS FART A Seriously Funny Book by Mike Bender and Chuck Dillon
    Meet Siegfried, a most serious fart who is sick and tired of farts being a laughing matter...
    published: 08 Apr 2024
    Play in Full Screen
    0:26
    DIY how to make small dairy ll mini note book ll cute notebook ll 😘🥰
    published: 15 Oct 2021
    Play in Full Screen
    1:21:05
    The Book Of Enoch: Movie 1 | The Fallen Angels Descent
    This movie offers a dramatic interpretation of the first and second sections of the Book o...
    published: 13 Oct 2024
    Play in Full Screen
    2:26
    ⚾ No, David! | Animated (Kids Books Read Aloud)
    🍄 David is always getting into mischief. He is learning self-control. Enjoy this animated ...
    published: 16 Sep 2024
    Play in Full Screen
    0:27
    I read 173 books but never saw this coming
    ⭐️instagram: https://www.instagram.com/haleypham/ ⭐️merch: https://haleypham.com/ ⭐️bra...
    published: 22 Nov 2022
    Play in Full Screen
    5:46
    The Pigeon HAS to Go to School! - Animated Read Aloud Book
    by Mo Willems (Author, Illustrator) Publisher ‏ : ‎ Hyperion Books for Children Why does ...
    published: 25 Aug 2023
    Play in Full Screen
    0:16
    Books w the best Opening Lines
    published: 11 May 2023
    Play in Full Screen
    0:31
    How do you read a book every day? #booktube
    published: 11 Sep 2023
    Play in Full Screen
    0:22
    popular vs. unpopular books! #reading #booktok #bookrec #reading #aesthetic
    published: 07 Mar 2023
    Play in Full Screen

    Destroyermen

    The Destroyermen series is a series of alternate history books, written by American writer and historian Taylor Anderson. The ten books in the series so far are Into The Storm, Crusade, Maelstrom, Distant Thunders, Rising Tides, Firestorm, Iron Gray Sea, Storm Surge, Deadly Shores, and Straits of Hell.

    The books chronicle the adventures of the crews of the destroyer USS Walker (DD-163) and the Japanese battlecruiser Amagi, in the early stages of the War in the Pacific during World War II, being transported to an alternate Earth. This earth is relatively the same geographically as the one they left, but evolution took a different turn eons ago.

    Plot summary

    Into The Storm

    In Into The Storm, the story begins during the Second Battle of the Java Sea. The USS Walker (DD-163) is a destroyer of the United States Asiatic Fleet, commanded by Lieutenant Commander Matthew Reddy. The Walker was a part of the surviving ABDACOM fleet, consisting of the Royal Navy cruiser HMS Exeter, HMS Encounter, and the United States Navy destroyers Pope and Mahan, all of which were fleeing from Japanese Naval forces. However, the Japanese forces closed range, and opened up on the small Allied fleet. The Exeter took a major hit, and ordered the remaining four destroyers to leave the crippled cruiser.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Broadway's 'Frozen' cast performs 'For the First Time in Forever'

    The cast of Broadway's new "Frozen" musical give a special performance of the fan-favorite song just for "GMA." https://www.goodmorningamerica.com/culture WATCH FULL EPISODES: http://abc.go.com/shows/good-morning-america Visit Good Morning America’s Homepage: https://www.goodmorningamerica.com/
    5:19
    Broadway's 'Frozen' cast performs 'For the First Time in Forever'
    The cast of Broadway's new "Frozen" musical give a special performance of the fan-favorite...
    published: 30 May 2018
    Play in Full Screen
    6:07
    Matilda Jr | Revolting Children | TKA Theatre Co
    To see more of The King's Academy's "Matilda Jr.", click here: https://www.youtube.com/wat...
    published: 13 Jul 2022
    Play in Full Screen
    0:12
    CrEePy OlD gUy
    Beetlejuice Beetlejuice Beetlejuice
    published: 21 Jun 2020
    Play in Full Screen
    0:36
    Famous People Who Started on Broadway - Part 2 #musical #singer #shorts #broadway
    published: 25 Jun 2022
    Play in Full Screen
    2:55
    Here to show us EXACTLY how it’s done: Welcome Matilda The Musical! | Semi-Finals | BGT
    Jetting in direct from London’s West End it’s the amazing cast of Matilda The Musical! Wa...
    published: 28 May 2018
    Play in Full Screen
    0:52
    The Most Expensive Musical of All Time? #singer #musical #shorts
    published: 10 Mar 2022
    Play in Full Screen
    0:46
    Veronica being the best character in Heathers for almost a minute 😭💀
    #heather #heathersthemusical #byler #robinbuckley #sadiesink #milliebobbybrown #strangerth...
    published: 20 Nov 2022
    Play in Full Screen
    9:28
    Best of the Pop Songs | Sing & Sing 2 | TUNE
    We love all the pop songs in Sing and Sing 2, so we put together our favourite, with perfo...
    published: 13 Dec 2023
    Play in Full Screen
    0:35
    We can't get enough of Aaron Tveit! #shorts
    What roll would you like to see Aaron in next? #shortvideo #broadway #theatre #moulinrouge...
    published: 08 Jul 2022
    Play in Full Screen
    15:54
    Musical Theatre Moments that Always give me CHILLS
    Compilation of Musical Theatre Moments that are Chill-Inducing. Enjoy :D As always, here ...
    published: 26 Jan 2024
    Play in Full Screen
    '); } 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)); } }); }); }); // -->
    ×