Skip to content

Instantly share code, notes, and snippets.

@abenbachir
abenbachir / ftrace in python
Last active December 8, 2016 21:03 — forked from giraldeau/ftrace in python
add list, show and status features
#!/usr/bin/env python
import argparse
import os
import sh
t = "/sys/kernel/debug/tracing"
def write_to(base, name, data):
@abenbachir
abenbachir / disCPUscaling.sh
Created December 8, 2016 22:53 — forked from tuxology/disCPUscaling.sh
Disable CPU Scaling
#!/bin/bash
# For more info : https://wiki.archlinux.org/index.php/CPU_frequency_scaling
set_scaling_gov() {
gov=${1-performance}
for i in $(ls -1 /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor); do
echo ${gov} | sudo tee $i > /dev/null
done
}
#!/bin/bash
#
# Compare two PDF files.
# Dependencies:
# - pdfinfo (xpdf)
# - pdfjam (texlive-extra-utils)
# - diffpdf
#
MAX_HEIGHT=15840 #The maximum height of a page (in points), limited by pdfjam.