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

List of prolific writers

Some writers have had prolific careers with hundreds of their works being published. While some best-selling authors have written a small number of books that have sold millions of copies, others have had lengthy careers and maintained a high level of output year after year. Dame Agatha Christie, the most published novelist in history, is estimated to have sold 4 billion books, having written 69 novels and 19 plays. Her works were published between 1920 and 1976, equating to around three publications every two years. Dame Barbara Cartland has also sold millions of copies of her books but wrote many more than Christie. She spent 80 years as a novelist with 722 books published, averaging one book released every 40 days of her career. While Cartland wrote a significant number of full-length novels, other authors have been published many more times but have specialised in short stories. Spanish author Corín Tellado wrote over 4,000 novellas, selling 400 million copies of her books.

Podcasts:

  • The Writing Process | Master vs Prolific

    This video is about the writing process, are you a master of the craft or a prolific writer? » Join my newsletter and access the free video training, The Follow-Through Formula: How to Complete a Long-Term Writing Project. Click the link here: http://eepurl.com/dyY5aD ♡ ORDER EVERY TIME HE DIES »Amazon Australia: https://amzn.to/2m4IhfD »Amazon UK: https://amzn.to/2m2RzsW » Amazon US: https://amzn.to/2mIWj7b » Booktopia: https://bit.ly/2o9AmhX » Bookdepository: https://bit.ly/2mIVCe5 »Barns & Noble: https://bit.ly/2kzDt1d » Kobo: https://bit.ly/2lJeKHZ »» Visit my blog at https://taraeast.com ♡ Buy My Short Story When Bell Met Bowie »Amazon Australia: https://amzn.to/2WyR1qO »Amazon US: https://amzn.to/2WvMEwz ♡ Please remember to subscribe to my channel ♡ New videos a...

    published: 20 Jan 2021
  • Write Anywhere and Everywhere: Advice from Prolific Author Christina Benjamin

    Interview with Author Christina Benjamin at Amelia Island Book Festival Writers' Workshop in Amelia Island, Florida February 15, 2019 Filmed by Lorraine Haataia Edited by Brandon Haataia Produced by Techie and Writer Video Productions for Prolific Writers Life To see a list of publications by Christina Benjamin, see crownatlanticpublishing.com

    published: 11 Jun 2020
  • Top 10 Most/Least Prolific Fantasy Authors

    𝐒𝐞𝐞 𝐭𝐡𝐞 𝐝𝐚𝐭𝐚 𝐛𝐞𝐡𝐢𝐧𝐝 𝐭𝐡𝐢𝐬 𝐯𝐢𝐝𝐞𝐨 𝐡𝐞𝐫𝐞: https://docs.google.com/spreadsheets/d/1J1H-JDXjaQ2o1agDeIstlS3CCYJYPfS0nk_Mc9JOw6A/edit#gid=445682374 𝐒𝐮𝐩𝐩𝐨𝐫𝐭 𝐭𝐡𝐞 𝐂𝐡𝐚𝐧𝐧𝐞𝐥: Patreon: https://www.patreon.com/mattsfantasybookreviews Audible: https://www.audibletrial.com/matt (I receive compensation when you sign up for free trial) 𝐒𝐨𝐜𝐢𝐚𝐥 𝐋𝐢𝐧𝐤𝐬: Discord: https://discord.gg/SbrEfnzKht Twitter: https://twitter.com/MattBookReviews Goodreads: https://www.goodreads.com/mattsfantasybookreview 𝐂𝐨𝐧𝐭𝐚𝐜𝐭 𝐌𝐞: mattsfantasybookreviews@gmail.com #fantasybooks #bookreview #bestbooks #fantasybooks #booktube #booktuber #books #bookstagram #bookworm #booklover #booknerd #bookish #book #reading #read #booktubers

    published: 19 Mar 2023
  • Prolific Author Reveals Secret to Writing Books: Kevin Tumlinson

    Prolific author of thriller novels, Kevin Tumlinson, shares his workflow for developing and writing high-quality books. Find out how he's a pantser, but still outlines his content. Also, discover the secret to writing a deep backlog of books. 🤓 Kevin Tumlinson - https://KevinTumlinson.com 🔵 Draft2Digital - https://DaleLinks.com/D2D Level-Up Your Self-Publishing Business TODAY: 🔥 Learn how to publish books that sell when you subscribe to this channel at https://www.youtube.com/channel/UCl9CjdZQtzufqgYx0CidSbA/?sub_confirmation=1 🟣 Join the Channel Memberships - https://www.youtube.com/channel/UCl9CjdZQtzufqgYx0CidSbA/join ================================ 🌟 DALE’S RECOMMENDED VIDEOS 🌟 🍌 Is Publishing on KDP Worth It? https://www.youtube.com/watch?v=Tzy9wsNXw-o&list=PLXCkkWHluK4D6SmgRn...

    published: 13 May 2022
  • How to be Prolific - Anthony Trollope

    This video is part of a large public self development experiment that I'm doing on myself to improve reading retention and video presentation. Click here to learn more:- https://www.youtube.com/watch?v=Cj5VaqBLW8w Visit my site for more personal development goodness:- http://warriorhabits.com/how-to-be-prolific-a-look-into-the-mindsets-of-prolific-creators/ He published 47 novels on top of an array of other publications in 38 years. His ability to publish works so prolifically left him the envy of many authors who didn't understand how he could achieve such a rate. He said that he was never late for a deadline and while one book was being published, he'd usually have two or three finished ready to go. He's one of the most prolific writers of his generation. So how did he do it? I...

    published: 05 Sep 2017
  • Writing Tips: How To Be A Prolific Writer With Bec Evans From Prolifiko

    Get your Free Author 2.0 Blueprint at: http://www.TheCreativePenn.com/blueprint Why is being prolific so important for long-term success as a writer? And how can you develop your own creative process so you can be more prolific? I discuss these topics and more with Bec Evans from Prolifiko in today's interview. Bec Evans is a writer, a startup founder and an ex-bookseller with a career in publishing and running a writing retreat center. She co-founded Prolifiko, a digital coach for writing that helps people who want to write, start, and finish their projects. Show Notes Seeing patterns of behaviour in writers Why being prolific does not equal poor quality How being a prolific writer serves improving your writing skill The benefits of prolificacy for creating a large back list Practic...

    published: 14 Oct 2018
  • He Wrote How Many Books???? | Most Prolific Living Author

    published: 01 Apr 2023
  • To Do List Power - Become a Prolific, Top-Selling Writer.mp4

    http://www.writingchallenge.net/power/todolist.html Become a prolific, top-selling writer. Write FAST and well, and make more money than you've ever made. In today's writing climate, you can and SHOULD aim to make $1,000 a day. My new program, "To Do List Power: Use Your To Do List to Make $1,000 a Day" is your key to writing success.

    published: 01 May 2012
  • Q&A | THE ONE RING | MORIA: Through the doors of Durin with Game Designer FRANCESCO NEPITELLO

    Thanks for watching! Liked the video? Just click SUBSCRIBE! Discounts: Eldritch Foundry - Get a 10% Discount use code BADGER24 For more videos and live streams join the Band here: https://www.youtube.com/bandofbadgers https://www.twitch.tv/bandofbadgers Follow the Band: Twitter: https://twitter.com/RPGBadgers Facebook: https://www.facebook.com/bandofbadgers Instagram: https://www.instagram.com/bandofbadgers Support the Band: Merchandise: https://store.streamelements.com/bandofbadgers Patreon: https://www.patreon.com/bandofbadgers Amazon Wish List: https://www.amazon.co.uk/hz/wishlist/ls/29YHPEXZMKE4T?ref_=wl_share If you enjoyed this, we have several other series including: Q&A Interviews https://youtube.com/playlist?list=PLDxjA_ajtRHoD7esLsfKoRnhVYOGJN6h1&si=i2XM4krhYfXQvmv8 Unboxin...

    published: 24 Aug 2024
  • Secrets Of A Prolific Writer With J.D.Sawyer

    Get your free Author 2.0 Blueprint at: http://www.TheCreativePenn.com/blueprint In this interview, author and polymath J.D.Sawyer talks about taking his word count to 4000-5000 per day as well as working with a writing partner and while on a treadmill Dan is the author of sci-fi books The Antithesis Progression as well as hard-boiled mysteries in the Clarke Lantham mysteries as well as being a prolific podcaster. The video gets out of synch with our discussion which makes this a funny, as well as informative, video interview! (Check out Dan's ninja moment at 06:30 and me cracking up)

    published: 02 May 2011
The Writing Process | Master vs Prolific
9:52

The Writing Process | Master vs Prolific

  • Order:
  • Duration: 9:52
  • Uploaded Date: 20 Jan 2021
  • views: 406
This video is about the writing process, are you a master of the craft or a prolific writer? » Join my newsletter and access the free video training, The Follow-Through Formula: How to Complete a Long-Term Writing Project. Click the link here: http://eepurl.com/dyY5aD ♡ ORDER EVERY TIME HE DIES »Amazon Australia: https://amzn.to/2m4IhfD »Amazon UK: https://amzn.to/2m2RzsW » Amazon US: https://amzn.to/2mIWj7b » Booktopia: https://bit.ly/2o9AmhX » Bookdepository: https://bit.ly/2mIVCe5 »Barns & Noble: https://bit.ly/2kzDt1d » Kobo: https://bit.ly/2lJeKHZ »» Visit my blog at https://taraeast.com ♡ Buy My Short Story When Bell Met Bowie »Amazon Australia: https://amzn.to/2WyR1qO »Amazon US: https://amzn.to/2WvMEwz ♡ Please remember to subscribe to my channel ♡ New videos are posted every Thursday #authortube #writersonwriting #writingadvice
https://wn.com/The_Writing_Process_|_Master_Vs_Prolific
Write Anywhere and Everywhere: Advice from Prolific Author Christina Benjamin
5:26

Write Anywhere and Everywhere: Advice from Prolific Author Christina Benjamin

  • Order:
  • Duration: 5:26
  • Uploaded Date: 11 Jun 2020
  • views: 665
Interview with Author Christina Benjamin at Amelia Island Book Festival Writers' Workshop in Amelia Island, Florida February 15, 2019 Filmed by Lorraine Haataia Edited by Brandon Haataia Produced by Techie and Writer Video Productions for Prolific Writers Life To see a list of publications by Christina Benjamin, see crownatlanticpublishing.com
https://wn.com/Write_Anywhere_And_Everywhere_Advice_From_Prolific_Author_Christina_Benjamin
Top 10 Most/Least Prolific Fantasy Authors
11:02

Top 10 Most/Least Prolific Fantasy Authors

  • Order:
  • Duration: 11:02
  • Uploaded Date: 19 Mar 2023
  • views: 5927
𝐒𝐞𝐞 𝐭𝐡𝐞 𝐝𝐚𝐭𝐚 𝐛𝐞𝐡𝐢𝐧𝐝 𝐭𝐡𝐢𝐬 𝐯𝐢𝐝𝐞𝐨 𝐡𝐞𝐫𝐞: https://docs.google.com/spreadsheets/d/1J1H-JDXjaQ2o1agDeIstlS3CCYJYPfS0nk_Mc9JOw6A/edit#gid=445682374 𝐒𝐮𝐩𝐩𝐨𝐫𝐭 𝐭𝐡𝐞 𝐂𝐡𝐚𝐧𝐧𝐞𝐥: Patreon: https://www.patreon.com/mattsfantasybookreviews Audible: https://www.audibletrial.com/matt (I receive compensation when you sign up for free trial) 𝐒𝐨𝐜𝐢𝐚𝐥 𝐋𝐢𝐧𝐤𝐬: Discord: https://discord.gg/SbrEfnzKht Twitter: https://twitter.com/MattBookReviews Goodreads: https://www.goodreads.com/mattsfantasybookreview 𝐂𝐨𝐧𝐭𝐚𝐜𝐭 𝐌𝐞: mattsfantasybookreviews@gmail.com #fantasybooks #bookreview #bestbooks #fantasybooks #booktube #booktuber #books #bookstagram #bookworm #booklover #booknerd #bookish #book #reading #read #booktubers
https://wn.com/Top_10_Most_Least_Prolific_Fantasy_Authors
Prolific Author Reveals Secret to Writing Books: Kevin Tumlinson
23:58

Prolific Author Reveals Secret to Writing Books: Kevin Tumlinson

  • Order:
  • Duration: 23:58
  • Uploaded Date: 13 May 2022
  • views: 516
Prolific author of thriller novels, Kevin Tumlinson, shares his workflow for developing and writing high-quality books. Find out how he's a pantser, but still outlines his content. Also, discover the secret to writing a deep backlog of books. 🤓 Kevin Tumlinson - https://KevinTumlinson.com 🔵 Draft2Digital - https://DaleLinks.com/D2D Level-Up Your Self-Publishing Business TODAY: 🔥 Learn how to publish books that sell when you subscribe to this channel at https://www.youtube.com/channel/UCl9CjdZQtzufqgYx0CidSbA/?sub_confirmation=1 🟣 Join the Channel Memberships - https://www.youtube.com/channel/UCl9CjdZQtzufqgYx0CidSbA/join ================================ 🌟 DALE’S RECOMMENDED VIDEOS 🌟 🍌 Is Publishing on KDP Worth It? https://www.youtube.com/watch?v=Tzy9wsNXw-o&list=PLXCkkWHluK4D6SmgRnN0Aevrtekfy5tyw 🍌 Self-Published Book Unboxing Series – Who is the Best Print on Demand Platform? https://www.youtube.com/watch?v=jaCvij_kdmU&list=PLXCkkWHluK4ALg3X7rmx10fvX4Rv9xEg6 🍌 Amazon Advertising for Books https://www.youtube.com/watch?v=n-Kr6T6IM8M&list=PLXCkkWHluK4AzQwnVCDCMPbhAu7YrGw7u ================================ Join the indie author and self publishing community at… 🔵 Facebook - https://www.facebook.com/groups/selfpublishingbooks/ 🟢 Discord - http://dalelinks.com/discord 🤔 Do you enjoy the content on Self-Publishing with Dale? Would you like to help the cause? Join the YouTube Channel Membership! Details are at https://www.youtube.com/channel/UCl9CjdZQtzufqgYx0CidSbA/join ================================ Are you ready to level up your self-publishing game? Then, get your hands on the premium tools I use and wholeheartedly endorse: 📝 Grammarly – The #1 online grammar checker https://DaleLinks.com/Grammarly 📚 Publisher Rocket - Publisher Rocket will help get your book in front of more Amazon shoppers. https://DaleLinks.com/Rocket ✍ Rev – Stop toiling away behind the keyboard. Don’t spend another dime on cheaply outsourced writers. Dictate your next book and have it transcribed by Rev. Visit https://DaleLinks.com/Rev. ================================ 🤔 Do you have any special requests? Would you like to know about something and aren't sure where to start? Drop a comment, I respond to all comments. ================================ 🔴🔴🔴 Most outbound links financially benefit me and the channel through affiliate programs. The affiliate relationship in no way influences my opinion and I would not endorse programs, products or services I didn't use or can stand confidently behind. 🔴🔴🔴
https://wn.com/Prolific_Author_Reveals_Secret_To_Writing_Books_Kevin_Tumlinson
How to be Prolific - Anthony Trollope
6:29

How to be Prolific - Anthony Trollope

  • Order:
  • Duration: 6:29
  • Uploaded Date: 05 Sep 2017
  • views: 10762
This video is part of a large public self development experiment that I'm doing on myself to improve reading retention and video presentation. Click here to learn more:- https://www.youtube.com/watch?v=Cj5VaqBLW8w Visit my site for more personal development goodness:- http://warriorhabits.com/how-to-be-prolific-a-look-into-the-mindsets-of-prolific-creators/ He published 47 novels on top of an array of other publications in 38 years. His ability to publish works so prolifically left him the envy of many authors who didn't understand how he could achieve such a rate. He said that he was never late for a deadline and while one book was being published, he'd usually have two or three finished ready to go. He's one of the most prolific writers of his generation. So how did he do it? I picked up this from the great book, Willpower: - He woke up early (at 0530), had a coffee, and spent the next half hour reading the previous day's work to get himself in the right voice. - He then wrote for 2 and a half hours, monitoring the time with a watch placed on the table. By breakfast he could produce 2,500 words. - He kept a running log of his word count, planning for 10,000 words per week. Resources:- My book list:- https://docs.google.com/spreadsheets/d/1xgJLJlgtrl2sIcNqQMDoEXG9DQFpdS94bNFZ6r6-ABg/edit?usp=sharing Get me on Facebook here:- https://www.facebook.com/paj.mccarthy
https://wn.com/How_To_Be_Prolific_Anthony_Trollope
Writing Tips: How To Be A Prolific Writer With Bec Evans From Prolifiko
34:53

Writing Tips: How To Be A Prolific Writer With Bec Evans From Prolifiko

  • Order:
  • Duration: 34:53
  • Uploaded Date: 14 Oct 2018
  • views: 8525
Get your Free Author 2.0 Blueprint at: http://www.TheCreativePenn.com/blueprint Why is being prolific so important for long-term success as a writer? And how can you develop your own creative process so you can be more prolific? I discuss these topics and more with Bec Evans from Prolifiko in today's interview. Bec Evans is a writer, a startup founder and an ex-bookseller with a career in publishing and running a writing retreat center. She co-founded Prolifiko, a digital coach for writing that helps people who want to write, start, and finish their projects. Show Notes Seeing patterns of behaviour in writers Why being prolific does not equal poor quality How being a prolific writer serves improving your writing skill The benefits of prolificacy for creating a large back list Practical tips for being more prolific The importance of systems, support and place when creating a writing habit Mindset issues around being prolific Why writing is like physical fitness Finding what works for you to form a writing habit, rather than following others’ rules which might not fit You can find Bec Evans at Prolifiko.com and on Twitter @beprolifiko You can always find the show notes and links at: http://www.thecreativepenn.com/podcasts/
https://wn.com/Writing_Tips_How_To_Be_A_Prolific_Writer_With_Bec_Evans_From_Prolifiko
He Wrote How Many Books???? | Most Prolific Living Author
0:56

He Wrote How Many Books???? | Most Prolific Living Author

  • Order:
  • Duration: 0:56
  • Uploaded Date: 01 Apr 2023
  • views: 232
https://wn.com/He_Wrote_How_Many_Books_|_Most_Prolific_Living_Author
To Do List Power - Become a Prolific, Top-Selling Writer.mp4
2:44

To Do List Power - Become a Prolific, Top-Selling Writer.mp4

  • Order:
  • Duration: 2:44
  • Uploaded Date: 01 May 2012
  • views: 224
http://www.writingchallenge.net/power/todolist.html Become a prolific, top-selling writer. Write FAST and well, and make more money than you've ever made. In today's writing climate, you can and SHOULD aim to make $1,000 a day. My new program, "To Do List Power: Use Your To Do List to Make $1,000 a Day" is your key to writing success.
https://wn.com/To_Do_List_Power_Become_A_Prolific,_Top_Selling_Writer.Mp4
Q&A | THE ONE RING | MORIA: Through the doors of Durin with Game Designer FRANCESCO NEPITELLO
1:02:44

Q&A | THE ONE RING | MORIA: Through the doors of Durin with Game Designer FRANCESCO NEPITELLO

  • Order:
  • Duration: 1:02:44
  • Uploaded Date: 24 Aug 2024
  • views: 103
Thanks for watching! Liked the video? Just click SUBSCRIBE! Discounts: Eldritch Foundry - Get a 10% Discount use code BADGER24 For more videos and live streams join the Band here: https://www.youtube.com/bandofbadgers https://www.twitch.tv/bandofbadgers Follow the Band: Twitter: https://twitter.com/RPGBadgers Facebook: https://www.facebook.com/bandofbadgers Instagram: https://www.instagram.com/bandofbadgers Support the Band: Merchandise: https://store.streamelements.com/bandofbadgers Patreon: https://www.patreon.com/bandofbadgers Amazon Wish List: https://www.amazon.co.uk/hz/wishlist/ls/29YHPEXZMKE4T?ref_=wl_share If you enjoyed this, we have several other series including: Q&A Interviews https://youtube.com/playlist?list=PLDxjA_ajtRHoD7esLsfKoRnhVYOGJN6h1&si=i2XM4krhYfXQvmv8 Unboxing and Reviews https://youtube.com/playlist?list=PLDxjA_ajtRHoArm9AyPveGxqHj0YHnTCL&si=K5JtvRVUZ2kMI5rS Game Room Tours https://youtube.com/playlist?list=PLDxjA_ajtRHqNyOSyYE0Iq23MsgwiQspv&si=wfn067O_WkrGVZT9 The Great British Brush Off https://youtube.com/playlist?list=PLDxjA_ajtRHrtgj5PoiqkBEPxhVnh-sKY&si=IWtE3xqywWfqOkqG Behind the Screen https://youtube.com/playlist?list=PLDxjA_ajtRHruVXKTn1F0Fbk8DiUN10UP&si=SgSZkaudXI8OWg6D and so much more! Thank you for watching! We hope to see you again! #dungeonsanddragons #pathfinder #unboxing #kickstarter #gaming #miniatures #interviews #gamerooms #bandofbadgers #beadleandgrimms
https://wn.com/Q_A_|_The_One_Ring_|_Moria_Through_The_Doors_Of_Durin_With_Game_Designer_Francesco_Nepitello
Secrets Of A Prolific Writer With J.D.Sawyer
24:38

Secrets Of A Prolific Writer With J.D.Sawyer

  • Order:
  • Duration: 24:38
  • Uploaded Date: 02 May 2011
  • views: 4134
Get your free Author 2.0 Blueprint at: http://www.TheCreativePenn.com/blueprint In this interview, author and polymath J.D.Sawyer talks about taking his word count to 4000-5000 per day as well as working with a writing partner and while on a treadmill Dan is the author of sci-fi books The Antithesis Progression as well as hard-boiled mysteries in the Clarke Lantham mysteries as well as being a prolific podcaster. The video gets out of synch with our discussion which makes this a funny, as well as informative, video interview! (Check out Dan's ninja moment at 06:30 and me cracking up)
https://wn.com/Secrets_Of_A_Prolific_Writer_With_J.D.Sawyer
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Writing Process | Master vs Prolific
    9:52
    The Writing Process | Master vs Prolificremove from playlist
  • Write Anywhere and Everywhere: Advice from Prolific Author Christina Benjamin
    5:26
    Write Anywhere and Everywhere: Advice from Prolific Author Christina Benjaminremove from playlist
  • Top 10 Most/Least Prolific Fantasy Authors
    11:02
    Top 10 Most/Least Prolific Fantasy Authorsremove from playlist
  • Prolific Author Reveals Secret to Writing Books: Kevin Tumlinson
    23:58
    Prolific Author Reveals Secret to Writing Books: Kevin Tumlinsonremove from playlist
  • How to be Prolific - Anthony Trollope
    6:29
    How to be Prolific - Anthony Trolloperemove from playlist
  • Writing Tips: How To Be A Prolific Writer With Bec Evans From Prolifiko
    34:53
    Writing Tips: How To Be A Prolific Writer With Bec Evans From Prolifikoremove from playlist
  • To Do List Power - Become a Prolific, Top-Selling Writer.mp4
    2:44
    To Do List Power - Become a Prolific, Top-Selling Writer.mp4remove from playlist
  • Q&A | THE ONE RING | MORIA: Through the doors of Durin with Game Designer FRANCESCO NEPITELLO
    1:02:44
    Q&A | THE ONE RING | MORIA: Through the doors of Durin with Game Designer FRANCESCO NEPITELLOremove from playlist
  • Secrets Of A Prolific Writer With J.D.Sawyer
    24:38
    Secrets Of A Prolific Writer With J.D.Sawyerremove from playlist
PLAYLIST TIME: 0:00 / 3:02:42

The Writing Process | Master vs Prolific

This video is about the writing process, are you a master of the craft or a prolific writer? » Join my newsletter and access the free video training, The Follow-Through Formula: How to Complete a Long-Term Writing Project. Click the link here: http://eepurl.com/dyY5aD ♡ ORDER EVERY TIME HE DIES »Amazon Australia: https://amzn.to/2m4IhfD »Amazon UK: https://amzn.to/2m2RzsW » Amazon US: https://amzn.to/2mIWj7b » Booktopia: https://bit.ly/2o9AmhX » Bookdepository: https://bit.ly/2mIVCe5 »Barns & Noble: https://bit.ly/2kzDt1d » Kobo: https://bit.ly/2lJeKHZ »» Visit my blog at https://taraeast.com ♡ Buy My Short Story When Bell Met Bowie »Amazon Australia: https://amzn.to/2WyR1qO »Amazon US: https://amzn.to/2WvMEwz ♡ Please remember to subscribe to my channel ♡ New videos are posted every Thursday #authortube #writersonwriting #writingadvice
9:52
The Writing Process | Master vs Prolific
This video is about the writing process, are you a master of the craft or a prolific write...
published: 20 Jan 2021
Play in Full Screen
5:26
Write Anywhere and Everywhere: Advice from Prolific Author Christina Benjamin
Interview with Author Christina Benjamin at Amelia Island Book Festival Writers' Workshop...
published: 11 Jun 2020
Play in Full Screen
11:02
Top 10 Most/Least Prolific Fantasy Authors
𝐒𝐞𝐞 𝐭𝐡𝐞 𝐝𝐚𝐭𝐚 𝐛𝐞𝐡𝐢𝐧𝐝 𝐭𝐡𝐢𝐬 𝐯𝐢𝐝𝐞𝐨 𝐡𝐞𝐫𝐞: https://docs.google.com/spreadsheets/d/1J1H-JDXjaQ2o1...
published: 19 Mar 2023
Play in Full Screen
23:58
Prolific Author Reveals Secret to Writing Books: Kevin Tumlinson
Prolific author of thriller novels, Kevin Tumlinson, shares his workflow for developing an...
published: 13 May 2022
Play in Full Screen
6:29
How to be Prolific - Anthony Trollope
This video is part of a large public self development experiment that I'm doing on myself ...
published: 05 Sep 2017
Play in Full Screen
34:53
Writing Tips: How To Be A Prolific Writer With Bec Evans From Prolifiko
Get your Free Author 2.0 Blueprint at: http://www.TheCreativePenn.com/blueprint Why is ...
published: 14 Oct 2018
Play in Full Screen
0:56
He Wrote How Many Books???? | Most Prolific Living Author
published: 01 Apr 2023
Play in Full Screen
2:44
To Do List Power - Become a Prolific, Top-Selling Writer.mp4
http://www.writingchallenge.net/power/todolist.html Become a prolific, top-selling writer....
published: 01 May 2012
Play in Full Screen
1:02:44
Q&A | THE ONE RING | MORIA: Through the doors of Durin with Game Designer FRANCESCO NEPITELLO
Thanks for watching! Liked the video? Just click SUBSCRIBE! Discounts: Eldritch Foundry -...
published: 24 Aug 2024
Play in Full Screen
24:38
Secrets Of A Prolific Writer With J.D.Sawyer
Get your free Author 2.0 Blueprint at: http://www.TheCreativePenn.com/blueprint In this i...
published: 02 May 2011
Play in Full Screen

List of prolific writers

Some writers have had prolific careers with hundreds of their works being published. While some best-selling authors have written a small number of books that have sold millions of copies, others have had lengthy careers and maintained a high level of output year after year. Dame Agatha Christie, the most published novelist in history, is estimated to have sold 4 billion books, having written 69 novels and 19 plays. Her works were published between 1920 and 1976, equating to around three publications every two years. Dame Barbara Cartland has also sold millions of copies of her books but wrote many more than Christie. She spent 80 years as a novelist with 722 books published, averaging one book released every 40 days of her career. While Cartland wrote a significant number of full-length novels, other authors have been published many more times but have specialised in short stories. Spanish author Corín Tellado wrote over 4,000 novellas, selling 400 million copies of her books.

'); } 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: prolific author

Edit

How to livestream conversation with Black romance pioneer Beverly Jenkins

The Herald-Times - Bloomington 13 Feb 2025
Beverly Jenkins, among the most prolific and celebrated authors of the Black romance genre, will visit Indiana University’s Lilly Library today for a Valentine’s Day-oriented conversation about romance novels ... Herald-Times ... Beverly Jenkins ... HT ... BJ ... HT ... BJ.
Edit

America first, Africa when? The time for self-reliance is now

B & FT Online 12 Feb 2025
GDP comparisons ... Nigeria ... He is also the past chairman of the Public Procurement Authority. A prolific author of over 90 publications, he is the creator of NyansaKasa (Words of Wisdom), a thought-provoking platform with over one million daily readers.
Edit

Margaret Atwood Announces Her Long-Hoped-for Memoir

Vogue 11 Feb 2025
... most prolific authors, who, since 1969, has written 17 novels, as well as 19 books of poetry, 11 nonfiction works, nine short story collections, eight children’s books, and three graphic novels.).
Edit

Church of England meets after series of abuse scandals

Knoxville Daily Sun 10 Feb 2025
- 'Prolific' abuser -. Welby announced his resignation in November after the independent Makin probe found that he "could and should" have formally reported decades of abuse by Church-linked lawyer Smyth to authorities in 2013.�.
Edit

Church of England meets amid 'crisis' over abuse scandals

Knoxville Daily Sun 10 Feb 2025
- 'Prolific' abuser -. Welby announced his resignation in November after the independent Makin probe found that he "could and should" have formally reported decades of abuse by Church-linked lawyer Smyth to authorities in 2013.�.
Edit

UK Anglicans meet after Church of England hit by scandals

Khaleejtimes 10 Feb 2025
Welby announced his resignation in November after an independent probe found that he "could and should" have formally reported decades of abuse by Church-linked lawyer Smyth to authorities in 2013.
Edit

In the 1600s, a Yolŋu girl was kidnapped from an Australian beach. Centuries later her story is a novel

The Observer 10 Feb 2025
In her author’s note, Norrington writes that her adoptive mum “was a skilful and prolific storyteller” who believed “that if people could get to know each other through personal experience, and/or its ...
Edit

American Pravda: Charles A. Lindbergh and the America First Movement, by Ron Unz

The Unz Review 10 Feb 2025
Brands is a prolific author and although his book ran well over 400 pages, he apparently produced it in just a single year despite maintaining a considerable teaching load at the Austin campus of the ...
Edit

Onyx Storm Highlights How Violet Does Things Differently Due To Her Joint Issues. How Rebecca Yarros Does The Same With Ehlers-Danlos Syndrome In Real Life

Cinema Blend 09 Feb 2025
... a condition the romantic author also deals with in her own life ... We’ve known for a while now the generally prolific author is taking a break before producing the fourth Empyrean series book.
Edit

I exposed my friend Amanda Riley's sick scam and got her jailed after she conned ...

The Daily Mail 08 Feb 2025
‘She was just so prolific ... Berry wasn’t sure how best to get authorities digging into Riley ... Federal authorities and the IRS got involved in the investigation and, in July 2020, Riley was charged with ...
Edit

Author Mac Barnett named new National Ambassador for Young People’s Literature

Black Hills Pioneer 07 Feb 2025
NEW YORK (AP) — The new National Ambassador for Young People’s Literature i s a prolific, best-selling author of children’s books who hopes to use his two-year term to promote the wonders of picture stories ....
Edit

William Sitwell reviews Starling, Esher: ‘A spick and span menu that’s a pleasure to navigate’

AOL 07 Feb 2025
There are, in my experience, three types of starling. The first is the bird variety, warbling and whistling among its flock, dark-feathered but more colourful on closer inspection ... He’s now called Boris and is a prolific author ... .
Edit

AI is developing fast, but regulators must be faster

The Observer 07 Feb 2025
if we create conscious AI (whether deliberately or inadvertently) then we would have a duty not to cause it to suffer ... At best, I can broadly mimic the style of some of the more prolific authors. This is like AI training ... This is like processing by AI ... .
Edit

The Inconvenient Truth: The obsession with image destroying: Africa’s misguided path to accountability

B & FT Online 06 Feb 2025
Sadly, it does not work ... He is also the past chairman of the Public Procurement Authority. A prolific author of over 90 publications, he is the creator of NyansaKasa (Words of Wisdom), a thought-provoking platform with over one million daily readers.
Edit

Stephen King was unmasked as Richard Bachman 40 years ago this week

Bangor Daily News 05 Feb 2025
The first was that publishers frowned upon releasing more than one book per author per year, and seeking to keep up with his prolific pace without saturating the market, he began publishing under a different name.
×