comments

Transition from blogging to YouTube - my experience

Reading a Hacker News post linked to a YouTube video yesterday, I spotted this comment by user tomerico:

I think [Shane Wighton's Stuff Made Here YouTube channel] illustrates well the transition from personal blogs to youtube videos.

If you go to his projects blog, https://shane.engineer/ you could see very detailed blog posts in the past that go deeply into the engineering, including code snippets. However, he only really go traction when starting to publish youtube videos, specifically youtube video with a clickbait subject (such as a self aiming basketball hoop).

What YouTube provides is a highly competitive environment that provides creators with constant feedback. This allowed him to identify and his niche as he uploaded more videos. With YouTube, the exposure these projects receive is orders of magnitude higher, while empowering its creators to be self sustainable with ads (and sponsors, patreon, and merch) revenue.

Moving Comments into a Block - Drupal 7

[Note: It looks like there's a new module, as of January 2013, Node Comment Block, which uses the technique outlined below to move comments into a block.]

Most of the time, Drupal's convention of printing comments and the comment form inside the node template (node.tpl.php) is desirable, and doesn't cause any headaches.

However, I've had a few cases where I wanted to either put comments and the comment form in another place on the page, and in the most recent case, I asked around to see what people recommended for moving comments out of the normal rendering method. I found a few mentions of using Panels, and also noticed the Commentsblock module that does something like this using Views.

However, I just wanted to grab the normal comment information, and stick it directly into a block, and put that block somewhere else. I didn't want Views' overhead, or to have to re-theme and tweak things in Views, since I already have a firm grasp of comment rendering and form theming with the core comment display.

So, I set out to do something similar to this comment on drupal.org (which was also suggested by Jimajamma on Drupal Answers).