Skip to content

Instantly share code, notes, and snippets.

View gjedeer's full-sized avatar
💭
Fucking kittens

GDR! gjedeer

💭
Fucking kittens
View GitHub Profile
@gjedeer
gjedeer / eps2png
Created January 20, 2016 12:05 — forked from anonymous/eps2png
Mass convert EPS to PNG files
for i in *.eps; do gs -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dEPSCrop -dAlignToPixels=0 -dGridFitTT=2 -sDEVICE=pngalpha -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -dUseCIEColor -r300x300 "-sOUTPUTFILE=$i.png" "$i"; done
#!/bin/bash
# turn off some services not needed
chkconfig kudzu off
chkconfig mcstrans off
chkconfig restorecond off
chkconfig netfs off
chkconfig gpm off
#!/bin/bash
# turn off some services not needed
chkconfig kudzu off
chkconfig mcstrans off
chkconfig restorecond off
chkconfig netfs off
chkconfig gpm off