Brandon Sanderson Wired article sparks online backlash as author issues response

American publication Wired is facing ire from fans and critics alike for its profile on author Brandon Sanderson, known for his sci-fi and fantasy works. The article in question, written by Jason Kehe, was published on Thursday, March 24, 2023, and titled "Brandon Sanderson Is Your God."

Sanderson is known for his The Stormlight Archive, and the Mistborn series set in an original fictional universe called Cosmere. He also wrote the final books in the series The Wheel of Time after its author Robert Jordan passed away in 2007.

youtube-cover

However, Kehe found the fantasy writer uninspiring both as an author and an individual. He wrote:

"Sanderson talks a lot, but almost none of it is usable, quotable."

At another point in the article, he adds:

"IT’S NOT THAT Brandon Sanderson can’t write. It’s more that he can’t not write.

Despite the success of his books, Sanderson was largely an unknown personality to mainstream readers until the aforementioned profile was published. The cynical article has since gone viral and many have taken to social media to call out Kehe for his amateurish and pretentious tone.


"All pretentious and hardly satire": Wired article slammed online for amateurish profile on Brandon Sanderson

As Sanderson's profile written by Jason Kehe went viral, internet users condemned the author for his ignorant, disrespectful, and bland writing. While Sanderson's fans came to his defense, Twitterati, even those who were unaware of the author, called out the "disrespectful" article.

Those who were familiar with Sanderson's life and work pointed out that there were many other faults of the high-fantasy writer, including his donations to the extreme Mormon Church, infamous for its "conversion therapy" and teaching at an "anti-lgbt and s*xual assualt-ridden university."

However, user @lucidaluminia mentioned how Kehe "chose to come off as an a**hole."

A comment criticizing the Wired article (Image via Twitter/ @lucidalumina)
A comment criticizing the Wired article (Image via Twitter/ @lucidalumina)

User @scottew sarcastically stated:

Twitterati refused to share any comments with a re-tweet of the article as it would "give a platform" to the piece. User @authorjla remarked:

"OK, so I read the Brandon Sanderson article in Wired. I'm not going to share it, because it doesn't deserve it..."

Here are some more comments seen on Twitter criticizing the Wired article:

A comment criticizing the Wired article (Image via Twitter/ @OBoyleWrites)
A comment criticizing the Wired article (Image via Twitter/ @OBoyleWrites)
A comment criticizing the Wired article (Image via Twitter/ @mermaid_momma)
A comment criticizing the Wired article (Image via Twitter/ @mermaid_momma)
A comment criticizing the Wired article (Image via Twitter/ @BrianTMClellan)
A comment criticizing the Wired article (Image via Twitter/ @BrianTMClellan)
A comment criticizing the Wired article (Image via Twitter/ @1mpavidus)
A comment criticizing the Wired article (Image via Twitter/ @1mpavidus)

Brandon Sanderson asks fans to calm down as they slam Jason Kehe

In response to the public outcry, the Elantris author shared a letter with his fans on Reddit where he thanked the community for standing up for him. Brandon Sanderson, added:

"As a community, let’s take a deep breath. It’s all right. I appreciate you standing up for me, but please leave Jason alone."

The author stated that Kehe was honest and even agreed that he was not the most exciting and interesting person but added that he loved his work. He also remarked that the profile was not an attack on the community.

youtube-cover

He concluded his response by reinforcing that he bears no ill-will towards Jason, calling him a "sincere man," requesting that his fans "leave him alone."

Quick Links

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1446816, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1446816); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1446816) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1446816) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();

You Might Also Like