- published: 12 Mar 2024
- views: 294792
'+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; })); }); -->
Ishmael Scott Reed (born February 22, 1938) is an American poet, novelist, essayist, songwriter, playwright, editor and publisher, who is known for his satirical works challenging American political culture, and highlighting political and cultural oppression.
Reed's work has often sought to represent neglected African and African-American perspectives; his energy and advocacy have centered more broadly on neglected peoples and perspectives, irrespective of their cultural origins.
Reed was born in Chattanooga, Tennessee, and grew up in Buffalo, New York, where he attended the University of Buffalo, a private university that became part of the state public university system after he left. Reed withdrew from university in his junior year, partly due to financial issues, but mainly because he felt he needed a new atmosphere to experience with his writing and music. He comments on this decision: "This was the best thing that could have happened to me at the time because I was able to continue experimenting along the lines I wanted, influenced by [Nathanael] West and others. I didn't want to be a slave to somebody else's reading lists. I kind of regret the decision now because I've gotten some of the most racist and horrible things said to me because of this." In 1995, the college awarded him an honorary doctorates degree.
Ishmael (Hebrew: יִשְׁמָעֵאל, Modern Yishma'el, Tiberian Yišmāʻēl ISO 259-3, Yišmaˁel; Greek: Ἰσμαήλ Ismaēl; Arabic: إسماعيل ʾIsmāʿīl; Latin: Ismael) is a figure in the Tanakh and the Qur'an and was Abraham's first son according to Jews, Christians, and Muslims. Ishmael was born to Abraham and Sarah's handmaiden Hagar (Genesis 16:3). According to the Genesis account, he died at the age of 137 (Genesis 25:17).
The Book of Genesis and Islamic traditions consider Ishmael to be the ancestor of the Ishmaelites and patriarch of Qaydār. According to Muslim tradition, Ishmael the Patriarch, and his mother Hagar, are said to be buried next to the Kaaba in Mecca.
Cognates of Hebrew Yishma'el existed in various ancient Semitic cultures, including early Babylonian and Minæan. It is a theophoric name translated literally as "God (El) has hearkened", suggesting that "a child so named was regarded as the fulfillment of a divine promise".
This is the account of Ishmael from Genesis Chapters 16, 17, 21, 25
Ishmael is a novel by Barbara Hambly, set in the Star Trek fictional universe.
Spock travels back to the time and place of Here Come the Brides, a 1968-70 ABC television series loosely based upon Asa Mercer's efforts to bring civilization to 1860s Seattle by importing the marriageable Mercer Girls from the war-ravaged East Coast of the United States. The show's premise was that eldest brother Jason Bolt bet his entire logging operation that he could persuade one hundred marriageable ladies to come to Seattle, and that all of them would be married or engaged within one year. Much of the dramatic and comic tension revolved around the efforts of their benefactor Aaron Stemple to thwart the deal and take control of the Bolts' holdings.
Spock discovers a Klingon plot to destroy the Federation by killing Aaron Stemple before Stemple could thwart an attempted 19th-century alien invasion of Earth. During most of the story, Spock has lost his memory and is cared for by Stemple, who passes him off as his nephew "Ishmael" and helps him hide his alien origins. Spock identifies one of the women in the story as likely to be one of his ancestors (on his mother's side).
Ishmael is a 1992 philosophical novel by Daniel Quinn. It examines the mythological thinking at the heart of modern civilization, its effect on ethics, and how this relates to sustainability and societal collapse on the global scale. The novel uses a style of Socratic dialogue to deconstruct the notion that humans are the pinnacle of biological evolution. It posits that anthropocentrism and several other widely accepted modern ideas are actually cultural myths and that global civilization is enacting these myths with catastrophic consequences. The novel was awarded the $500,000 Turner Tomorrow Fellowship Award in 1991, a year before its formal publication.
Ishmael ultimately comprises a loose trilogy, including a 1996 spiritual sequel, The Story of B, and a 1997 sidequel, My Ishmael. Quinn also details how he arrived at the ideas behind Ishmael in his autobiography, Providence: The Story of a Fifty-Year Vision Quest. Yet another related follow-up book to Ishmael is Quinn's 1999 short treatise, Beyond Civilization.
I Am may refer to:
In the United States, vehicle safety inspection and emissions inspection are governed by each state individually. 17 states have a periodic (annual or biennial) safety inspection program, while Maryland and Alabama require a safety inspection on sale or transfer of vehicles which were previously registered in another state. New Jersey discontinued its passenger vehicle safety inspection program on August 1, 2010.
In 1977, the federal Clean Air Act was amended by Congress to require states to implement vehicle emissions inspection programs, known as I/M programs (for Inspection and Maintenance), in all major metropolitan areas whose air quality failed to meet certain federal standards. New York's program started in 1982, California's program ("Smog Check") started in 1984, and Illinois' program started in 1986. The Clean Air Act of 1990 required some states to enact vehicle emissions inspection programs. State impacted were those in metropolitan areas where air quality did not meet federal standards. Some states, including Kentucky and Minnesota, have discontinued their testing programs in recent years with approval from the federal government.
Clerks (stylized as Clerks.) is a 1994 American black-and-white comedy-drama film written and directed by Kevin Smith. Starring Brian O'Halloran as Dante Hicks and Jeff Anderson as Randal Graves, it presents a day in the lives of two store clerks and their acquaintances. Shot entirely in black and white, Clerks is the first of Smith's View Askewniverse films, and introduces several recurring characters, notably Jay and Silent Bob, the latter played by Smith himself. The structure of the movie contains nine scene breaks, signifying the nine rings of hell as in Dante Alighieri's Divine Comedy, from which the main character, Dante, clearly derives his name.
Clerks was shot for $27,575 in the convenience and video stores where director Kevin Smith worked in real life. Upon its theatrical release, the film grossed over $3 million in theaters, launching Smith's career.
Dante Hicks, a 22-year-old retail clerk at the Quick Stop convenience store in Leonardo, New Jersey, is called into work on his day off by his boss to cover a few hours for another employee who is sick. Arriving at the store, he finds that the locks to the security shutters are jammed closed with chewing gum, so he hangs a sheet over them with a message written in shoe polish: "I ASSURE YOU; WE'RE OPEN."
Share this video, SUBSCRIBE TO THE CHANNEL, and leave your opinion in the comments below! Download your ebook here: https://hotm.art/biblemysteries17 Disclaimer: The content presented on this channel is created with respect and deep appreciation for the teachings of the Bible. Our goal is to share stories and lessons from the Holy Scriptures in an accessible and educational way, aiming to inspire, clarify, and encourage reflection. We do not intend to defame, offend, or discriminate against any belief, gender, age, race, or religious tradition. We value the diversity of interpretations and encourage constructive dialogue, respecting different perspectives of faith and culture.
Ishmael: The Forgotten Son of Abraham" What do we know about Ishmael according to the Bible? Ishmael was Abraham's first son, born when Abraham was 86 years old and living near Hebron. In Genesis 15, God promises Abraham, during an apparition, that he will have a son and become the father of many nations. At that time, Abraham had no children. His wife Sarah was unable to conceive, and they questioned how this promise would be fulfilled. Welcome, dear friends, to another captivating journey through the pages of the Bible on our channel, Bible Stories. Today, we delve into the intriguing narrative of Ishmael, the forgotten son of Abraham. This biblical tale is a tapestry of human struggles, divine promises, and the enduring grace of God. If you find inspiration in the timeless stories of fa...
Ishmael is known as Abraham’s son in Judaism, Christianity and #Islam. But his role is depicted quite differently in the Bible and #Quran. In the Quran, for example, Ishmael works with his father to build the Kabah; in the Bible, Ishmael never went to #Mecca. Join Dr. Shabir Ally and Safiyyah Ally as we continue our series, Prophets in the Bible and Quran. ___________________________ Please SUBSCRIBE to SUPPORT the show here: https://www.youtube.com/subscription_center?add_user=quranspeaks Facebook: http://www.Facebook.com/LetTheQuranSpeak Instagram: http://www.Instagram.com/quranspeaks.tv
Islam and Judaism, Arabs and Jews. Subscribe to the Meaningful Life Center YouTube Channel for more 🔔 https://www.youtube.com/meaningfullifecenter?sub_confirmation=1 Let’s connect: 🌐Website - http://www.meaningfullife.com/ 📷 Instagram – https://www.instagram.com/meaningful.life.center/ 👍Facebook – https://www.facebook.com/meaningfullifecenter/ 💼LinkedIn – https://www.linkedin.com/in/simonjacobson1/ 📧Email – [email protected] 💬WhatsApp – 718-774-6448 Rabbi Simon Jacobson is a pioneering speaker, educator and mentor to thousands. He is the Dean and Founder of The Meaningful Life Center, coined "The Spiritual Starbucks" by the New York Times, which bridges the secular and the spiritual. He is the author of the best-selling book Toward a Meaningful Life (💎 https://w...
Ishmael the forgotten son This video explores the biblical story of Ishmael, the firstborn but forgotten son of Abraham. According to the book of Genesis, Ishmael was born to Abraham and Sarah's handmaiden, Hagar. But after Isaac was born to Abraham and Sarah in their old age, Ishmael was cast out from the family. As God had promised Abraham that Isaac would carry on his lineage and inheritance, Isaac became Abraham's focus. Ishmael was sent away into the wilderness with his mother Hagar, seemingly forgotten. Yet God did not forget Ishmael. He blessed Ishmael as well, promising to make him into a great nation. The Bible records that Ishmael settled in Paran and married an Egyptian woman. His descendants, the Ishmaelites, became a powerful people. Though Isaac was the son of promise thr...
Wish I had someone to tell me to change my threshold.... Check out these playlists! Pirate History Explained: https://bit.ly/2soRX54 Viking History Explained: https://bit.ly/2Jnsz9n Japanese History Explained: https://bit.ly/2tTYsNb Occult History Explained: https://bit.ly/2Mjf8oZ Native American History Explained: https://bit.ly/2PXmyQz African History Explained: https://bit.ly/2PGdsrE Serial Killer History Explained: https://bit.ly/2FWXGZ5 Hindu Mythology Explained: https://bit.ly/2TrXhzG ➧ Buy our book: https://amzn.to/2Bl3Htx ➧ Support me on Patreon: https://bit.ly/2VmSvZG ➧ Twitter - https://twitter.com/LegendsXHistory?l... Artwork/Illustrations by Felipe Cavalcanti (artstation.com/felipecbarbosa) Karlo Lottersberger (artstation.com/karlottersberger) ➧ Instagram - ...
Who were the Ishmaelites in the Bible? Understand the history of the Ishmaelites and learn who the descendants of Ishmael are today. ► SUBSCRIBE and ENABLE notifications for more videos: https://www.youtube.com/channel/UCSmCJLF--7KazZ9FCMLBtgQ The Ishmaelites were the people descended from Ishmael, the son of Abraham and the Egyptian Hagar. Ishmael, the ancestor of the Ishmaelites, was born when Abraham was about 86 years old. At around sixteen years of age, after the birth of Isaac, Ishmael and his mother left Abraham's house and settled in the desert of Paran. Ishmael married an Egyptian woman, and their children gave rise to twelve tribes. These Ishmaelite tribes lived as nomads in the Arabian Peninsula. The Ishmaelites also intermingled with other peoples descended from Abraham, suc...
"Welcome to the 'Bible Stories' channel! Here you will find a treasure trove of timeless narratives and profound teachings drawn from the sacred pages. Our mission is to bring to life the inspiring accounts from the Old and New Testaments, delving into the stories of biblical characters and the transformative messages of faith, hope, and love. Through meticulous explorations and accessible approaches, we invite you to embark on a spiritual journey of knowledge and reflection. From engaging parables to epic tales of courage and triumph, our aim is to share the richness of the Bible in an engaging and meaningful way. Whether you're a Bible student, a curious seeker of ancient wisdom, or someone in search of inspiration, you'll find a welcoming space here. Join us as we dive into the depths...
#StarTrek #Ishmael #Spock #OldWest #TimeTravel Welcome to the first through the fifth chapters of my new series, "Star Trek's Quantum West: Wagon Train to the Past". In this episode, I delve into the Star Trek novel "Ishmael", where Spock, the iconic Vulcan, mysteriously disappears on an espionage mission and ends up in the Old West. This videos just to collate what's been said so far, in case it's too hard for you to go back video by video! We'll have the next few chapters starting next week! I'll be sharing key quotes from the novel that highlight the intriguing blend of science fiction and Western genres. These quotes not only provide a glimpse into the story's unique setting but also offer insight into the characters' experiences in this unfamiliar time and place. The video conclu...
In this video, I discuss my review of Star Trek Ishmael by Barbara Hambly. Enjoy!
#StarTrek #Ishmael #Spock #OldWest #TimeTravel Back after an unforced hiatus. That's like an unforced error or something. I don't know words. Welcome to the eigth chapter of my new series, "Star Trek's Quantum West: Wagon Train to the Past". In this episode, I delve into the Star Trek novel "Ishmael", where Spock, the iconic Vulcan, mysteriously disappears on an espionage mission and ends up in the Old West. I'll be sharing key quotes from the novel that highlight the intriguing blend of science fiction and Western genres. These quotes not only provide a glimpse into the story's unique setting but also offer insight into the characters' experiences in this unfamiliar time and place. The video concludes with an analysis of the chapter, discussing the themes, character development, and ...
#StarTrek #Ishmael #Spock #OldWest #timetravel #EmperorNorton Back after an unforced hiatus. That's like an unforced error or something. I don't know words. Welcome to the eigth chapter of my new series, "Star Trek's Quantum West: Wagon Train to the Past". In this episode, I delve into the Star Trek novel "Ishmael", where Spock, the iconic Vulcan, mysteriously disappears on an espionage mission and ends up in the Old West. I'll be sharing key quotes from the novel that highlight the intriguing blend of science fiction and Western genres. These quotes not only provide a glimpse into the story's unique setting but also offer insight into the characters' experiences in this unfamiliar time and place. The video concludes with an analysis of the chapter, discussing the themes, character d...
#StarTrek #Ishmael #Spock #OldWest #timetravel #EmperorNorton Note: I know it's a little quiet, I'm trying some new stuff which either may or may not work. I'm adjusting on the fly. Back after an ANOTHER unforced hiatus. That's like an unforced error or something. I don't know words. Welcome to the eigth chapter of my new series, "Star Trek's Quantum West: Wagon Train to the Past". In this episode, I delve into the Star Trek novel "Ishmael", where Spock, the iconic Vulcan, mysteriously disappears on an espionage mission and ends up in the Old West. I'll be sharing key quotes from the novel that highlight the intriguing blend of science fiction and Western genres. These quotes not only provide a glimpse into the story's unique setting but also offer insight into the characters' exper...
#StarTrek #Ishmael #Spock #OldWest #TimeTravel Welcome to the sixth through the tenth chapters of my new series, "Star Trek's Quantum West: Wagon Train to the Past". In this episode, I delve into the Star Trek novel "Ishmael", where Spock, the iconic Vulcan, mysteriously disappears on an espionage mission and ends up in the Old West. This videos just to collate what's been said so far, in case it's too hard for you to go back video by video! We'll have the next few chapters starting next week! I'll be sharing key quotes from the novel that highlight the intriguing blend of science fiction and Western genres. These quotes not only provide a glimpse into the story's unique setting but also offer insight into the characters' experiences in this unfamiliar time and place. The video conclu...
#StarTrek #Ishmael #Spock #OldWest #TimeTravel Back after an unforced hiatus. That's like an unforced error or something. I don't know words. Welcome to the eigth chapter of my new series, "Star Trek's Quantum West: Wagon Train to the Past". In this episode, I delve into the Star Trek novel "Ishmael", where Spock, the iconic Vulcan, mysteriously disappears on an espionage mission and ends up in the Old West. I'll be sharing key quotes from the novel that highlight the intriguing blend of science fiction and Western genres. These quotes not only provide a glimpse into the story's unique setting but also offer insight into the characters' experiences in this unfamiliar time and place. The video concludes with an analysis of the chapter, discussing the themes, character development, and ...
#StarTrek #Ishmael #Spock #OldWest #timetravel #EmperorNorton Note: I know it's a little quiet, I'm trying some new stuff which either may or may not work. I'm adjusting on the fly. Back after an ANOTHER unforced hiatus. That's like an unforced error or something. I don't know words. Welcome to the eigth chapter of my new series, "Star Trek's Quantum West: Wagon Train to the Past". In this episode, I delve into the Star Trek novel "Ishmael", where Spock, the iconic Vulcan, mysteriously disappears on an espionage mission and ends up in the Old West. I'll be sharing key quotes from the novel that highlight the intriguing blend of science fiction and Western genres. These quotes not only provide a glimpse into the story's unique setting but also offer insight into the characters' exper...
#StarTrek #Ishmael #Spock #OldWest #TimeTravel Welcome to the seventh chapter of my new series, "Star Trek's Quantum West: Wagon Train to the Past". In this episode, I delve into the Star Trek novel "Ishmael", where Spock, the iconic Vulcan, mysteriously disappears on an espionage mission and ends up in the Old West. This videos just to collate what's been said so far, in case it's too hard for you to go back video by video! We'll have the next few chapters starting next week! I'll be sharing key quotes from the novel that highlight the intriguing blend of science fiction and Western genres. These quotes not only provide a glimpse into the story's unique setting but also offer insight into the characters' experiences in this unfamiliar time and place. The video concludes with an analy...
#StarTrek #Ishmael #Spock #OldWest #TimeTravel Back after an unforced hiatus. That's like an unforced error or something. I don't know words. Welcome to the eigth chapter of my new series, "Star Trek's Quantum West: Wagon Train to the Past". In this episode, I delve into the Star Trek novel "Ishmael", where Spock, the iconic Vulcan, mysteriously disappears on an espionage mission and ends up in the Old West. I'll be sharing key quotes from the novel that highlight the intriguing blend of science fiction and Western genres. These quotes not only provide a glimpse into the story's unique setting but also offer insight into the characters' experiences in this unfamiliar time and place. The video concludes with an analysis of the chapter, discussing the themes, character development, and ...
Ishmael Scott Reed (born February 22, 1938) is an American poet, novelist, essayist, songwriter, playwright, editor and publisher, who is known for his satirical works challenging American political culture, and highlighting political and cultural oppression.
Reed's work has often sought to represent neglected African and African-American perspectives; his energy and advocacy have centered more broadly on neglected peoples and perspectives, irrespective of their cultural origins.
Reed was born in Chattanooga, Tennessee, and grew up in Buffalo, New York, where he attended the University of Buffalo, a private university that became part of the state public university system after he left. Reed withdrew from university in his junior year, partly due to financial issues, but mainly because he felt he needed a new atmosphere to experience with his writing and music. He comments on this decision: "This was the best thing that could have happened to me at the time because I was able to continue experimenting along the lines I wanted, influenced by [Nathanael] West and others. I didn't want to be a slave to somebody else's reading lists. I kind of regret the decision now because I've gotten some of the most racist and horrible things said to me because of this." In 1995, the college awarded him an honorary doctorates degree.
What are you doing while I'm gone?
It's colder in July, colder than it has ever been this time of year.
Do you feel the cold breeze?
Driving, hoping, wishing.
Driving, hoping, wishing.
Driving.
What are you doing?
Where are you going?
Your lost and I am gone.
These feelings still showing, but I'm not going anywhere. Tonight I'll sit alone and wonder if your alright and how you are getting home.
The sound of your voice it gives me comfort and I don't have to wonder any fucking more.
Driving, hoping, wishing.
Driving, hoping, wishing.
Driving.
What are you doing?
Where are you going?
Your lost and I am gone.
These feelings still showing, but I'm not going anywhere.
Up north.
Up north.
When the words are all wrong and those thoughts never even crossed your mind.
Up north.
Up north.
This time is the last time that you'll hear the words "I'll be fine."
Up north.