Results 4 issues of Paul Brannan

I have two microphones, an external microphone plugged into the front 1/8" jack and the microphone on my webcam (Logitech C310). I have followed the instructions at https://pipewire-debian.github.io/pipewire-debian/ to install...

I have a simple python application using PyQt5 (version 5.15.6): ``` app = QtWidgets.QApplication(sys.argv) webview = QtWebEngineWidgets.QWebEngineView() webview.load(QtCore.QUrl('http://google.com/')) layout = QtWidgets.QVBoxLayout() layout.addWidget(webview) widget = QtWidgets.QWidget() widget.setLayout(layout) widget.show() app.exec() ``` I...

I noticed this when I accidentally ran templight under ccache. ``` pbrannan@telx-sb-dev2:~/tmp $ /home/pbrannan/bin/templight++-3.7 -c -E test.cpp 0 templight++-3.7 0x00000000010cd7c8 1 templight++-3.7 0x00000000010ccbf9 2 libpthread.so.0 0x00007fe7dec6a340 3 templight++-3.7 0x0000000001ac3b8c 4...

If my document contains: ``` test_case Test_Case ``` and I type: ``` :%S/test_case/foo_bar ``` then I get: ``` foo_bar Test_Case ``` but if I type: ``` :%S/Test_Case/Foo_Bar/g ``` then I...