Those Who Do Not Study History

In the 1980s, the Mujahedeen forces in Afghanistan beat the USSR by simply outlasting them. The USSR withdrew its forces in embarrassment after failing to achieve its military objectives despite a decade of fighting, and the USSR imploded a few years later.

32 years after the USSR's humiliating defeat in Afghanistan, the Taliban forces have beaten the USA by simply outlasting them. The USA is withdrawing its forces in embarrassment after failing to achieve its military objectives despite two decades of fighting, while the USA is slowly imploding for its own reasons...

Facebook Community Standards Suck, Part 2

Just when I start to think that the collective level of ignorance that is shared by those who enforce Facebook's "Community Standards" cannot sink any lower, Facebook manages to surprise me yet again. And with that in mind, here's my story of the latest entry in Facebook's never-ending stream of social stupidity.

One of the anti-mask / COVID-deniers that I know posted the following the following disinformation image about vaccines to Facebook:

Vaccine-Disinformation

This image was another in a long series of paranoid posts from a person who believes that wearing a mask is somehow a violation of his constitutional rights, and COVID19 vaccines are part of a multi-national conspiracy involving the governments and scientific communities from every nation on the planet to inject him with microscopic mind-control robots. His point of view is, of course, nothing but nonsensical drivel.

With that in mind, here is what I posted in response:

The vaccines are safe, and here are the actual figures as of two days ago, broken down by country, population segment and vaccine: https://bit.ly/2Wp6BuH. So really, this is the image that you should be posting.

Vaccines-Are-Effective

However, imagine my surprise when I logged into Facebook today and was rudely informed that my post has been taken down, while the original disinformation post was left.

facebook-community-standard-stupidity

Note: the reason for three comments was that Facebook refused to show
my response when I posted it, so I reposted thinking that was in error.

In other words, my attempt to stop misinformation about vaccines by citing actual facts from the CDC was blocked by Facebook's "Community Standards," and yet the misinformed, paranoid drivel that prompted my response was given a free pass by Facebook.

So if anyone from Facebook should happen to read this blog, I say this with all sincerity: your "Community Standards" people are rock-stupid, brain-dead, imbecilic morons.

Hipshot Bass Xtender on a 6-String Bass

I just finished modding my Ibanez 6-string bass with a Bass Xtender from Hipshot Products; having Drop-A tuning at the flip of a switch is great.

I've been using Bass Xtenders on two of my 4-string basses for a while now, and since I play in Drop-D for 99% of the time, modding my basses with these tuning keys have been some of the best investments that I've made for my playing style.

That being said, it took me a while to get around to modding my 6-string, but now that I have, I wonder why it took me so long.

hipshot-bass-xtender-on-a-6-string-bass

It Was the Most Something on Record

Science tells us that planet Earth is approximately 4,568,200,000 years old. Science also tells us that the fossil record shows that Earth goes through massive heat and cold fluctuations, which are often several magnitudes greater than what the doomsday prophets are predicting if CO2 levels skyrocket and everything falls apart. Science also tells us that we've only been making semi-accurate readings of the Earth's temperature and other weather-related information for the past 1½ centuries, which is a mere 0.000003% of the Earth's age. That is why climate alarmists like to use phrases like "This was the coldest/warmest year on record," which is designed to sound scary, but any single year only represents a period that is 0.00000002% of global history. In other words, whenever someone says "This was the coldest/warmest year on record," they are deliberately misleading you with junk science, because the "record" is little more than a statistical blip that is re-interpreted when necessary to back up a pre-existing point of view and to manipulate public opinion. (e.g. "Numbers never lie, but liars always use numbers.")

Science also tells us that it is incapable of predicting weather patterns, which is why scientists here in Arizona couldn't tell us if we would have a Monsoon season last year (which we didn't), or if we would have a Monsoon season this year (which we did), or if we will have a Monsoon season next year (which is anybody's guess). In other words, most scientists - despite their years of study and academic accolades - are admittedly making nothing but educated guesses, and the only solid FACTS that we have are: the Earth is warming, as it has done in the past, and it will do in the future. After which the Earth will cool, as it has done in the past, and it will do in the future.

However, there is one additional point that I would like to make: I do not care whether climate change is real. From my perspective, someone would have to be a card-carrying idiot to disbelieve that humanity is leaving an indelible mark on the planet. There are currently 7 billion people on the planet, and we are consuming the Earth's resources faster than renewables can keep up, and that says nothing about the resources that are not renewable. Every day humanity discards millions of tons of garbage, pours millions of gallons of toxic filth into our water sources, and belches millions of pounds of toxic filth into the atmosphere. In short, we are killing the planet.

Let's say for the sake of argument that man-made climate change is real. In the grander scheme of things, it doesn't matter, because the planet is amazingly resilient and the climate will eventually bounce back from humanity's many transgressions. Our planet has survived asteroid impacts, global ice ages, super volcanoes, and mass extinctions. What we humans do or not do now is going to have little to no impact on where the Earth's temperature will be measured a century from now, and to disagree with that reality is pure folly.

However, there are regions of this planet that have already been rendered so toxic that life will NEVER grow there again, and there are several places where spending more than a few minutes in close proximity is fatal to anything that lives. With that in mind, climate change isn't the problem - pollution is. The earth can sustain a CO2 spike and a few extra degrees on the thermometer, but it CANNOT survive humanity poisoning everything out of existence.

Scripting the Task Scheduler to Create System Restore Points

I ran into an interesting situation the other day: I had a hard drive that was going bad, and thankfully I had most of my data backed up on a schedule. However, before I removed the old hard drive, I wanted to log into the system to double-check a few settings. Unfortunately, several of the operating system files had become corrupted and the system wouldn't boot.

I didn't think that was a big deal, because I could try a system restore. However, I had forgotten that Windows 10 creates far less restore points than previously, so I had fewer to work with. In the end, I wasn't able to boot the system that final time.

Now that I have my newly rebuilt computer up and going, I set out to create a scheduled task that will create system restore points on a schedule. However, I wasn't content to create the task; I wanted to create the task using a batch file script so I could easily run the script to create the same task on any new systems that I might build.

It took me a while to get the script parameters the way that I wanted them, but the following one-line script achieves everything that I wanted to do. Note that you need run this script in an elevated command prompt, otherwise it might fail with an access denied error.

schtasks.exe /create /tn "Create Restore Point (MONTHLY)" /sc MONTHLY /d SUN /mo FIRST /st 05:00 /rl HIGHEST /ru "NT AUTHORITY\SYSTEM" /tr "PowerShell.exe -ExecutionPolicy Bypass -Command \"Checkpoint-Computer\" -Description \"AUTOMATIC-$(Get-Date -Format \"yyyyMMddHHmmss\")\" -RestorePointType \"MODIFY_SETTINGS\""

Here are the different parts of that script in detail, so you can modify them for your situation:

schtasks.exe This is Windows' command line application for managing scheduled tasks.
/create Specifies that we will be creating a scheduled task.
/tn "Create Restore Point (MONTHLY)" Specifies the name for the scheduled task.
/sc MONTHLY Specifies the schedule type, which could be MONTHLY, WEEKLY, DAILY, HOURLY, etc.
/d SUN These two parameters work together to specify how often the task runs, and the options for these values will depend on the schedule type. In this example, it is specifying the FIRST SUNDAY of each month.
/mo FIRST
/st 05:00 Specifies the starting time in 24-hour format.
/rl HIGHEST Specifies the "run level," which in this example is the highest level.
/ru "NT AUTHORITY\SYSTEM" Specifies the user account to run the task as, which in this case is "NT AUTHORITY\SYSTEM".
/tr "<<SEE BELOW>>" Specifies the command to run inside the task. The actual command in this example is somewhat complex, so I've broken it down in the following table. Note that this command needs to be within a pair of quotation marks; if you need to include quotation marks for the values inside this script, you will need to escape those characters as I have done in this example.

And here are the parameters for the task that is going to run as part of the task:

PowerShell.exe The application that we're running in this application is PowerShell.exe, because PowerShell has a cmdlet to create a restore point.
-ExecutionPolicy Bypass Specifies the execution policy, which in this example specifies that nothing will be blocked and there are no warnings or prompts.
-Command "Checkpoint-Computer" Specifies the PowerShell cmdlet that creates a system restore point, which takes the following two parameters.
-Description "AUTOMATIC-$(Get-Date -Format \"yyyyMMddHHmmss\")"

Specifies the description of the system restore point, which in this example invokes another PowerShell cmdlet to specify a date/time stamp that will show when the restore point was created. The restore points created by this task will look like "AUTOMATIC-20211201015150."

-RestorePointType "MODIFY_SETTINGS" Specifies the type of restore point, which could be APPLICATION_INSTALL, APPLICATION_UNINSTALL, DEVICE_DRIVER_INSTALL, MODIFY_SETTINGS, or CANCELLED_OPERATION.

That's about all there is to it. In a sense, this task is a bit of a script hack by invoking PowerShell cmdlets via the command line, but it works. And at the end of the day, that's all that matters.

Here are a few additional resources that provide more detail on the commands that I was using to create this script:

I hope this helps!

Gear Review: Epiphone Alex Lifeson Les Paul Axcess Standard

Several years ago, Rush's Alex Lifeson partnered with Gibson Guitars to create the Custom Alex Lifeson Les Paul Axcess. The specs for these guitars looked amazing, but they had a limited production run, and the starting price tag of $5,499 was more than cost-prohibitive for most guitarists. Shortly thereafter, Gibson released the Alex Lifeson 40th Anniversary of Rush Les Paul Axcess, which had an even more limited production run, and a heftier starting price tag of $6,699. Needless to say, few guitarists could scrape together that kind of cash, regardless of how amazing the guitars were.

But then a strange thing happened at the January 2020 NAMM show: an Epiphone version of the Alex Lifeson Les Paul Axcess turned up rather unexpectedly among the collection of other guitars that Epiphone had on display. The following video from the great folks at Andertons Music Company shows a pair of reviewers who stumble across the guitar (which occurs at 16:47 in the video). This unofficial announcement generated a fair amount of chatter within the guitar community, based on the assumption that there might be an affordable version of the Alex Lifeson Les Paul Axcess released sometime in the future. However, COVID19 turned the year upside down, and news of this guitar faded away into the background while everyone was focused on the pandemic.

After a year-and-a-half of silence about this guitar, Alex Lifeson broke the news on his website on June 15th, 2021, that Epiphone had finally released the Alex Lifeson Les Paul Axcess Standard; which promptly sold out everywhere in the country. Nevertheless, I managed to get my hands on one, which arrived last Saturday, and I'll be using it for today's review.

Alex-Lifeson-headstock-FINAL-1024x683

Anyone who's been reading my blogs knows that I am a sold-out, card-carrying fanboy for Rush, but this guitar has several features that set it apart from other guitars on the market. With that in mind, even the guitarists who don't like Rush might want to take a moment to consider this guitar if they're in the market for a new axe. (And let's be honest, that includes just about every guitarist, doesn't it?)

Since its arrival, I've been putting it through the paces, and here are the big ticket items that people should know about.

Graph Tech Floyd Rose Bridge with Piezo Pickups

This guitar has the Graph Tech Floyd Rose bridge. There are a few Les Pauls with Floyd Rose bridges, so while that might not seem unique, here's the differentiator: the Graph Tech bridge has piezo pickups built into it, so at the flick of a knob, you're an acoustic, or an electric, or both at the same time. And the sound is amazing.

alex-lifeson-axcess_front

ProBucker™ humbucker Pickups

The stock pickups for the Alex Lifeson Les Paul Axcess Standard are Epiphone's ProBucker™ pickups, which designed as an homage the classic Gibson PAF pickups, and the sound is quite good. I compared it against a set of Seymour Duncan Invader pickups that I have in a modded Les Paul, and I have to admit - the ProBuckers seemed to hold their own pretty well.

epiphone-probucker-clipped

Split Coil Pickup Switching

The traditional bridge and neck pickups are configured so that pulling up on the volume knob for either pickup splits the coils, so you can switch from a double-coil humbucker sound to a single-coil sound while playing. In other words, it's a Les Paul that can sound like a Strat, or a Les Paul, or a combination of the two.

With that in mind, the range of pickup configuration possibilities are: full-bridge only, half-bridge only, full-bridge with full-neck, half-bridge with full-neck, full-bridge with half-neck, half-bridge with half-neck, full-neck only, half-neck only, piezo only, or piezo blended with any of the other full/half pickup configurations.

alex-lifeson-axcess-hardware-500_500

Separate Output Jacks

The guitar has two output jacks. If you use a single output jack, then the piezo and humbuckers are wired through that. However, if you use the second output jack, you can send the piezo and humbuckers to separate effects/amps, thereby allowing you to craft a totally different sound for each output.

Sculpted Body Design

The Alex Lifeson Les Paul Axcess Standard features a traditional arched top of flame maple over a mahogany body, which should be familiar to anyone who's played a Les Paul. However, another feature that sets this guitar apart from the competition is that the neck and back have been sculpted like a Strat, which makes it easier to reach highest frets, and it makes the guitar a pound or two lighter, and it's also the most comfortable Les Paul you've ever played.

alex-lifeson-axcess-back-neck-500_500

Thankfully this guitar didn't have the traditional Les Paul pickguard attached, which most guitarists remove and toss in the recycle bin anyway.

Final Touch

It might seem like a small detail to have, but this is a signature edition, so it was nice to see that the truss rod cover carried Alex's signature (just like the Gibson model).

alex-lifeson-axcess-neck-side-500_500

A Kind of Demo

I tried to find a video on YouTube of Alex Lifeson switching back and forth between the humbuckers and piezo pickups, but every video that I found where Alex was playing one of his Custom Gibson Les Paul Axcess guitars he was only using the humbuckers.

However, I did manage to find a video where Alex was playing one of his older Paul Reed Smith (PRS) guitars that had a similar setup with humbuckers and piezo pickups. With that in mind, consider the first minute of the following live video where Rush is playing their song "Driven," which should give you an idea of what you can do with this concept. On the verses, Alex is just using the humbuckers for the electric sound. On the pre-choruses, it's just the piezos for the acoustic sound. On the choruses, you can hear the humbuckers and piezo pickups layered, which adds a huge amount of depth to the wall of sound that Alex is creating.

So... yes, I am aware that the video has Alex playing a PRS, not a Les Paul. Gibson designed Alex's Custom Les Pauls a few years after that video was created. Nevertheless, as I mentioned earlier, this should give you an idea of what you can do with this guitar.

Parting Thoughts

I was glad that I was able to get my hands on one of these guitars for a review before they were sold out. (Although I expect that there will be more guitars hitting the market before too long.)

That being said, the Epiphone Alex Lifeson Les Paul Axcess Standard is an incredibly versatile guitar. If I were to have any second thoughts about this guitar they would be pretty minor.

For example, if I were buying one of these guitars today, I would much prefer the Royal Crimson finish featured on the Gibson Custom Alex Lifeson Les Paul Axcess, or the "R40" Ruby finish featured on the Gibson Alex Lifeson 40th Anniversary of Rush Les Paul Axcess. However, as of this writing, the Epiphone Alex Lifeson Les Paul Axcess Standard is only available in Viceroy Brown finish, which is reminiscent of the classic Gibson Tobacco Sunburst finish.

One last nitpick is a personal preference: I prefer Gibson Speed knobs over the Gold Top Hat knobs that come with this guitar. But as I said, that is a minor, personal preference, so I cannot count that against the guitar. Nevertheless, if I had this guitar and the inclination, that's a mod that I would probably make.

All in all, the Epiphone Alex Lifeson Les Paul Axcess Standard is a great guitar that could easily find a home in any guitarist's arsenal. Even if they're not a Rush fan.

Why Don't I Post about Bicycling Anymore?

If you've read my blog posts over the past several years, you'll notice that one of the topics that I used to frequently post about is bicycling, where I would talk about my misadventures riding through the deserts near Tucson, AZ. However, a few years ago my posts ceased rather abruptly, so I thought that I'd explain why that happened.

I loved riding around Tucson in my teenage years, and I rode in other areas of the country as I moved from state to state. That being said, my favorite locale was Tucson, because the weather is amazing all year round, and the desert is a wonderful place to ride. The further I would ride out of town, the fewer cars I had to deal with, which made for an even better cycling experience. With that in mind, after I returned to Arizona in 2013, I became an avid road cyclist.

Shortly before I stopped posting about bicycling, I wrote a post about being diagnosed with a neurological disorder called Essential Tremor. My diagnosis didn't originally have an impact on my cycling, but eventually the disorder caught up with me.

One of my favorite routes to ride in the Tucson area was Saguaro National Park East, which had few cars, gorgeous desert landscapes, a one-way path, and several difficult climbs that kept me in shape. However, around a year after my diagnosis, hand tremors prevented me from braking during a rapid descent into a steep turn. I was coasting downhill around 35mph at the time, and I only managed to make the turn by unclipping one foot and jamming it into the ground to arrest my speed (although that technique is not advisable for slowing down). I pulled off the road once I rounded the corner and could safely bring my bicycle to a stop, and the surge of adrenaline combined with tremors left me shaking uncontrollably for quite a while.

Make no mistake, if I hadn't managed to slow my descent, I'd have been just another statistic in a long line of stories about cyclists who died after losing control of their bicycles. As a result of that near-death experience, I haven't ridden outside since.

Memorial Day and the Pledge of Allegiance

One of my cousins shared the following video, https://youtu.be/2HGHdFmu5GU, which I have seen before, but it seems apropos to reshare it for Memorial Day weekend. In four short minutes, the late Red Skelton describes the meaning behind the Pledge of Allegiance, which was a voluntary oath that was taught to students when I was younger. The pledge helped put the history of the United States in perspective; while our country is far from perfect, there is much to be thankful for.

Sadly, however, a reverence for the blessings that we have and the country that has provided them is no longer taught in schools. The youth of today are fed a never-ending stream of self-loathing propaganda, wherein our ancestors are depicted as nothing more than thieves, enslavers, and murderers, and our country should be condemned for sins in which no one living today participated.

Contrary to what our children are force-fed in public education, our country has learned from its myriad mistakes, and created one of the most-prosperous, equitable, and free societies that the world has ever known. Yes, there is still room for us to grow as a nation and important lessons that need to be learned, and our people should strive for those ideals. But today's youth should be taught that our civilization has succeeded where so many past civilizations have failed because our nation has spent centuries growing and learning together, instead of tearing ourselves apart, driving divisions between each other, and cursing the forefathers who made our abundance of blessings and freedoms possible.

With that in mind, I would ask that everyone take a moment out of their busy schedules of BBQs and three-day sales this weekend to consider those whose sacrifices made today possible, and consider how you can personally contribute to the ideals that are expressed in the words: "I pledge allegiance to the flag of the United States of America, and to the republic for which it stands; one nation, under God, indivisible, with liberty and justice for all."

Anti-Vaxxers are Anti-Science

I like making fun of anti-vaxxers because they tend to be rather silly people who usually act on their uneducated emotions and staunchly refuse to listen to actual science; they're much like the whackos in the Flat Earth Society.

And with that in mind, the following video contains some actual facts about vaccines for anti-vaxxers to blissfully ignore as they continue their respective crusades toward reinstating the Dark Ages.

😄

Lester Holt is a Pompous Windbag with Delusions of Grandeur

As the title of this blog should indicate, I am no fan of Lester Holt, who has been the news anchor for NBC Nightly News and Dateline NBC for many years. However, recent events have reinforced my low opinion of him, and I would like to take this opportunity to elaborate on that subject.

Holt was recently presented with the Edward R. Murrow College of Communication Lifetime Achievement Award, and during the presentation ceremony Hold gave a keynote address that has raised a number of eyebrows across the globe. The reason why so many people took offense to Holt's comments were that he made it clear that he believes fairness in journalism isn't necessary, and how self-important he views himself, and what self-appointed role he believes he holds within our society.

I will include a rather lengthy quote from Holt's self-aggrandizing manifesto at the awards ceremony, but I want you to pay special attention to a few of the things that he is saying.

First of all, under the guise of separating 'truth' from 'misinformation,' Holt is giving himself unrestricted power to determine - by himself - what constitutes a 'fact,' and thereby granting himself the power to be as biased and subjective as he sees fit, instead of simply providing information to the public and letting the people choose for themselves what is newsworthy. Journalism is supposed to be unbiased and objective, which is the definition of 'fairness,' but Holt obviously doesn't see things that way; he believes that he is the arbiter of truth, and he has the power to withhold anything with which he disagrees. However, Holt isn't content with simply providing himself with tendentious superpowers, he takes one step further to insult his journalistic peers, whom Holt clearly views as far beneath him.

In other words, Holt sits in his ivory tower of voluminous wisdom that the ignorant masses and his foolish journalistic competitors do not possess, and he only reports on those things that his vastly superior intellect deems worthy of his merit.

Before I present Holt's comments, I should make one last thing very clear: when Holt refers to journalism as the "Fourth Estate," that is a concept that traces its roots back to the time before the French Revolution, when political power was shared between the "Three Estates" of the clergy, the nobility, and the commoners. When Holt uses the term the "Fourth Estate," make no mistake - he is stating unequivocally that he believes that the news media deserves a seat at the table of power to make political decisions; and THAT statement should scare everyone.

And with that, the following excerpt is Lester Holt in all of his raw, unbridled hubris. The text is from https://youtu.be/AWIbAKI9PSA?t=1067, which is several minutes into Holt's speech, but it contains the sections that reveal how he views himself as a journalist. That being said, I will include a link to the full speech below this quote.

"The democratization of journalism, made possible by smartphones and the internet, has opened a whole new hyperspeed network of raw and often unfiltered information.

In the meantime, traditional journalists spent the last four years being labeled 'enemies of the people,' blasted from the world's biggest megaphone. And it didn't come without a price. It's hurt the standing of journalism, and allowed misinformation, some of it dangerous, to gain critical mass. And it forced us down a path towards what at times was a toxic relationship between the executive branch and the fourth estate. That's not a healthy place for any of us.

The media's reliance on truth and facts was turned upside down and weaponized as evidence of lies. The more we try to separate fact from fiction, the easier it became to label us as partisan tools.

'Dog bites man' is not a story. It's common, happens all the time. But 'man bites dog' gets your attention, right? We don't see that, so it's news. Safe to say, we chased a lot of those stories the last several years, things we'd never seen before. Now, whether they were good or bad is irrelevant, but we couldn't look away because they were new and different and had to be reported.

I'm asked a lot now how the news media recovers from the damage. Let me first say the damage only goes so deep, as millions and millions of Americans still turn to news organizations - like mine - for trusted information. The unprecedented attacks on the press in this period I'm sure we'll fill plenty of books and be studied in classrooms, maybe even here. But I have a few early observations I'll share about where this moment brings us and what we can learn.

Number one is: I think it's become clear that 'fairness' is overrated. Whoa, before you run off and tweet that headline, let me explain a bit.

The idea that we should always give two sides equal weight and merit does not reflect the world we find ourselves in. That the sun sets in the west is a fact. Any contrary view does not deserve our time or attention. Now I know recent events assure that you won't have to look far to find more current and relevant examples; I think you get my point.

Decisions to not give unsupported arguments equal time are not a dereliction of journalistic responsibility or some kind of an agenda. In fact, it's just the opposite. Providing an open platform for misinformation, for anyone to come say whatever they want, especially when issues of public health and safety are at stake, can be quite dangerous.

Our duty is to be fair to the truth. Holding those in power accountable is at the core of our function and responsibility. We need to hear our leaders' views, their policies, and reasoning, it's really important. But we have to stand ready to push back and call out falsehoods.

Now I understand what I just said will only reinforce negative sentiments some hold to journalists. And that leads me to my second point. The need to be 'respected' versus the need to be 'liked.'

Let me be frank. Media companies proudly invest in promoting the quality of their journalism, and rightfully so, but they also invest in the faces of their organizations to help weave a relationship and identity with audiences and readers. While we all like to be liked, we don't let that stand in the way of calling out uncomfortable truths. That we have had to be more direct in our language in recent times only speaks to the volume and gravity of particular statements and claims.

Remember this: fact checking is not a vendetta or attack. We all have a stake in us getting it right.

And lastly, on where we go from here. We will need to take a hard look at our respective lanes and how we make sure we stay between the lines. The TV and media landscape can look very, very much the same. People are who are well-dressed sitting at plexiglass desks against giant video screens with lots of words on them. But the content can be very different.

Opinion oriented cable programming, featuring provocative and often partisan voices, is popular, and it has its place. But it should not be confused with mainstream newscasts, which have their place too. Informed, knowledgeable analysis is not the same as opinion. I think all media could benefit from greater transparency as to who we are and what our chosen lanes are."

The irony of Holt's comments is that he is clearly incapable of realizing that the damage that has been done to public opinion of journalism during recent years has not been the result of insults from the Executive Branch of our government; on the contrary, people distrust journalists for precisely the behavior that Holt is advocating. It is not the role of the press to decide what the people should believe; the press should simply report what happened and relegate their opinions to editorial columns.

Nevertheless, I promised to include the awards ceremony in its entirety, and here is that video.