Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am ItsMeooooooo on github.
  • I am itsmeooooo (https://keybase.io/itsmeooooo) on keybase.
  • I have a public key whose fingerprint is 476F 23A7 3E52 BDC8 D772 2572 9F3C 5DAA 78F9 16A3

To claim this, I am signing this object:

@ItsMeooooooo
ItsMeooooooo / gist:99b88e90de7c7c725cb73b28f9828067
Last active November 25, 2017 09:46
libvirt error (failed to create chardev libvirt)
# edit /etc/fstab
devpts /dev/pts devpts gid=5,mode=620 0 0
@ItsMeooooooo
ItsMeooooooo / gist:db65069d81d7c639dfab3b7c852456b2
Created November 25, 2017 09:10
virt-manager as a standard user (non-root)
getent group | grep libvirt
usermod -aG libvirt "username"
# uncomment in /etc/libvirt/libvirtd.conf
unix_sock_group = "libvirt"
unix_sock_rw_perms = "0770"
systemctl restart libvirtd
@ItsMeooooooo
ItsMeooooooo / gist:87bfb7c109c75828351a5ada42bbfa67
Created November 25, 2017 08:14
enable zfs on CentOS 7 systemstart
systemctl preset zfs-import-cache zfs-import-scan zfs-mount zfs-share zfs-zed zfs.target
@ItsMeooooooo
ItsMeooooooo / display
Created November 11, 2017 13:43
display
export DISPLAY="127.0.0.1:10.0"
watch -n5 'sudo kill -USR1 $(pgrep ^dd)'
gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/printer -sOutputFile=output.pdf input.pdf
/screen – Lowest quality, lowest size
/ebook – Moderate quality
/printer – Good quality
/prepress – Best quality, highest size
@ItsMeooooooo
ItsMeooooooo / gist:80445f6074b16a4350466fe1b75ea235
Created December 12, 2016 14:10 — forked from motey/gist:3028650e159d1e4e3bd30312aa822954
Musterbrief an Landgericht Hamburg bzgl. Beschluss vom 18. November (Az. 310 O 402/16)
https://www.heise.de/forum/heise-online/News-Kommentare/Gericht-bestaetigt-Haftung-fuer-Urheberrechtsverletzungen-auf-verlinkten-Seiten/Musterbrief/posting-29616440/show/
Sehr geehrte Damen und Herren,
gerne würde ich über ihren Beschluss vom 18. November (Az. 310 O 402/16) auf meiner Internetseite berichten. Im Rahmen der Berichterstattung möchte ich auch einen Link auf ihre Rechtsprechungsdatenbank hinterlegen, damit sich die Leser meines Berichts ein Bild über die Rechtsprechung ihres Hauses machen können.
Da ich nicht über Einsicht in alle ihre Vertragsangelegenheiten habe und somit nicht feststellen kann, ob für manche Medien auf ihrer Seite die Nutzungsrechte evtl. zeitlich beschränkt waren, komme ich auf diesem Wege meiner Pflicht zur Nachforschung nach und möchte mir von Ihnen als Seitenbetreiber eine Versicherung an Eides statt einholen, dass sie die entsprechenden Rechte zur Veröffentlichung haben.
Zur Vermeidung späterer Rechtsnachteile bitte ich hiermit im Sinne ihres o.g. Beschlusses um schri
@ItsMeooooooo
ItsMeooooooo / haconfig.sh
Created March 19, 2016 14:28 — forked from jlazic/haconfig.sh
Split monolithic HAProxy configuration
#!/bin/bash
#Requirements: etckeeper, diffcolor
#This script concatenates multiple files of haproxy configuration into
#one file, and than checks if monolithic config contains errors. If everything is
#OK with new config script will write new config to $CURRENTCFG and reload haproxy
#Also, script will commit changes to etckeeper, if you don't use etckeeper you
#should start using it.
#Script assumes following directory structure:
#/etc/haproxy/conf.d/
import os
import sys
files = os.listdir(sys.argv[1])
for f in files:
os.rename(f, f.replace(' ', '_'))