/me shoots in the face the moron that suggested moving ICANNs job to the U.N.
Category Archives: Ass whooping
Streetlight Manifesto – Ass kickery
THANK GOD it’s finally here, the new Streetlight Manifest CD is freakin’ amazing. I preordered it 2 weeks ago and have been counting the days. It’s about time someone released an album that was damn worth my money 🙂 Thanks SM and keep up the awesome work!
gOS development kit & Mainboard – VIA PC2500E 1.5Ghz
So many of you have probably alread heard about the walmart PC for $200 that has sold out online and is raising some serious competition in the low end PC market. This PC runs on a 1.5Ghz Via C7 processor which consumes only 20Watts of power. The board it comes with has SATA, DDR2, 8 USB ports, Onboard Video & LAN. It’s a very very nice piece of hardware that can be purchased at clubit.com for a measly $60 + shipping. We picked up one to give it a go. We’ve got it running Fedora 8 at 1280×1024 resolution at a acceptable amount of response time. The video looks crisp and clear and everything worked right out of the box and it’s pretty amazing considering it only cost us $60….
Ugh exercise sucks until you get in shape
Started a new (*cough*) exercise routine this weekend, and man does it make me realize just how fuckin’ out of shape I am.  The plan goes like this.. I work my ass off until I almost fall over and then hop in the shower and have a good breakfast. So far this is what I’ve been doin’:
Bike 12-14 miles a day
50 sit ups
100+ bicep curls on each arm (I’ve only got 40lb weights at the moment, need to get bigger ones)
50 bench reps (I’ve only got 150lbs in bench weights… need to get more)
followed up by running a few miles in the evening.
The nice thing about it all is I pretty much sleep like a damn log after all that 😉
After typing this I realize…I need to go shopping and get some more weights!
-S
Beating Comcast / Sandvine
If you are tired of Sandvine screwing with your BitTorrent and a user of GNU/Linux, then this is for you. I will tell you how to take your bandwidth back.
If you are using a Red Hat Linux derivative, such as Fedora Core or CentOS, then you will want to edit /etc/sysconfig/iptables. First, make a backup of this file. Next, open this file in your favorite text editor. Replace the current contents with this, substituting 6883 with your BitTorrent port number:
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -i lo -j ACCEPT
#Comcast BitTorrent seeding block workaround
-A INPUT -p tcp –dport 6883 –tcp-flags RST RST -j DROP
-A INPUT -m state –state ESTABLISHED,RELATED -j ACCEPT
#BitTorrent
-A INPUT -m state –state NEW -m tcp -p tcp –dport 6883 -j ACCEPT
-A INPUT -m state –state NEW -m udp -p udp –dport 6883 -j ACCEPT
-A INPUT -j REJECT –reject-with icmp-host-prohibited
COMMIT
Reload your iptables firewall with service iptables restart. You should now see a great improvement in your seeding.
If you are using Ubuntu or another non-Red Hat Linux derivative, then place the following in a file and execute that file as root.
#!/bin/sh
#Replace 6883 with you BT port
BT_PORT=6883
#Flush the filters
iptables -F
#Apply new filters
iptables -A INPUT -i lo -j ACCEPT
#Comcast BitTorrent seeding block workaround
iptables -A INPUT -p tcp –dport $BT_PORT –tcp-flags RST RST -j DROP
iptables -A INPUT -m state –state ESTABLISHED,RELATED -j ACCEPT
#BitTorrent
iptables -A INPUT -m state –state NEW -m tcp -p tcp –dport $BT_PORT -j ACCEPT
iptables -A INPUT -m state –state NEW -m udp -p udp –dport $BT_PORT -j ACCEPT
iptables -A INPUT -j REJECT –reject-with icmp-host-prohibited
Your firewall is now configured and you should have great upload speed now. You will have to run this script every boot, by the way. One easy way is to call the script at the end of /etc/rc.local.
Credit for this write up goes to Cat in the Red Hat
Well done sir 🙂
-Scott
It’s allllllllive
ImagePut is finally online, it’s my latest free image hosting site and I’ve knocked it down to the bare essentials as it needs to be as fast as possible and the least confusing possible, there will be no user system.. there will be nothing fancy, just pure fast loading images.
-Scott