Today's Digital Newspaper

The Gazette

Weather Block Here



Did Aurora condemn an innocent cop? | Michael A. Hancock

There is a peculiar affliction in modern governance — a reflex of institutional self-destruction, where public agencies, desperate to placate outrage, turn against their own before the facts are even in. In this world, due process becomes a casualty of optics, and the press conference replaces the courtroom.

Aurora, Colorado, has become a textbook example. Former police officer John Haubert was not just charged with serious crimes; he was publicly denounced, hung out to dry by leadership, and effectively erased from the force long before a jury of his peers had the chance to render a verdict. When that day finally came, they found him not guilty on all counts. But by then, the real damage — to justice, to public trust, and to the officer himself — had long since been done.

The July 2021 arrest of Kyle Vinson made national headlines for its disturbing bodycam footage. What didn’t make headlines — because it wasn’t disclosed — was a trove of discovery material that told a far more complicated story. Civilian and officer witnesses alike described Vinson as violently resisting arrest. Surveillance footage from a neighboring business — Look Optical — showed him flailing, kicking, and making what appears to be a clear attempt to grab Officer Haubert’s firearm. Yet this video, although collected by detectives, was never publicly released. It was never mentioned in the arrest affidavit. It was never referenced in the department’s internal Force Review Board report.

The video’s omission was not the only irregularity. Witness statements corroborating Vinson’s resistance were downplayed or ignored. Vinson’s possession of pills and signs of intoxication at the scene were minimized. Discrepancies between Vinson’s hospital statements and the bodycam footage were overlooked. Even a spontaneous statement by Vinson — “I didn’t grab anything” — recorded at the hospital was seemingly dismissed. All of this material existed in the case file. It simply wasn’t part of the narrative presented to the public — or, it seems, to key decision-makers.

Within days of the incident, then-Chief Vanessa Wilson held a press conference, released edited body camera footage, condemned the officers’ actions as criminal, and pledged an expedited internal review. Haubert resigned under pressure. His partner was charged. And Vinson, who had an active warrant and resisted arrest, later walked away with an $800,000 settlement funded by Aurora taxpayers.

The internal review processes that followed did not correct the record. They appeared to double down. The Force Review Board’s report omitted any reference to the Look Optical video or supporting witness testimony. There was no mention of the alternative surveillance angles that, upon careful examination, revealed a more comprehensive — and far less one-sided — account of the confrontation. Instead, the narrative was reduced to a shallow visual: a white officer wielding a firearm, a Black man being struck, and a city eager to showcase its virtue. The deeper complexities — the resistance, the context, the evidence — were sidelined in favor of a digestible image that fit the national script.

Sign Up For Free:

let pathVariable;
let pathVariable2;

function handleUrlPathSegment() {

const fullPath = window.location.pathname.toLowerCase();
if (fullPath.includes(‘/business/’)) {
pathVariable = ‘business’;
pathVariable2 = ‘Business Newsletter’;
} else if (fullPath.includes(‘/outdoors/’) || fullPath.includes(‘/outdoor/’)) {
pathVariable = ‘outdoors’;
pathVariable2 = ‘Outdoors Newsletter’;
} else if (fullPath.includes(‘/opinion/’)) {
pathVariable = ‘opinion’;
pathVariable2 = ‘Opinion Newsletter’;
} else if (fullPath.includes(‘politics’)) {
pathVariable = ‘politics’;
pathVariable2 = ‘Politics Newsletter’;
} else if (fullPath.includes(‘outtherecolorado’)) {
pathVariable = ‘outtherecolorado’;
pathVariable2 = ‘Out There Colorado Newsletter’;
} else {
pathVariable = ‘am-update’;
pathVariable2 = ‘AM Update Newsletter’;
}

console.log(`Current path: ${fullPath}`);
console.log(`Path variable set to: ${pathVariable}`);
console.log(`Path variable 2 set to: ${pathVariable2}`);

applyNewsletterName(pathVariable2);

return { pathVariable, pathVariable2 };
}

function applyNewsletterName(newsletterName) {

if (document.readyState === ‘loading’) {
document.addEventListener(‘DOMContentLoaded’, function() {
updateNewsletterElement(newsletterName);
});
} else {

updateNewsletterElement(newsletterName);
}
}

function updateNewsletterElement(newsletterName) {
const newsletterElement = document.getElementById(‘newsletterName’);

if (newsletterElement) {
newsletterElement.textContent = newsletterName;
console.log(`Updated #newsletterName element with: ${newsletterName}`);
} else {
console.warn(‘Element with ID #newsletterName not found in the DOM’);
}
}

function setupFormSubmitListener() {
function getFormattedDate() {
const now = new Date();

const timestamp = now.getTime();

console.log(‘chris: Using Unix timestamp’);
console.log(‘chris: Current time:’, now);
console.log(‘chris: Unix timestamp (ms):’, timestamp);

return timestamp;
}

const formattedDate = getFormattedDate();
var profile = window.blueConicClient.profile.getProfile();
profile.setValues(‘newsletter_category’, pathVariable);
profile.setValue(‘newsletter_signup_date’, formattedDate);
window.blueConicClient.profile.updateProfile(this, function() {
});
}

handleUrlPathSegment();
setupFormSubmitListener();

Success! Thank you for subscribing to our newsletter.

function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);

nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}

function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[]\.,;:s@”]+(.[^()[]\.,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}

function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;

result.innerText = “”;

if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}

function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=71&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});

}

#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;

background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/gaz%20op%202.png);
background-size: cover;

}

#nsltr-header {
color: #0e0000;
}
#nsltr-body {
text-align: center;
color: #000000;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}

#successnsltr a {
color: white;
}

.hideblock {
display:none;
}

h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}

@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/gaz%20op%202.png);
background-size: cover;
}
}

Featured Local Savings

This is not about denying the seriousness of police misconduct when it occurs. It is about ensuring that accountability is grounded in truth, not theater. The danger in what happened here is not just that a potentially innocent officer was prosecuted and a questionable payout awarded. The more serious risk is that public trust and APD morale were diminished — first by omission, then by affirmation and finally by silence.

Following the Vinson incident and its aftermath, Aurora entered into a consent decree — part of a broader national trend toward externally monitored police reform. The aim is noble. Critics will caution that if these reforms are pursued at the expense of fairness and transparency — if the process becomes a performance rather than a pursuit of truth — then we have not reformed the system. We have simply redirected its injustices.

The evidence in the Haubert case was never hidden. It was merely ignored. And that may be the most dangerous kind of concealment.

Aurora still has a chance to get this right. The city has a new police chief — by all appearances, a seasoned and principled crime fighter — who did not create this mess but has inherited it. He now faces the difficult but critical question: How does he assure the officers he leads and the community they serve that such a failure will not happen again? That begins with transparency. Reopen the record. Review the full body of evidence. Make public what was buried in the discovery files. And most importantly, acknowledge that justice demands more than appearances — it requires courage, even when the facts are inconvenient.

Because when cities perform contrition instead of practicing accountability, it isn’t just the accused who suffer. It’s the truth itself that gets condemned.

Michael A. Hancock is a retired high-tech business executive and a Coloradan since 1973. Originally from Texas, he is a musician, composer, software engineer and U.S. Air Force veteran whose wide-ranging interests — from science and religion to politics, the arts and philosophy — shape his perspective on culture, innovation and what it means to be a Coloradan.

Michael A. Hancock is a retired high-tech business executive and a Coloradan since 1973. Originally from Texas, he is a musician, composer, software engineer and U.S. Air Force veteran whose wide-ranging interests — from science and religion to politics, the arts and philosophy — shape his perspective on culture, innovation and what it means to be a Coloradan.

a7c71241-e264-5f84-a4e2-e098f6d6a4d1

View Original Article | Split View
Tags Columnists

No User

Reporter

PREV

PREVIOUS

A bipartisan rebuke to CU Regent Wanda James | Jimmy Sengenberger

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Facebook Twitter WhatsApp SMS Email Print Copy article link Save The University of Colorado Board of Regents should be lauded for policing its own last week — censuring Regent Wanda James for her shameless and self-serving crusade against CU’s “Tea on THC” public health campaign. […]

NEXT

NEXT UP

Some motorcyclists turn freedom into foolishness | Jimmy Sengenberger

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Facebook Twitter WhatsApp SMS Email Print Copy article link Save One of the great tunes by rock legend Ted Nugent is “Motor City Madhouse.” But these days, cruising Colorado’s highways, it sometimes feels more like we’re living in a Motorcycle Madhouse. Biker deaths are up […]