Skip to content

Instantly share code, notes, and snippets.

@raghunayak
raghunayak / qdebug_without_spaces.cpp
Last active March 30, 2021 14:02
Sample to show how space can be disabled/enabled in middle of qDebug logging
#include <QDebug>
// Output: Log with spaces Logwithoutspaces Again Logging with spaces
int main(int argc, char *argv[])
{
auto log = qDebug();
log << "Log" << "with" << "spaces";
log.nospace();
log << "Log" << "without" << "spaces";
@raghunayak
raghunayak / disable_auto_updater.sh
Last active March 1, 2023 16:41
Script to disable Auto Updater on Ubuntu 16.04
#!/usr/bin/env bash
# Script to disable auto-updater on Ubuntu 16.04
# Disable the automatic package updates
echo "Disabling automatic package updates and upgrades"
sudo sed -i 's/"1"/"0"/g' /etc/apt/apt.conf.d/10periodic /etc/apt/apt.conf.d/20auto-upgrades
# Stop and disable apt updater/upgrade timers/services
sudo systemctl disable --now apt-daily.timer
@raghunayak
raghunayak / create_xorg_for_intel.sh
Created May 6, 2021 15:02
Creates Xorg.conf template file for intel integrated GPU
# Create the Xorg.conf template file for intel integrated GPU
cat <<EOF | sudo tee /usr/share/X11/xorg.conf.d/20-intel.conf &>/dev/null
Section "Device"
Identifier "intelgpu0"
Option "NoDDC" "true"
Option "IgnoreEDID" "true"
Driver "intel"
EndSection
EOF