I hereby claim:
- I am baitisj on github.
- I am baitisj (https://keybase.io/baitisj) on keybase.
- I have a public key whose fingerprint is 6363 C310 82BE 109C 4B89 2EC4 B61E FC8D 44A0 9DB9
To claim this, I am signing this object:
| #pragma D option quiet | |
| /* dtrace D script for helping to tune the OpenZFS write throttle */ | |
| /* Original script from: */ | |
| /* http://dtrace.org/blogs/ahl/2014/08/31/openzfs-tuning/ */ | |
| /* Example invocation that collects statistics over 1 minute: */ | |
| /* dtrace -s rw.d -c 'sleep 60' */ | |
| BEGIN |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| echo "Click on a window to record." | |
| properties=`xwininfo | grep ":"` | |
| width=`echo "$properties" | grep "Width: " | tr -d '[:space:]' | cut -d ':' -f 2` | |
| height=`echo "$properties" | grep "Height: " | tr -d '[:space:]' | cut -d ':' -f 2` | |
| ulx=`echo "$properties" | grep "Absolute upper-left X:" | tr -d '[:space:]' | cut -d ':' -f 2` | |
| uly=`echo "$properties" | grep "Absolute upper-left Y:" | tr -d '[:space:]' | cut -d ':' -f 2` | |
| ffmpeg -loglevel quiet -f x11grab \ |
| javascript:( | |
| function(){ | |
| var range = window.getSelection().getRangeAt(0); | |
| var a = document.createElement('a'); | |
| a.setAttribute('href',document.location); | |
| var t = window.getSelection().toString().replace(/\+/g, " "); | |
| a.appendChild(document.createTextNode(decodeURIComponent(t))); | |
| range.deleteContents(); | |
| range.insertNode(a); | |
| } |
| import subprocess; | |
| import sys; | |
| import re; | |
| import pprint; | |
| import string; | |
| pkgs = set(); # Packages that contain the broken libraries | |
| d = dict(); # contains key: library name, and list of values: libraries that are not found. | |
| nf_rgx=re.compile('^\s+(.+) =>.+\(0\)'); # Matches a 'not found' result from ldd | |
| last_key=""; |