Skip to content

Instantly share code, notes, and snippets.

View brianclinkenbeard's full-sized avatar

Brian Clinkenbeard brianclinkenbeard

  • UC Irvine
  • Orange County, California
View GitHub Profile
@brianclinkenbeard
brianclinkenbeard / vapoursynth-debian-guide.md
Last active January 18, 2020 07:21
Install VapourSynth on Debian Bullseye

Install VapourSynth on Debian Bullseye

Installing dependencies from respositories

sudo apt-get install \
autoconf \
automake \
pkg-config \
build-essential \
python3-dev \
python3-pip \
@brianclinkenbeard
brianclinkenbeard / qtcreator.md
Last active October 6, 2017 05:15
No qDebug() Output in Qt Creator on GNU/Linux

No qDebug() Output in Qt Creator on GNU/Linux

It seems that at the time of writing, some GNU/Linux distributions will not show the output of qDebug() calls by default within the Application Output section of Qt Creator. This happens despite qWarning() working perfectly.

The Problem

The issue here lies in /etc/xdg/QtProject/qtlogging.ini:

[Rules]
*.debug=false

According to Kevin Kofler at Fedora: