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

The Book

The Book can refer to:

  • The Book: On the Taboo Against Knowing Who You Are, a 1966 book by Alan Watts
  • "The Book" (short story), an unfinished, fragmentary short story by H. P. Lovecraft
  • The Bible, especially a Tyndale House edition of the New Living Translation published as "The Book"
  • The Qur’ān (Arabic: القرآن al-qur'ān, literally "the recitation")
  • Indian mystic Meher Baba's missing book
  • The telephone book
  • Paul Erdős' concept of "The Book" in which God maintains the most elegant proofs from THE BOOK of mathematical theorems
  • The second part of The Revelation of Arès, a publication of a 20th-century religious movement founded by Michel Potay
  • The Book (EP), an EP by D-Sisive
  • As referred to in works of fiction, The Book may be

  • Goldstein's book, from George Orwell's novel 1984
  • The Hitchhiker's Guide to the Galaxy (fictional)
  • The Book (Time Warp Trio), a fictional item from the book and television series
  • See also

  • Book (disambiguation)
  • The Books, an American music group
  • The Book (album)

    The Book is album by Czech black metal group Root.

    Track listing

  • All Lyrics by Jiří "Big Boss" Valter. Music as noted.
  • "The Book" (Petr "Blackie" Hošek) 5:52
  • "The Mystical Words Of The Wise" (Jiří "Big Boss" Valter) 6:07
  • "The Curse - Durron" (Jiří "Big Boss" Valter) 6:22
  • "Why?" (Petr "Blackie" Hošek, Aleš "Alesh A.D." Dostál) 3:20
  • "Corabeu - Part One" (Jiří "Big Boss" Valter) 4:07
  • "Corabeu - Part Two" (Petr "Blackie" Hošek)5:04
  • "The Birth" (Aleš "Alesh A.D." Dostál) 4:38
  • "Lykorian" (Jiří "Big Boss" Valter) 3:48
  • "The Message Of The Time" (Petr "Blackie" Hošek) 7:46
  • "Remember Me!" (Aleš "Alesh A.D." Dostál) 3:41
  • "Darkoutro - ... Toccata - prestissimo molto" (Jiří "Big Boss" Valter, Milan Valter) 4:51
  • Personnel

  • Jiří "Big Boss" Valter - vocals
  • Petr "Blackie" Hošek - guitars, bass
  • Aleš "Alesh A.D." Dostál - guitars, bass
  • René "Evil" Kostelňák - drums
  • Marek "Ashok" Šmerda - lead guitars
  • References

    External links

  • The Hitchhiker's Guide to the Galaxy (fictional)

    The Hitchhiker's Guide to the Galaxy is a fictional electronic guide book in the multimedia scifi/comedy series of the same name by Douglas Adams. The Guide serves as "the standard repository for all knowledge and wisdom" for many members of the series' galaxy-spanning civilization. Entries from the guidebook are used as comic narration to bridge events and provide background information in every version of the story. The guide is published by "Megadodo Publications", a publishing company on Ursa Minor Beta.

    In the original radio scripts, the Guide's voice was called the "Narrator" and in the 2004–2005 series, "The Voice." For all of the radio series and the 1981 TV series, the role was credited as "The Book", though this was changed to "Narrator/The Guide" for the 2005 movie.

    In the first two phases of the radio series, the LP album adaptations of the first radio series and in the television series, the Guide was voiced by British actor Peter Jones. During the 2004–2005 radio series, The Guide was voiced by William Franklyn. In the film version, it was voiced by Stephen Fry.

    Podcasts:

    Matching books:

    • The Book - The Ultimate Guide to Rebuilding a Civilization Exclusive Kit Pledge Unboxing

      It has been a while, but here is another unboxing type video. I backed a project on Kickstarter some time ago, and it finally arrived. It's The Book by Timur, and its purpose is to jump-start society after an apocalyptic event. I like books like this, as well as artbooks and the like so I was interested enough to put some money into it. The pledge level I selected included The Book itself, a digital copy, a gift box, A1 sized poster, and a bookmark. It also came with some stickers. I haven't received my slipcase or playing cards yet, unfortunately. Those were add-ons, so they'll probably ship later, assuming they didn't forget to send this to me. It is quite extensive, this book. Fairly large too. It doesn't go too in-depth and is only intended as a (mostly serious) overview. A s...

      published: 26 Apr 2023
    • Hungry Minds: The Book

      This is genuinely one of the most beautifully illustrated books I own, and the broad range of topics inside makes it a great way to encourage my kids to learn. Use the link https://tinyurl.com/9a3bn4fn and the code GREENBOOK10 for 10% off. https://www.youtube.com/@HungryMindsArt

      published: 28 Aug 2024
    • 📖 Learn history with "The Book: The Ultimate Guide To Rebuilding A Civilization" by Hungry Minds

      Picture books are not just for children. ~ Thank you for watching ~ ―――― ~ Find me elsewhere ~ Goodreads: https://www.goodreads.com/chaletaah Letterboxd: https://letterboxd.com/Chaletaah/ Neonmob: https://www.neonmob.com/creator/lheari ―――― ~ Support the channel ~ Amazon Wishlist: https://www.amazon.de/hz/wishlist/ls/3FEJR4XWJ25JA?ref_=wl_share ―――― ~ Business inquiries ~ chaletaah97@gmail.com ―――― ~ unpaid book advertising ~ ――――

      published: 02 Jan 2024
    • Unlocking the unique world of "The Book: The Ultimate Guide to Rebuilding Civilization" | Review

      ⚙️ Steampunk and whimsy meet technology and survival guide in this delightful blend of history, humor and how-to! 🔗 Links: ➤ Publisher direct: https://howtorebuildcivilization.com/BEAUTIFUL ➤ Amazon (affiliate link - I may be compensated if you purchase through this link): https://amzn.to/4ajRgxa ➤ Full review on my website: https://beautifulbooks.info/2023/12/rebuilding-civilization-review/ * Update March 2024 - the page on Sex Toys has been removed from The Book - so if you actually want this part included, you'll have to search out an earlier copy! 📃 Disclaimer - I was sent a review copy of this publication, but this does not affect my review and my content is not sponsored. I actually had my eye on this book back when it was on Kickstarter but couldn't deal with the international po...

      published: 13 Dec 2023
    • Adam Savage Delighted by This Illustrated Guide to Rebuilding Civilization

      After being recommended this coffee table book by the algorithm in Adam's feed, he's pleasantly surprised to be delighted by the illustrations and tongue-in-cheek approach to this encyclopedic "guide to rebuilding civilization." For Adam, this kind of book reminds him of another childhood favorite: David Macaulay's "The Way Things Work". "The Book": https://amzn.to/3PDGR6k The Way Things Work: https://amzn.to/40yQ8me Disclaimer: Tested may earn a commission from purchases made via the links above. Subscribe for more videos (and click the bell for notifications): http://www.youtube.com/subscription_center?add_user=testedcom Join this channel to support Tested and get access to perks: https://www.youtube.com/channel/UCiDJtJKMICpb9B1qf7qjEOA/join Tested and Adam Savage Ts, stickers, (de)...

      published: 16 Jan 2025
    • Dairy Milk Gift Book Now on #7eventzz #viral #shortsvideo #trendingshorts

      published: 17 Feb 2022
    • The Book of Enoch Banned from The Bible Reveals Shocking Secrets Of Our History!

      Explore the profound narratives of the Book of Enoch and uncover why it was removed from the Bible. Let's explore the ancient text, shedding light on its controversial exclusion and what it reveals about our true origins. The Book of Enoch, often associated with the Book of Revelation, offers unparalleled insights into the saga of the Watchers, the mysterious fallen angels, and their impact on humanity. Discover why the Book of Enoch, dating back to 300 BC, was banned and labeled as forbidden knowledge by religious authorities. This text, integral to understanding Enoch's role in the Bible story and the history of the Nephilim, exposes a narrative filled with divine interventions, forbidden knowledge, and the untold story of human civilization's early days. Venture into the narrative of ...

      published: 23 Sep 2022
    • Forbidden Knowledge: Why Book of Jubilees Was Banned!

      #DeepBibleStories #BibleMysteries #biblicalhistory #bookofjubilees #bookofenoch #bannedbooks ____ This video is now available as an eBook Bible study guide! Get your copy here: https://deepbiblestories.com/products/the-book-of-jubilees ____ More videos on the Banned Books: https://www.youtube.com/watch?v=qwhn91_nCHs&list=PLN1jE4x9RWa42Wkpu8G6LpxLlx4CHFGaN ____ Get The Complete Ethiopian Bible on amazon: https://amzn.to/3YwAEyk ___ Unlock the mysteries of the ancient Book of Jubilees, a sacred text that has been shrouded in secrecy for centuries. In this video, we'll delve into the hidden secrets and revelations that have been concealed from the public eye. From its origins to its esoteric teachings, we'll explore the untold stories and cryptic messages that lie within its pages. Join us...

      published: 21 Oct 2024
    • Listen to the Book of Genesis – A Journey Through Creation & Faith

      Listen to the Book of Genesis – A Journey Through Creation & Faith 📖✨ Immerse yourself in the timeless words of the Holy Bible with this full reading of the Book of Genesis. From the story of Creation to the faith of Abraham, the trials of Joseph, and the covenant between God and His people, this book lays the foundation of faith, hope, and divine promise. 🔹 Perfect for personal devotion, Bible study, meditation, or simply experiencing the power of scripture. 🔹 Relax & reflect as you listen to the Word of God in this immersive audiobook-style reading. 📖 Chapters Covered: ✔️ Creation of the World 🌍 (Genesis 1-2) ✔️ The Fall of Man 🍎 (Genesis 3) ✔️ Noah’s Ark & The Great Flood ⛵ (Genesis 6-9) ✔️ Abraham’s Covenant with God ✨ (Genesis 12-22) ✔️ Joseph’s Journey from Slave to Ruler 👑 (Genes...

      published: 01 Apr 2025
    • The Complete Story The Book of 1st Samuel Like You've Never Seen It Before

      Join this channel to get access to perks: https://www.youtube.com/channel/UC9GXHFcXtPOfFSFZgHsg2Aw/join The Complete Story The Book of 1st Samuel Like You've Never Seen It Before #DeepBibleStories #BibleMysteries #BiblicalHistory #Biblestudy #BibleExplained _____________________________ 💰 Support the Mission Get eBooks(converted from our videos): https://deepbiblestories.com/ Buy us coffee: https://buymeacoffee.com/deepbiblestories _____________________________ 🛒 Shop Our Favorites Ethiopian Bible in English Complete 88 Books: https://amzn.to/3Ce9G61 The Book of Enoch: https://amzn.to/48A7t0L The Apocrypha Master Collection: https://amzn.to/4fu4FoF _____________________________ 📖 Must-Watch Playlists Banned Books Explained → https://www.youtube.com/playlist?list=PLN1jE4x9RWa42Wkpu8G6LpxLl...

      published: 27 Jan 2025
    The Book - The Ultimate Guide to Rebuilding a Civilization Exclusive Kit Pledge Unboxing
    14:40

    The Book - The Ultimate Guide to Rebuilding a Civilization Exclusive Kit Pledge Unboxing

    • Order:
    • Duration: 14:40
    • Uploaded Date: 26 Apr 2023
    • views: 21228
    It has been a while, but here is another unboxing type video. I backed a project on Kickstarter some time ago, and it finally arrived. It's The Book by Timur, and its purpose is to jump-start society after an apocalyptic event. I like books like this, as well as artbooks and the like so I was interested enough to put some money into it. The pledge level I selected included The Book itself, a digital copy, a gift box, A1 sized poster, and a bookmark. It also came with some stickers. I haven't received my slipcase or playing cards yet, unfortunately. Those were add-ons, so they'll probably ship later, assuming they didn't forget to send this to me. It is quite extensive, this book. Fairly large too. It doesn't go too in-depth and is only intended as a (mostly serious) overview. A starting point and reference book, basically. I think the idea is that once it is known to be possible and you're pointed in the right direction, it'd be up to the reader to figure out how to actually make it a reality. This is of course largely for fun, and something to add to a book collection. I think there is supposed to be a primer on basic mathematics somewhere in it, but I couldn't find it in my brief flip-through.
    https://wn.com/The_Book_The_Ultimate_Guide_To_Rebuilding_A_Civilization_Exclusive_Kit_Pledge_Unboxing
    Hungry Minds: The Book
    1:00

    Hungry Minds: The Book

    • Order:
    • Duration: 1:00
    • Uploaded Date: 28 Aug 2024
    • views: 17322
    This is genuinely one of the most beautifully illustrated books I own, and the broad range of topics inside makes it a great way to encourage my kids to learn. Use the link https://tinyurl.com/9a3bn4fn and the code GREENBOOK10 for 10% off. https://www.youtube.com/@HungryMindsArt
    https://wn.com/Hungry_Minds_The_Book
    📖 Learn history with "The Book: The Ultimate Guide To Rebuilding A Civilization" by Hungry Minds
    0:58

    📖 Learn history with "The Book: The Ultimate Guide To Rebuilding A Civilization" by Hungry Minds

    • Order:
    • Duration: 0:58
    • Uploaded Date: 02 Jan 2024
    • views: 17080
    Picture books are not just for children. ~ Thank you for watching ~ ―――― ~ Find me elsewhere ~ Goodreads: https://www.goodreads.com/chaletaah Letterboxd: https://letterboxd.com/Chaletaah/ Neonmob: https://www.neonmob.com/creator/lheari ―――― ~ Support the channel ~ Amazon Wishlist: https://www.amazon.de/hz/wishlist/ls/3FEJR4XWJ25JA?ref_=wl_share ―――― ~ Business inquiries ~ chaletaah97@gmail.com ―――― ~ unpaid book advertising ~ ――――
    https://wn.com/📖_Learn_History_With_The_Book_The_Ultimate_Guide_To_Rebuilding_A_Civilization_By_Hungry_Minds
    Unlocking the unique world of "The Book: The Ultimate Guide to Rebuilding Civilization" | Review
    10:07

    Unlocking the unique world of "The Book: The Ultimate Guide to Rebuilding Civilization" | Review

    • Order:
    • Duration: 10:07
    • Uploaded Date: 13 Dec 2023
    • views: 70122
    ⚙️ Steampunk and whimsy meet technology and survival guide in this delightful blend of history, humor and how-to! 🔗 Links: ➤ Publisher direct: https://howtorebuildcivilization.com/BEAUTIFUL ➤ Amazon (affiliate link - I may be compensated if you purchase through this link): https://amzn.to/4ajRgxa ➤ Full review on my website: https://beautifulbooks.info/2023/12/rebuilding-civilization-review/ * Update March 2024 - the page on Sex Toys has been removed from The Book - so if you actually want this part included, you'll have to search out an earlier copy! 📃 Disclaimer - I was sent a review copy of this publication, but this does not affect my review and my content is not sponsored. I actually had my eye on this book back when it was on Kickstarter but couldn't deal with the international postage. So I'm thrilled it is finally out in a trade edition - it's beautifully made, gorgeously illustrated and I throughly enjoyed it! 👽 You might also like to check out Hungry Mind's upcoming publication, 'Anthem to Humankind' - apparently it is about "the essence of human culture viewed through the porthole of an alien ark" - the kickstarter is closed but you can still preorder through the campaign: https://www.kickstarter.com/projects/thebookthebook/anthem-to-humankind?ref=630dhc&token=b1278428 🧑🏿‍🤝‍🧑🏼 Did you notice there is no mention of the team that worked on this book anywhere? Apparently they intentionally left those details off the publication to give it more of an air of "magical artefact" that could help rebuild civilizations throughout time. But these guys certainly deserve praise for their accomplishment, so I'm linking to them here: https://howtorebuildcivilization.com/pages/team (bravo peeps!) 💖 As always, thanks so much for watching, I hope you enjoyed it! (And if you happen to know anything about that well monster, or the broken modern artwork, or the game bulquack - please do enlighten me!!) ----- Music is Village Ambiance & Chivalry Fair by Alexander Nakarada (CreatorChords) | https://creatorchords.com Music promoted by https://www.free-stock-music.com Creative Commons / Attribution 4.0 International (CC BY 4.0) https://creativecommons.org/licenses/by/4.0/ Website: https://beautifulbooks.info #beautifulbooks #thebook #history #science #whimsey
    https://wn.com/Unlocking_The_Unique_World_Of_The_Book_The_Ultimate_Guide_To_Rebuilding_Civilization_|_Review
    Adam Savage Delighted by This Illustrated Guide to Rebuilding Civilization
    8:45

    Adam Savage Delighted by This Illustrated Guide to Rebuilding Civilization

    • Order:
    • Duration: 8:45
    • Uploaded Date: 16 Jan 2025
    • views: 258004
    After being recommended this coffee table book by the algorithm in Adam's feed, he's pleasantly surprised to be delighted by the illustrations and tongue-in-cheek approach to this encyclopedic "guide to rebuilding civilization." For Adam, this kind of book reminds him of another childhood favorite: David Macaulay's "The Way Things Work". "The Book": https://amzn.to/3PDGR6k The Way Things Work: https://amzn.to/40yQ8me Disclaimer: Tested may earn a commission from purchases made via the links above. Subscribe for more videos (and click the bell for notifications): http://www.youtube.com/subscription_center?add_user=testedcom Join this channel to support Tested and get access to perks: https://www.youtube.com/channel/UCiDJtJKMICpb9B1qf7qjEOA/join Tested and Adam Savage Ts, stickers, (de) merit badges and more: https://tested-store.com About Tested: https://www.tested.com/about Meet Adam in Person: https://www.tested.com/events TikTok: https://www.tiktok.com/@testedcom Instagram: https://www.instagram.com/testedcom/ Twitter: http://www.twitter.com/testedcom Facebook: http://www.facebook.com/testedcom Discord: https://www.discord.gg/tested Amazon Storefront: http://www.amazon.com/shop/adamsavagestested Audio Described and Accessible Videos: https://www.youtube.com/playlist?list=PLJtitKU0CAeiQLgj4PZ9onSW6YXIz5ADR Intro bumper by Abe Dieckman Thanks for watching! #adamsavage #showandtell
    https://wn.com/Adam_Savage_Delighted_By_This_Illustrated_Guide_To_Rebuilding_Civilization
    Dairy Milk Gift Book Now on #7eventzz #viral #shortsvideo #trendingshorts
    0:11

    Dairy Milk Gift Book Now on #7eventzz #viral #shortsvideo #trendingshorts

    • Order:
    • Duration: 0:11
    • Uploaded Date: 17 Feb 2022
    • views: 89240592
    https://wn.com/Dairy_Milk_Gift_Book_Now_On_7Eventzz_Viral_Shortsvideo_Trendingshorts
    The Book of Enoch Banned from The Bible Reveals Shocking Secrets Of Our History!
    14:50

    The Book of Enoch Banned from The Bible Reveals Shocking Secrets Of Our History!

    • Order:
    • Duration: 14:50
    • Uploaded Date: 23 Sep 2022
    • views: 4696017
    Explore the profound narratives of the Book of Enoch and uncover why it was removed from the Bible. Let's explore the ancient text, shedding light on its controversial exclusion and what it reveals about our true origins. The Book of Enoch, often associated with the Book of Revelation, offers unparalleled insights into the saga of the Watchers, the mysterious fallen angels, and their impact on humanity. Discover why the Book of Enoch, dating back to 300 BC, was banned and labeled as forbidden knowledge by religious authorities. This text, integral to understanding Enoch's role in the Bible story and the history of the Nephilim, exposes a narrative filled with divine interventions, forbidden knowledge, and the untold story of human civilization's early days. Venture into the narrative of the first Enoch, where tales of the Watchers and the Book of Giants unfold, challenging the conventional history we've been taught. Learn about the celestial beings who once walked the Earth and their profound influence that extends into our present. The Book of Enoch's summary not only explores the reasons behind its removal from the Bible but also connects dots to the broader cosmic story involving Enoch Book 1 and the subsequent narratives. Find out what the church has historically feared about this sacred manuscript and why it remains one of the most enlightening yet banned books in spiritual history. Our video provides a comprehensive explanation of the Book of Enoch, its critical messages about the past, and its implications for our future. Discover the legacy of the Watchers, the truth about the Book of Enoch 2, and the reasons behind the controversial banishment of this pivotal text. Join us as we reveal the suppressed truths of the Book of Enoch and its crucial role in understanding our spiritual heritage and the ancient mysteries that have shaped the world as we know it. FOR MORE CHECK OUR PLAYLIST ABOUT THE BOOK OF ENOCH: https://www.youtube.com/playlist?list=PLWzIPPboa9k3oiuKpY8LZ37otYtG64E6d Enochian, the Lost Language of Angels : https://www.youtube.com/watch?v=MNYvdJR6cVE&list=PLWzIPPboa9k3oiuKpY8LZ37otYtG64E6d&index=2& Why the Bible Hid His Alien Encounters: https://www.youtube.com/watch?v=N5YQupEvsnc&list=PLWzIPPboa9k3oiuKpY8LZ37otYtG64E6d&index=3 Forbidden Truths in The Watchers Book: https://www.youtube.com/watch?v=tH4QnNeo-ao&list=PLWzIPPboa9k3oiuKpY8LZ37otYtG64E6d&index=4 The Book of Giants & How the Nephilim Sons Almost Ended the World: https://www.youtube.com/watch?v=1yPf1XwoFHs&list=PLWzIPPboa9k3oiuKpY8LZ37otYtG64E6d&index=5 The ORIGIN of Enoch Will BLOW Your Mind! Why He Was The Chosen? : https://www.youtube.com/watch?v=PFfkv5_SYFo&list=PLWzIPPboa9k3oiuKpY8LZ37otYtG64E6d&index=6 NEPHILIM & THE FALLEN ANGELS - Banned Secret Truths of Giants : https://www.youtube.com/watch?v=u98iu3JPsjA&list=PLWzIPPboa9k3oiuKpY8LZ37otYtG64E6d&index=7 The 4 GIANT BROTHERS of GOLIATH - Giants' Hidden Lineage : https://www.youtube.com/watch?v=TYW_GNPAKqA&list=PLWzIPPboa9k3oiuKpY8LZ37otYtG64E6d&index=9 Get the book from the video : The Book of Enoch: https://amzn.to/3GASd7s ➨ Subscribe for new videos : https://www.youtube.com/channel/UC9iAEi1Doz1s5gy1geBcG0g?sub_confirmation=1 00:00 Intro 01:22 Who Is Enoch 04:30 The Watchers Book 08:22 The Book Of Proverbs 09:17 The Astronomical Book 10:23 The Book "Dreams" 10:58 The Message Of Enoch ➨ Check out these videos you might like: ‣ 5 Ancient Books that can CHANGE HISTORY as we know it : https://youtu.be/RB2YYe1N0CU ‣ The Most Dangerous Books on Earth : https://youtu.be/Vnd9TX9StMw ‣ Enochian -The Lost Language of The Angels : https://www.youtube.com/watch?v=MNYvdJR6cVE 🌟 BECOME A SUPPORTER 🌟 Anyone who considers what we do to be useful for themselves has the opportunity to support us with the symbolic sum of just $4.99 per month. No matter how small this amount may seem to you, it would be an invaluable help to us and a sign of appreciation for what we do. This gesture from you will allow us to develop much faster, as we will have the opportunity to make more and better quality productions, as well as to expand the covered topics. Not only that, but you are going to be on top of our priority list, when we are replying to comments! 👉 https://www.youtube.com/channel/UC9iAEi1Doz1s5gy1geBcG0g/join ------------------------------------------------------- ⭐Join our TELEGRAM community ⭐ Channel: https://t.me/yt_Consciousness Chat Group: https://t.me/Consciousness_group The Book of Enoch Banned from The Bible Reveals Shocking Mysteries Of Our True History!
    https://wn.com/The_Book_Of_Enoch_Banned_From_The_Bible_Reveals_Shocking_Secrets_Of_Our_History
    Forbidden Knowledge: Why Book of Jubilees Was Banned!
    56:37

    Forbidden Knowledge: Why Book of Jubilees Was Banned!

    • Order:
    • Duration: 56:37
    • Uploaded Date: 21 Oct 2024
    • views: 1898917
    #DeepBibleStories #BibleMysteries #biblicalhistory #bookofjubilees #bookofenoch #bannedbooks ____ This video is now available as an eBook Bible study guide! Get your copy here: https://deepbiblestories.com/products/the-book-of-jubilees ____ More videos on the Banned Books: https://www.youtube.com/watch?v=qwhn91_nCHs&list=PLN1jE4x9RWa42Wkpu8G6LpxLlx4CHFGaN ____ Get The Complete Ethiopian Bible on amazon: https://amzn.to/3YwAEyk ___ Unlock the mysteries of the ancient Book of Jubilees, a sacred text that has been shrouded in secrecy for centuries. In this video, we'll delve into the hidden secrets and revelations that have been concealed from the public eye. From its origins to its esoteric teachings, we'll explore the untold stories and cryptic messages that lie within its pages. Join us on a journey of discovery as we uncover the truth behind this enigmatic book and reveal its secrets to the world. Whether you're a scholar, a seeker of knowledge, or simply curious about the mysteries of the universe, this video is sure to fascinate and intrigue. So, sit back, relax, and get ready to uncover the hidden secrets of the Book of Jubilees. Chapters: 00:00 Introduction 01:18 Creation and the Origin of Time 07:30 The Foundations of God’s Law 13:15 Abraham – The Father of Nations 19:13 Jacob and Esau – The Battle for the Birthright 26:00 The 12 Tribes of Israel 32:11 Joseph in Egypt - Setup for the Exodus 38:17 Israel’s Enslavement 44:15 The Mosaic Law 50:17 Prophecy and End Times in Jubilees
    https://wn.com/Forbidden_Knowledge_Why_Book_Of_Jubilees_Was_Banned
    Listen to the Book of Genesis – A Journey Through Creation & Faith
    3:21:30

    Listen to the Book of Genesis – A Journey Through Creation & Faith

    • Order:
    • Duration: 3:21:30
    • Uploaded Date: 01 Apr 2025
    • views: 7
    Listen to the Book of Genesis – A Journey Through Creation & Faith 📖✨ Immerse yourself in the timeless words of the Holy Bible with this full reading of the Book of Genesis. From the story of Creation to the faith of Abraham, the trials of Joseph, and the covenant between God and His people, this book lays the foundation of faith, hope, and divine promise. 🔹 Perfect for personal devotion, Bible study, meditation, or simply experiencing the power of scripture. 🔹 Relax & reflect as you listen to the Word of God in this immersive audiobook-style reading. 📖 Chapters Covered: ✔️ Creation of the World 🌍 (Genesis 1-2) ✔️ The Fall of Man 🍎 (Genesis 3) ✔️ Noah’s Ark & The Great Flood ⛵ (Genesis 6-9) ✔️ Abraham’s Covenant with God ✨ (Genesis 12-22) ✔️ Joseph’s Journey from Slave to Ruler 👑 (Genesis 37-50) 🙏 Subscribe for more Bible readings and spiritual inspiration! 👍 Like & Share to spread the Word! #Genesis #BibleReading #HolyBible #OldTestament #Faith #Christianity #GodsWord #BibleStories #ChristianMeditation #SpiritualGrowth Embark on a journey through the Book of Genesis, the foundational text of the Holy Bible. 📖✨ In this immersive reading, experience the stories of creation, faith, and divine promise. From Adam and Eve to Noah’s Ark, Abraham’s covenant, and Joseph’s trials, Genesis unveils the origins of humanity and God’s eternal plan. 🔹 Perfect for Bible study, meditation, or simply deepening your understanding of scripture. 🔹 Listen and reflect on the timeless wisdom of the Word of God. 🙏 Subscribe for more biblical readings and spiritual insights! #Genesis #BibleReading #HolyBible #OldTestament #Faith #Christianity
    https://wn.com/Listen_To_The_Book_Of_Genesis_–_A_Journey_Through_Creation_Faith
    The Complete Story The Book of 1st Samuel Like You've Never Seen It Before
    1:40:07

    The Complete Story The Book of 1st Samuel Like You've Never Seen It Before

    • Order:
    • Duration: 1:40:07
    • Uploaded Date: 27 Jan 2025
    • views: 67787
    Join this channel to get access to perks: https://www.youtube.com/channel/UC9GXHFcXtPOfFSFZgHsg2Aw/join The Complete Story The Book of 1st Samuel Like You've Never Seen It Before #DeepBibleStories #BibleMysteries #BiblicalHistory #Biblestudy #BibleExplained _____________________________ 💰 Support the Mission Get eBooks(converted from our videos): https://deepbiblestories.com/ Buy us coffee: https://buymeacoffee.com/deepbiblestories _____________________________ 🛒 Shop Our Favorites Ethiopian Bible in English Complete 88 Books: https://amzn.to/3Ce9G61 The Book of Enoch: https://amzn.to/48A7t0L The Apocrypha Master Collection: https://amzn.to/4fu4FoF _____________________________ 📖 Must-Watch Playlists Banned Books Explained → https://www.youtube.com/playlist?list=PLN1jE4x9RWa42Wkpu8G6LpxLlx4CHFGaN New Testament Explained → https://www.youtube.com/playlist?list=PLN1jE4x9RWa6I2Q95R2JnK3p-WCuu-Vw_ Old Testament Explained → https://www.youtube.com/playlist?list=PLN1jE4x9RWa5CokysNZXcWYdlwG6O462O _____________________________ Description: Unlock the secrets of the Bible with this in-depth exploration of 1st Samuel! In this video, we'll dive into the lesser-known aspects of this pivotal book of the Old Testament, separating fact from fiction and myth from reality. From the rise of Samuel as a prophet to the reign of King Saul, we'll examine the historical context, literary themes, and spiritual significance of 1st Samuel. Whether you're a seasoned Bible scholar or just starting your faith journey, this video will give you a deeper understanding of what's really happening in 1st Samuel and how it applies to your life today. So, let's get started and uncover the hidden gems of this ancient text! Take a deep dive into the book of 1st Samuel with this unique exploration of the complete story. Get ready for a deep Bible study experience like never before! _____________________________ 🕒 Timestamps 0:00 Introduction: The Rise and Fall of Kings 2:31 The Author and Historical Context 6:59 Hannah’s Prayer: The Power of Faith 13:25 The Call of Samuel: Hearing God’s Voice 20:10 The Ark of the Covenant: God’s Power Displayed 27:44 Israel Demands a King: Rejecting God’s Rule 34:52 The Rise and Fall of Saul: A Cautionary Tale 42:25 David Anointed: The Shepherd Who Would Be King 48:48 David and Goliath: Faith Over Fear 55:18 Saul’s Jealousy and David’s Rise 1:01:45 David on the Run: Trusting God in Trials 1:09:19 Saul and the Witch of Endor: Desperation Without God 1:16:51 The Death of Saul: The End of a Fallen King 1:23:48 Christ in 1st Samuel: The Ultimate King 1:31:04 Practical Applications for Modern Believers 1:39:02 Conclusion: A Call to Faith and Obedience _____________________________ _____________________________ 📌 Don’t forget to like and share this video to your that friend!
    https://wn.com/The_Complete_Story_The_Book_Of_1St_Samuel_Like_You've_Never_Seen_It_Before
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Book - The Ultimate Guide to Rebuilding a Civilization Exclusive Kit Pledge Unboxing
      14:40
      The Book - The Ultimate Guide to Rebuilding a Civilization Exclusive Kit Pledge Unboxingremove from playlist
    • Hungry Minds: The Book
      1:00
      Hungry Minds: The Bookremove from playlist
    • 📖 Learn history with
      0:58
      📖 Learn history with "The Book: The Ultimate Guide To Rebuilding A Civilization" by Hungry Mindsremove from playlist
    • Unlocking the unique world of
      10:07
      Unlocking the unique world of "The Book: The Ultimate Guide to Rebuilding Civilization" | Reviewremove from playlist
    • Adam Savage Delighted by This Illustrated Guide to Rebuilding Civilization
      8:45
      Adam Savage Delighted by This Illustrated Guide to Rebuilding Civilizationremove from playlist
    • The Book of Enoch Banned from The Bible Reveals Shocking Secrets Of Our History!
      14:50
      The Book of Enoch Banned from The Bible Reveals Shocking Secrets Of Our History!remove from playlist
    • Forbidden Knowledge: Why Book of Jubilees Was Banned!
      56:37
      Forbidden Knowledge: Why Book of Jubilees Was Banned!remove from playlist
    • Listen to the Book of Genesis – A Journey Through Creation & Faith
      3:21:30
      Listen to the Book of Genesis – A Journey Through Creation & Faithremove from playlist
    • The Complete Story The Book of 1st Samuel Like You've Never Seen It Before
      1:40:07
      The Complete Story The Book of 1st Samuel Like You've Never Seen It Beforeremove from playlist
    PLAYLIST TIME: 0:00 / 6:48:45

    The Book - The Ultimate Guide to Rebuilding a Civilization Exclusive Kit Pledge Unboxing

    It has been a while, but here is another unboxing type video. I backed a project on Kickstarter some time ago, and it finally arrived. It's The Book by Timur, and its purpose is to jump-start society after an apocalyptic event. I like books like this, as well as artbooks and the like so I was interested enough to put some money into it. The pledge level I selected included The Book itself, a digital copy, a gift box, A1 sized poster, and a bookmark. It also came with some stickers. I haven't received my slipcase or playing cards yet, unfortunately. Those were add-ons, so they'll probably ship later, assuming they didn't forget to send this to me. It is quite extensive, this book. Fairly large too. It doesn't go too in-depth and is only intended as a (mostly serious) overview. A starting point and reference book, basically. I think the idea is that once it is known to be possible and you're pointed in the right direction, it'd be up to the reader to figure out how to actually make it a reality. This is of course largely for fun, and something to add to a book collection. I think there is supposed to be a primer on basic mathematics somewhere in it, but I couldn't find it in my brief flip-through.
    14:40
    The Book - The Ultimate Guide to Rebuilding a Civilization Exclusive Kit Pledge Unboxing
    It has been a while, but here is another unboxing type video. I backed a project on Kicks...
    published: 26 Apr 2023
    Play in Full Screen
    1:00
    Hungry Minds: The Book
    This is genuinely one of the most beautifully illustrated books I own, and the broad range...
    published: 28 Aug 2024
    Play in Full Screen
    0:58
    📖 Learn history with "The Book: The Ultimate Guide To Rebuilding A Civilization" by Hungry Minds
    Picture books are not just for children. ~ Thank you for watching ~ ―――― ~ Find me else...
    published: 02 Jan 2024
    Play in Full Screen
    10:07
    Unlocking the unique world of "The Book: The Ultimate Guide to Rebuilding Civilization" | Review
    ⚙️ Steampunk and whimsy meet technology and survival guide in this delightful blend of his...
    published: 13 Dec 2023
    Play in Full Screen
    8:45
    Adam Savage Delighted by This Illustrated Guide to Rebuilding Civilization
    After being recommended this coffee table book by the algorithm in Adam's feed, he's pleas...
    published: 16 Jan 2025
    Play in Full Screen
    0:11
    Dairy Milk Gift Book Now on #7eventzz #viral #shortsvideo #trendingshorts
    published: 17 Feb 2022
    Play in Full Screen
    14:50
    The Book of Enoch Banned from The Bible Reveals Shocking Secrets Of Our History!
    Explore the profound narratives of the Book of Enoch and uncover why it was removed from t...
    published: 23 Sep 2022
    Play in Full Screen
    56:37
    Forbidden Knowledge: Why Book of Jubilees Was Banned!
    #DeepBibleStories #BibleMysteries #biblicalhistory #bookofjubilees #bookofenoch #bannedboo...
    published: 21 Oct 2024
    Play in Full Screen
    3:21:30
    Listen to the Book of Genesis – A Journey Through Creation & Faith
    Listen to the Book of Genesis – A Journey Through Creation & Faith 📖✨ Immerse yourself in...
    published: 01 Apr 2025
    Play in Full Screen
    1:40:07
    The Complete Story The Book of 1st Samuel Like You've Never Seen It Before
    Join this channel to get access to perks: https://www.youtube.com/channel/UC9GXHFcXtPOfFSF...
    published: 27 Jan 2025
    Play in Full Screen

    The Book

    The Book can refer to:

  • The Book: On the Taboo Against Knowing Who You Are, a 1966 book by Alan Watts
  • "The Book" (short story), an unfinished, fragmentary short story by H. P. Lovecraft
  • The Bible, especially a Tyndale House edition of the New Living Translation published as "The Book"
  • The Qur’ān (Arabic: القرآن al-qur'ān, literally "the recitation")
  • Indian mystic Meher Baba's missing book
  • The telephone book
  • Paul Erdős' concept of "The Book" in which God maintains the most elegant proofs from THE BOOK of mathematical theorems
  • The second part of The Revelation of Arès, a publication of a 20th-century religious movement founded by Michel Potay
  • The Book (EP), an EP by D-Sisive
  • As referred to in works of fiction, The Book may be

  • Goldstein's book, from George Orwell's novel 1984
  • The Hitchhiker's Guide to the Galaxy (fictional)
  • The Book (Time Warp Trio), a fictional item from the book and television series
  • See also

  • Book (disambiguation)
  • The Books, an American music group
  • '); } 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)); } }); }); }); // -->

    Latest News for: the book

    Edit

    Have you seen the book bike? It's a second-hand book shop on wheels

    Canberra Times 06 Apr 2025
    She might have hit upon the Canberra trifecta. books, bikes and coffee ... .
    Edit

    Exclusive -- Sen. David McCormick: Tariffs 'Just One Chapter of the Book of the Trump ...

    Breitbart 05 Apr 2025
    Tariffs are just "one chapter of the book of the Trump economic agenda," ...
    Edit

    20 new laws hit the books with governor's signature

    The Elkhart Truth 05 Apr 2025
    INDIANAPOLIS — Indiana Gov. Mike Braun signed 20 bills into law Thursday, including one that would expunge certain civil “red flag” proceedings and another impacting carbon dioxide sequestration projects ... .
    Edit

    20 new laws hit the books

    Goshen News 05 Apr 2025
    INDIANAPOLIS — Indiana Gov. Mike Braun signed 20 bills into law Thursday, including one that would expunge certain civil “red flag” proceedings and another impacting carbon dioxide sequestration projects ... .
    Edit

    THE BOOK OF EXODUS - LESSON 41

    Bitchute 05 Apr 2025
    Go to the source via the article link to view the video or click the video icon ....
    Edit

    ‘Reacher’ Season 4 Needs To Bring In These Two Deadly Female Villains From the Books

    Collider 05 Apr 2025
    The following ... The upcoming Season 4 of the massive Prime Video series can look towards adapting Gone Tomorrow, the 13th book in the bestselling franchise.
    Edit

    Parramatta forced to fork out $500,000 to FINALLY close the book on the Jarryd Hayne ...

    The Daily Mail 05 Apr 2025
    Parramatta has agreed to pay $500,000 to settle a long-running Supreme Court case linked to the salary cap scandal that rocked the club in 2016 ... Hayne was still tied to the Eels because of a long-running court case over the 2016 salary cap scandal.
    Edit

    After the 2024 Presidential Campaign, the Books

    The American Spectator 05 Apr 2025
    Those are two of my takeaways from the 2024 campaign autopsy book Fight ... The new book offers newsy nuggets about Biden’s downward spiral, which nobody could deny after the June 27 Biden–Trump debate.
    Edit

    20 new laws hit the books with Gov. Braun's signature

    News And Tribune 04 Apr 2025
    Indiana Gov. Mike Braun signed 20 bills into law Thursday, including one that would expunge certain civil “red flag” proceedings and another impacting carbon dioxide sequestration projects ... .
    Edit

    20 new laws hit the books with Gov. Mike Braun’s signature

    Fort Wayne Journal Gazette 04 Apr 2025
    Indiana Gov. Mike Braun signed 20 bills into law Thursday, including one that would expunge certain civil “red flag” proceedings and another impacting carbon dioxide sequestration projects ... .
    Edit

    The Book of Enoch - Chapter 45-51 - The Second Parable of Enoch - Part A

    Bitchute 03 Apr 2025
    Go to the source via the article link to view the video or click the video icon ....
    ×