Skip to content

Instantly share code, notes, and snippets.

View 666threesixes666's full-sized avatar

666threesixes666 666threesixes666

View GitHub Profile
#lsmod for debian kernel under funtoo for asus m4n72-e
mkultra@spaceball1 ~ $ sudo lsmod
Module Size Used by
ctr 16384 2
ccm 20480 2
ath9k_htc 61440 0
ath9k_common 28672 1 ath9k_htc
ath9k_hw 421888 2 ath9k_common,ath9k_htc
arc4 16384 4
snd_hda_codec_via 32768 1
Most people can do without the essentials, but not without the luxuries.
mkultra@spaceball1 ~ $ cat rssguard.log
[rssguard] DEBUG: Instantiated Application class.
[rssguard] DEBUG: Available icon theme paths: '/usr/share/rssguard/icons'.
[rssguard] DEBUG: Initializing settings in '/home/mkultra/.rssguard/data/config/config.ini' (non-portable way).
[rssguard] DEBUG: Installed icon themes are: '-', 'mini-kfaenza'.
[rssguard] DEBUG: Loading icon theme 'mini-kfaenza'.
[rssguard] DEBUG: Loading skin 'base/solarized.xml'.
[rssguard] DEBUG: Style 'plastique' loaded.
[rssguard] DEBUG: Skin 'base/solarized.xml' loaded.
========/etc/tengine/tengine.conf
user tengine tengine;
worker_processes 4;
worker_rlimit_nofile 64000;
error_log /var/log/tengine/error_log info;
events {
worker_connections 16000;
=========/etc/nginx/nginx.conf
user nginx nginx;
worker_processes 4;
worker_rlimit_nofile 64000;
error_log /var/log/nginx/error_log info;
events {
worker_connections 16000;
[rssguard] DEBUG: Instantiated Application class.
[rssguard] DEBUG: Available icon theme paths: '/usr/share/rssguard/icons'.
[rssguard] DEBUG: Initializing settings in '/home/mkultra/.rssguard/data/config/config.ini' (non-portable way).
[rssguard] DEBUG: Installed icon themes are: '-', 'mini-kfaenza'.
[rssguard] DEBUG: Loading icon theme 'mini-kfaenza'.
[rssguard] DEBUG: Loading skin 'base/vergilius.xml'.
[rssguard] DEBUG: Skin 'base/vergilius.xml' loaded.
[rssguard] DEBUG: Application localization 'en_US' loaded successfully.
[rssguard] WARNING: Qt localization 'en_US' was not loaded.
[rssguard] DEBUG: Creating main application form in thread: '140481275139968'.
[rssguard] DEBUG: Instantiated Application class.
[rssguard] DEBUG: Available icon theme paths: '/usr/share/rssguard/icons'.
[rssguard] DEBUG: Initializing settings in '/home/mkultra/.rssguard/data/config/config.ini' (non-portable way).
[rssguard] DEBUG: Installed icon themes are: '-', 'mini-kfaenza'.
[rssguard] DEBUG: Loading icon theme 'mini-kfaenza'.
[rssguard] DEBUG: Loading skin 'base/vergilius.xml'.
[rssguard] DEBUG: Skin 'base/vergilius.xml' loaded.
[rssguard] DEBUG: Application localization 'en_US' loaded successfully.
[rssguard] WARNING: Qt localization 'en_US' was not loaded.
[rssguard] DEBUG: Creating main application form in thread: '140414461351808'.
@666threesixes666
666threesixes666 / gist:0d5f6d9434212b4fc1c6
Created May 9, 2015 16:32
system-config-firewall python 3 src compile freak out
Making install in src
make[1]: Entering directory `/home/mkultra/Downloads/system-config-firewall-1.2.29/src'
make[2]: Entering directory `/home/mkultra/Downloads/system-config-firewall-1.2.29/src'
test -z "/usr/bin" || /bin/mkdir -p "/usr/bin"
/usr/bin/install -c system-config-firewall-tui system-config-firewall '/usr/bin'
test -z "/usr/sbin" || /bin/mkdir -p "/usr/sbin"
/usr/bin/install -c lokkit '/usr/sbin'
install -d //usr/share/icons/hicolor
cp -fpR icons/* //usr/share/icons/hicolor
test -z "/usr/share/system-config-firewall" || /bin/mkdir -p "/usr/share/system-config-firewall"
@666threesixes666
666threesixes666 / conn_man.sh
Last active August 29, 2015 14:06
anthony's conn_man script
#!/bin/bash
#conn_man by anthony guevara, forked by 666threesixes666
#set interface, if you need to manually enter the interface because of multiple cards
#change to: IFACE=wlan0 or IFACE=wlp2s0
IFACE=$(ifconfig | grep -o 'wl[a-z0-9]*')
#Check if iface is up
if( ! $IFACE); then
@666threesixes666
666threesixes666 / .htaccess
Created August 26, 2014 16:21
known working rewrites
#
# Apache/PHP/Drupal settings:
#
# Protect files and directories from prying eyes.
<FilesMatch "\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)(~|\.sw[op]|\.bak|\.orig|\.save)?$|^(\..*|Entries.*|Repository|Root|Tag|Template)$|^#.*#$|\.php(~|\.sw[op]|\.bak|\.orig\.save)$">
Require all granted
</FilesMatch>
# Don't show directory listings for URLs which map to a directory.
@666threesixes666
666threesixes666 / puma
Last active August 29, 2015 14:05
funtoo/gentoo puma init file
#!/sbin/runscript
# puma init script for Funtoo/Gentoo Linux
RAILS_BASE=$HOME(changeme)/testproject
RAILS_USER=youruserhostingtheapp
RAILS_ENVIRONMENT=development
depend() {
need net
}