nerdy south records records presents - dirty nerdy vol. 1
nerdy south records records presents - dirty nerdy vol. 1
all new free shit from www.nerdysouthrecords.com
![]()
for individual tracks and the zip containing all tracks and art:
http://www.ytcracker.com/music/dirty%20nerdy%20vol.%201/
featuring a lot of people like zealous1 and beefy and my spamtec brothers - for some cool hits check out we taking over, my monopoly, computers, gravedigger - shit actually all of them are pretty tight everyone comes pretty correct.
spread it out, have fun, and lolz a lot.
las vegas july 11-13

www.xbizsummerforum.com
poolside dj with my man airek - we will also be destroying the interior of the hard rock at one time or another.
there are other upcoming things soon, such as san diego’s comiccon with the elite zealous1. yodel.
the rickrolled pheneomenon
the new (well, on the internet, time is relative, so new meaning this month) fad that i and most of us have fallen in love with is the practice of being “rickrolled.” rickrolled entails being tricked into clicking a video link of chart-topping singer rick astley when in fact you wanted something entirely different. example:
you: whats up dude
me: check out the new starcraft 2 trailer
you: fuck, rickrolled
the songs, however, are so catchy that you forget you’ve been rickrolled and just find yourself listening to them the whole way through. i’ve probably listened to “never gonna give you up” 700 times in the past day and a half. hasn’t gotten old yet.
being rickrolled is the coolest fucking thing in the universe. you go, rick astley.
if your hp dv6000 series is freezing when you are installing amd64 ubuntu
if your dv6000 isn’t booting and just hangs there on a black screen, use the boot parameter “noapic.” it should boot fine.
other helpful installation tips:
sudo aptitude install nvidia-glx
put Load “dri” in the Module section of xorg.conf
change your driver in the Device section from nv to nvidia
in the Screen section change DefaultDepth to 24
sudo nano /etc/modprobe.d/aliases
change alias net-pf-10 ipv6 to alias net-pf-10 off
sudo aptitude install bcm43xx-fwcutter
sudo modprobe bcm43xx
also, if opening firefox yields an empty black window after installing beryl, force AIGLX by right clicking the beryl icon, advanced beryl options, rendering platform, force AIGLX.
vicidial: no one is in your session after power outage/sudden power off
i recently had a power outage and the ups on my server malfunctioned, and then i was having a problem with people logging into the dialer and immediately being kicked out to the “no one is in your session” blue screen. this issue was persistent through reboots and running AST_reset_mysql_vars.pl.
i drilled down and found that the live_channels and live_sip_channels tables were corrupted, so i fixed this issue by repairing them in mysql.
just putting this out there if anyone ever has a similar problem so you have a point of entry where to look.
for leet hax:
nano /usr/share/astguiclient/mysql_tables.sh
paste this:
#!/bin/sh
# this shell script finds all the tables for a database and run a command against it
# @usage "mysql_tables.sh --optimize MyDatabaseABC"
# @date 6/14/2006
# @version 1.1 - 1/28/2007 - add repair
# @version 1.0 - 6/14/2006 - first release
# @author Son Nguyen
DBNAME=$2
printUsage() {
echo "Usage: $0"
echo " --optimize
echo ” –repair
return
}
doAllTables() {
# get the table names
TABLENAMES=`mysql -D $DBNAME -e “SHOW TABLES\G;”|grep ‘Tables_in_’|sed -n ’s/.*Tables_in_.*: \([_0-9A-Za-z]*\).*/\1/p’`
# loop through the tables and optimize them
for TABLENAME in $TABLENAMES
do
mysql -D $DBNAME -e “$DBCMD TABLE $TABLENAME;”
done
}
if [ $# -eq 0 ] ; then
printUsage
exit 1
fi
case $1 in
–optimize) DBCMD=OPTIMIZE; doAllTables;;
–repair) DBCMD=REPAIR; doAllTables;;
–help) printUsage; exit 1;;
*) printUsage; exit 1;;
esac
make sure its rwxrxrx
in your startup script put
/usr/share/astguiclient/mysql_tables.sh –repair asterisk
/usr/share/astguiclient/mysql_tables.sh –optimize asterisk
