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

Locus Award

The Locus Awards are an annual set of literary awards by the science fiction and fantasy magazine Locus, a monthly based in Oakland, California. The award winners are selected by poll of magazine readers.

Currently, the awards are presented at an annual banquet. The publishers of winning works are honored with certificates, which is unique in the field.

The awards were inaugurated in 1971 for publication year 1970 and the original purpose was to influence the Hugo Awards.

Winners

The following have won the most awards as of July 2011:

  • Gardner Dozois* (35)
  • Michael Whelan** (28)
  • Ursula K. Le Guin (21)
  • Harlan Ellison (18)
  • Neil Gaiman (13)
  • Dan Simmons (12)
  • Terry Carr* (11)
  • George R. R. Martin (11)
  • Arnie & Cathy Fenner (10)**
  • John Varley (10)
  • Connie Willis (10)
  • Robert Silverberg (9)
  • Orson Scott Card (8)
  • Lucius Shepard (8)
  • Isaac Asimov (7)
  • Ellen Datlow* (7)
  • China Miéville (6)
  • Kim Stanley Robinson (6)
  • Gene Wolfe (6)
  • * indicates that all wins came in editing categories.
    ** indicates that all wins came in art-related categories.

    Podcasts:

    • Locus Awards Ceremony 2022

      MC Connie Willis, plus Locus staff and reviewers, present the winners of the 2022 Locus Awards, on Saturday, June 25, 2022, in an online presentation. Congratulations to all the finalists and winners! Please like and subscribe to our channel, for weekly updates on New Books and more!!

      published: 25 Jun 2022
    • 2023 Locus Awards Ceremony (rebuild)

      The 2023 Locus Awards Ceremony! Due to some technical obstacles, we were unable to capture the beginning of the ceremony. We have put together the finalist slides and the acceptance speeches for the first couple of categories, and then the video begins at Best Editor. Thank you for your patience and understanding. This was our first attempt at live streaming the awards. We will do a better job of it next year, and promise to make new and different mistakes. If you are a Locus Awards ticket holder, all of the reading and panels are available to watch at the Locus Awards Schedule page, https://locusmag.com/locus-awards-online-2023-schedule-of-events/. If you are new to Locus, go check out our site and magazine at www.locusmag.com! Music by the amazing Victor Natas. Check out his stuff at ...

      published: 20 Jul 2023
    • 2024 Locus Awards Ceremony

      Welcome to the 2024 Locus Awards! Sit back and enjoy the show as your host Emperor Stardust leads us through the awards categories, plus our fabulous keynote speaker Cory Doctorow! If this is laggy, please try our public Zoom link https://zoom.us/j/91777604081?pwd=cJBQRE1NJUzQ65PCLdQ6l3IbEJ1yrQ.1 Like and subscribe to our channel for weekly updates on New Books and more! https://www.youtube.com/channel/UCJJq-geoW2j1y0qdLcE8Kig

      published: 23 Jun 2024
    • Locus Award Acceptance Speech for The Kaiju Preservation Society

      Hey! My novel The Kaiju Preservation Society won the 2023 Locus Award for Best Science Fiction novel! I was not expecting that. I did, however, send in an acceptance speech video because I was not able to attend the ceremony. Here it is. Thank you to everyone who voted for it!

      published: 25 Jun 2023
    • Locus Awards Ceremony 2021

      MC Connie Willis, plus Locus staff and reviewers, present the winners of the 2021 Locus Awards. Congratulations to all the finalists and winners!

      published: 26 Jun 2021
    • The Magic of Terry Pratchett Locus Awards 2021 acceptance speech

      My book, The Magic of Terry Pratchett, won the award for Best Non-Fiction at the 2021 Locus awards and I'm a bit overwhelmed. Here's the acceptance speech the producers asked me to provide!

      published: 27 Jun 2021
    • Accepting the Locus Award for Best Short Story Collection for BOYS, BEASTS, & MEN.

      Since I couldn't attend the Locus Award ceremony in person, and they asked all the nominees to send short acceptance videos... I recorded this ridiculous video while on vacation in Iceland, with tongue planted firmly in cheek... big big thanks as always to my husband Juancy for being my cinematographer!

      published: 25 Jun 2023
    • Locus | Animation | Short Film | Multi-Award Winning Animation Film

      Everybody knows this feeling: the monotonous rhythm of the train, the landscape moving fast outside, and a head full of thoughts. Time slows down, encouraging an inner journey as a lonely woman sinks deeper and deeper into her memories. Stars: N/A Directed by Alisha Heng Subscribe to Stash - Film Shorts - https://www.youtube.com/channel/UCxwqxVloH8ti7bxHI8MQyuw Step into the vibrant and imaginative world of animation. Animated films offer a unique blend of artistry and storytelling that captivates audiences of all ages. From heartwarming tales to hilarious adventures, these films bring to life a universe of characters, worlds, and stories that only the limitless possibilities of animation can deliver. Delight in the creativity, color, and charm of animated films, only on Stash - Film Sh...

      published: 21 Oct 2024
    • Locus Awards Presentation, Online in 2020

      MC Connie Wilis and co-host Daryl Gregory presents the 2020 Locus Awards. Congratulations to all the finalists and winners!

      published: 27 Jun 2020
    • Locus Award for Best Science Fiction Novel | Wikipedia audio article

      This is an audio version of the Wikipedia Article: https://en.wikipedia.org/wiki/Locus_Award_for_Best_Science_Fiction_Novel 00:00:35 Winners 00:00:43 External links Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction...

      published: 29 Mar 2019
    Locus Awards Ceremony 2022
    1:10:34

    Locus Awards Ceremony 2022

    • Order:
    • Duration: 1:10:34
    • Uploaded Date: 25 Jun 2022
    • views: 1716
    MC Connie Willis, plus Locus staff and reviewers, present the winners of the 2022 Locus Awards, on Saturday, June 25, 2022, in an online presentation. Congratulations to all the finalists and winners! Please like and subscribe to our channel, for weekly updates on New Books and more!!
    https://wn.com/Locus_Awards_Ceremony_2022
    2023 Locus Awards Ceremony (rebuild)
    1:23:08

    2023 Locus Awards Ceremony (rebuild)

    • Order:
    • Duration: 1:23:08
    • Uploaded Date: 20 Jul 2023
    • views: 222
    The 2023 Locus Awards Ceremony! Due to some technical obstacles, we were unable to capture the beginning of the ceremony. We have put together the finalist slides and the acceptance speeches for the first couple of categories, and then the video begins at Best Editor. Thank you for your patience and understanding. This was our first attempt at live streaming the awards. We will do a better job of it next year, and promise to make new and different mistakes. If you are a Locus Awards ticket holder, all of the reading and panels are available to watch at the Locus Awards Schedule page, https://locusmag.com/locus-awards-online-2023-schedule-of-events/. If you are new to Locus, go check out our site and magazine at www.locusmag.com! Music by the amazing Victor Natas. Check out his stuff at https://www.youtube.com/channel/UCA8O46_WrQZEhSdZuwFQ3rQ
    https://wn.com/2023_Locus_Awards_Ceremony_(Rebuild)
    2024 Locus Awards Ceremony
    1:16:42

    2024 Locus Awards Ceremony

    • Order:
    • Duration: 1:16:42
    • Uploaded Date: 23 Jun 2024
    • views: 548
    Welcome to the 2024 Locus Awards! Sit back and enjoy the show as your host Emperor Stardust leads us through the awards categories, plus our fabulous keynote speaker Cory Doctorow! If this is laggy, please try our public Zoom link https://zoom.us/j/91777604081?pwd=cJBQRE1NJUzQ65PCLdQ6l3IbEJ1yrQ.1 Like and subscribe to our channel for weekly updates on New Books and more! https://www.youtube.com/channel/UCJJq-geoW2j1y0qdLcE8Kig
    https://wn.com/2024_Locus_Awards_Ceremony
    Locus Award Acceptance Speech for The Kaiju Preservation Society
    1:09

    Locus Award Acceptance Speech for The Kaiju Preservation Society

    • Order:
    • Duration: 1:09
    • Uploaded Date: 25 Jun 2023
    • views: 3057
    Hey! My novel The Kaiju Preservation Society won the 2023 Locus Award for Best Science Fiction novel! I was not expecting that. I did, however, send in an acceptance speech video because I was not able to attend the ceremony. Here it is. Thank you to everyone who voted for it!
    https://wn.com/Locus_Award_Acceptance_Speech_For_The_Kaiju_Preservation_Society
    Locus Awards Ceremony 2021
    1:13:19

    Locus Awards Ceremony 2021

    • Order:
    • Duration: 1:13:19
    • Uploaded Date: 26 Jun 2021
    • views: 856
    MC Connie Willis, plus Locus staff and reviewers, present the winners of the 2021 Locus Awards. Congratulations to all the finalists and winners!
    https://wn.com/Locus_Awards_Ceremony_2021
    The Magic of Terry Pratchett Locus Awards 2021 acceptance speech
    1:43

    The Magic of Terry Pratchett Locus Awards 2021 acceptance speech

    • Order:
    • Duration: 1:43
    • Uploaded Date: 27 Jun 2021
    • views: 783
    My book, The Magic of Terry Pratchett, won the award for Best Non-Fiction at the 2021 Locus awards and I'm a bit overwhelmed. Here's the acceptance speech the producers asked me to provide!
    https://wn.com/The_Magic_Of_Terry_Pratchett_Locus_Awards_2021_Acceptance_Speech
    Accepting the Locus Award for Best Short Story Collection for BOYS, BEASTS, & MEN.
    1:26

    Accepting the Locus Award for Best Short Story Collection for BOYS, BEASTS, & MEN.

    • Order:
    • Duration: 1:26
    • Uploaded Date: 25 Jun 2023
    • views: 229
    Since I couldn't attend the Locus Award ceremony in person, and they asked all the nominees to send short acceptance videos... I recorded this ridiculous video while on vacation in Iceland, with tongue planted firmly in cheek... big big thanks as always to my husband Juancy for being my cinematographer!
    https://wn.com/Accepting_The_Locus_Award_For_Best_Short_Story_Collection_For_Boys,_Beasts,_Men.
    Locus | Animation | Short Film | Multi-Award Winning Animation Film
    10:09

    Locus | Animation | Short Film | Multi-Award Winning Animation Film

    • Order:
    • Duration: 10:09
    • Uploaded Date: 21 Oct 2024
    • views: 28
    Everybody knows this feeling: the monotonous rhythm of the train, the landscape moving fast outside, and a head full of thoughts. Time slows down, encouraging an inner journey as a lonely woman sinks deeper and deeper into her memories. Stars: N/A Directed by Alisha Heng Subscribe to Stash - Film Shorts - https://www.youtube.com/channel/UCxwqxVloH8ti7bxHI8MQyuw Step into the vibrant and imaginative world of animation. Animated films offer a unique blend of artistry and storytelling that captivates audiences of all ages. From heartwarming tales to hilarious adventures, these films bring to life a universe of characters, worlds, and stories that only the limitless possibilities of animation can deliver. Delight in the creativity, color, and charm of animated films, only on Stash - Film Shorts. Stash - Film Shorts on YouTube is a YouTube channel building the largest and most diverse catalog of short films and TV series. Stash is quickly becoming one of the top destinations on YouTube for shorts. ** All of the films on this channel are under legal license from various copyright holders and distributors through Filmhub. For copyright concerns or takedown requests, please contact your Filmhub Account Manager or visit https://filmhub.com and they will help you resolve your issue. ** If you are a filmmaker and want to include your film on this channel, visit https://filmhub.com. ** Check out the IMDb page for more info on this film, https://www.imdb.com/title/tt12893808/ #fullfreemovies #freeyoutubemovies #stashfilmshorts #shortfilm #drama #animation #stopmotion #awardwinning #animation #animatedshorts #stopmotionanimation
    https://wn.com/Locus_|_Animation_|_Short_Film_|_Multi_Award_Winning_Animation_Film
    Locus Awards Presentation, Online in 2020
    41:24

    Locus Awards Presentation, Online in 2020

    • Order:
    • Duration: 41:24
    • Uploaded Date: 27 Jun 2020
    • views: 820
    MC Connie Wilis and co-host Daryl Gregory presents the 2020 Locus Awards. Congratulations to all the finalists and winners!
    https://wn.com/Locus_Awards_Presentation,_Online_In_2020
    Locus Award for Best Science Fiction Novel | Wikipedia audio article
    0:56

    Locus Award for Best Science Fiction Novel | Wikipedia audio article

    • Order:
    • Duration: 0:56
    • Uploaded Date: 29 Mar 2019
    • views: 15
    This is an audio version of the Wikipedia Article: https://en.wikipedia.org/wiki/Locus_Award_for_Best_Science_Fiction_Novel 00:00:35 Winners 00:00:43 External links Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone. Listen on Google Assistant through Extra Audio: https://assistant.google.com/services/invoke/uid/0000001a130b3f91 Other Wikipedia audio articles at: https://www.youtube.com/results?search_query=wikipedia+tts Upload your own Wikipedia articles through: https://github.com/nodef/wikipedia-tts Speaking Rate: 0.8401653169810347 Voice name: en-US-Wavenet-E "I cannot teach anybody anything, I can only make them think." - Socrates SUMMARY ======= Winners of the Locus Award for Best SF Novel, awarded by the Locus magazine. Awards presented in a given year are for works published in the previous calendar year. The award for Best Science Fiction Novel was first presented in 1980, and is among the awards still presented (as of 2016). Previously, there had simply been an award for Best Novel. A similar award for Best Fantasy Novel was also introduced in 1980.
    https://wn.com/Locus_Award_For_Best_Science_Fiction_Novel_|_Wikipedia_Audio_Article
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 6:00:30

    Locus Awards Ceremony 2022

    MC Connie Willis, plus Locus staff and reviewers, present the winners of the 2022 Locus Awards, on Saturday, June 25, 2022, in an online presentation. Congratulations to all the finalists and winners! Please like and subscribe to our channel, for weekly updates on New Books and more!!
    1:10:34
    Locus Awards Ceremony 2022
    MC Connie Willis, plus Locus staff and reviewers, present the winners of the 2022 Locus Aw...
    published: 25 Jun 2022
    Play in Full Screen
    1:23:08
    2023 Locus Awards Ceremony (rebuild)
    The 2023 Locus Awards Ceremony! Due to some technical obstacles, we were unable to capture...
    published: 20 Jul 2023
    Play in Full Screen
    1:16:42
    2024 Locus Awards Ceremony
    Welcome to the 2024 Locus Awards! Sit back and enjoy the show as your host Emperor Stardus...
    published: 23 Jun 2024
    Play in Full Screen
    1:09
    Locus Award Acceptance Speech for The Kaiju Preservation Society
    Hey! My novel The Kaiju Preservation Society won the 2023 Locus Award for Best Science Fic...
    published: 25 Jun 2023
    Play in Full Screen
    1:13:19
    Locus Awards Ceremony 2021
    MC Connie Willis, plus Locus staff and reviewers, present the winners of the 2021 Locus Aw...
    published: 26 Jun 2021
    Play in Full Screen
    1:43
    The Magic of Terry Pratchett Locus Awards 2021 acceptance speech
    My book, The Magic of Terry Pratchett, won the award for Best Non-Fiction at the 2021 Locu...
    published: 27 Jun 2021
    Play in Full Screen
    1:26
    Accepting the Locus Award for Best Short Story Collection for BOYS, BEASTS, & MEN.
    Since I couldn't attend the Locus Award ceremony in person, and they asked all the nominee...
    published: 25 Jun 2023
    Play in Full Screen
    10:09
    Locus | Animation | Short Film | Multi-Award Winning Animation Film
    Everybody knows this feeling: the monotonous rhythm of the train, the landscape moving fas...
    published: 21 Oct 2024
    Play in Full Screen
    41:24
    Locus Awards Presentation, Online in 2020
    MC Connie Wilis and co-host Daryl Gregory presents the 2020 Locus Awards. Congratulations ...
    published: 27 Jun 2020
    Play in Full Screen
    0:56
    Locus Award for Best Science Fiction Novel | Wikipedia audio article
    This is an audio version of the Wikipedia Article: https://en.wikipedia.org/wiki/Locus_Aw...
    published: 29 Mar 2019
    Play in Full Screen

    Locus Award

    The Locus Awards are an annual set of literary awards by the science fiction and fantasy magazine Locus, a monthly based in Oakland, California. The award winners are selected by poll of magazine readers.

    Currently, the awards are presented at an annual banquet. The publishers of winning works are honored with certificates, which is unique in the field.

    The awards were inaugurated in 1971 for publication year 1970 and the original purpose was to influence the Hugo Awards.

    Winners

    The following have won the most awards as of July 2011:

  • Gardner Dozois* (35)
  • Michael Whelan** (28)
  • Ursula K. Le Guin (21)
  • Harlan Ellison (18)
  • Neil Gaiman (13)
  • Dan Simmons (12)
  • Terry Carr* (11)
  • George R. R. Martin (11)
  • Arnie & Cathy Fenner (10)**
  • John Varley (10)
  • Connie Willis (10)
  • Robert Silverberg (9)
  • Orson Scott Card (8)
  • Lucius Shepard (8)
  • Isaac Asimov (7)
  • Ellen Datlow* (7)
  • China Miéville (6)
  • Kim Stanley Robinson (6)
  • Gene Wolfe (6)
  • * indicates that all wins came in editing categories.
    ** indicates that all wins came in art-related categories.

    '); } 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: locus award

    Edit

    A supernatural investigator returns in Madison writer's 'The Tomb of Dragons'

    Milwaukee Journal Sentinel 13 Mar 2025
    "The Goblin Emperor" (2014), which won the Locus Award for best fantasy novel and was nominated for the Nebula, Hugo and World Fantasy awards, launched a sequence of novels set in a richly imagined, ...
    Edit

    The Top 42 Events in Seattle This Week: Mar 10–16, 2025

    The Stranger 10 Mar 2025
    I'll show up in hopes that a sprinkle of the pair's talent rubs off on me—Chiang has won four Hugo, four Nebula, and six Locus Awards, while Lyonne stars in Taika Waititi's ...
    • 1
    ×