Main Menu
Home
About
Archive
Woot Alarm
apt-fast
Zen Kernel
Downloads
Satellite
Dish Keys
SURGE
Links
Search
Search Bible
Feed Me!
 

 Subscribe

Add to Google

Add to Pageflakes

Subscribe in Bloglines

Add to My AOL



 







Keep Our Web Free: Stop Rick Boucher's Attack On Internet Ads
Monday, 30 November 2009
Without ads, this site, as well as others like Digg, Facebook, Google, various blogs, and the ever popular cheezburger sites like LOLCats would die.

The bill Rick Boucher is attempting to pass would make it nearly impossible to advertise on websites by making people agree to an agreement before they are advertised to. They don't have to do this with radio, print, or television ads, so why should we have to do it online?

Hindering this would kill the internet as we know it. Please read up on the issue, and sign the petition.

Link here:
http://keepourwebfree.org/
 
Recent Goings On - Magazine Articles, Linux, SEO, and School
Wednesday, 11 November 2009
     Well, I was unkowingly featured in "Linux Format" issue 124 in a way, as they mentioned my apt-fast script in the article "Make Linux Faster, Lighter, and More Powerful" (linked to page 6 of the article where apt-fast is mentioned). I love the fact that my involvement in the Linux community has been chronicled yet again, as it was back when I was maintaining deb packages for the Ubuntu version of the Zen Kernel.


Read more...
 
FREE McDonald's 2009 Monopoly Codes
Sunday, 11 October 2009
I just discovered 3 free codes. One requires facebook. All of this is sourced from this blog. It has other good info about rare codes and pieces, too.

How to Enter Online: Visit monopoly.promotions.com/monopoly09/front.do and setup an account. Then input your codes.

Free McDonald's Monopoly Codes:

I6L6V4N4T09 (From Rules)
UONLYRICHER (From Facebook)
ONLYPLYRSWN

How to use the McDonald's Facebook code:

1. You must have a Facebook account. Sign up free or login.
2. Go here to access the McDonald's page on Facebook.
3. Click Go.
4. Click Allow.
5. Click Let's Play.
6. Click Publish or Okay (pick one).
7. Click Okay.
8. You will be taken to the McDonald's Monopoly page.
9. Click Let's Play.
10. Sign in.
11. Click to Roll.

The FREE Code can be used only once per person and/or email address or mobile phone and will not count against your daily play limit of ten (10) Codes per day. FREE Codes can be used by multiple participants.
 
My Current Boot Time in Linux - 12s after Post
Tuesday, 29 September 2009
Using 2.6.31-zen2 with the BTRFS filesystem, as well as running without an initrd and having all of my modules compiled in with a kernel size of 630kb uncompressed, I can say my machine is good in latency, speed, and efficiency...

It's an HP DV9205US, and if you'd like to see my .config sometime (it works on many different HP laptops, though you may have to tweak it or use different drivers), and produces a beauty of a kernel.

Here's my bootchart:


 
In Honor of the Current WootOff: Bag of Crap Alarm Version 0.02
Wednesday, 23 September 2009
WOOTOFF!

Ever since woot changed their design, my script has been broken. Since we have a wootoff going on now, I've refined and updated it so that once more it works.

I've removed a feature in the public version that runs your browser of choice with the buy now link in order to quash the competition, and so that you can learn a little bit if you desire this feature...add it yourself! It's just one line of code.

To use this, you need a UNIX style shellscript interpreter, sed, grep, curl, and play, though you could use any equivalent program for these to mod the script to work on other OS'es than Mac and Linux.

Download by clicking here, and see the below for the code, should you want to look it over.


#!/bin/bash

#Wootwatch Alarm v0.02
#Written by Matt Parnell/ilikenwf http://www.mattparnell.com
#This is totally free, take it and mod it however you wish, under the GNU GPLv3.
#This script goes every 3 sec to woot and checks for a bag of crap. If found, it sounds an alarm.

clear &
i=0
r=0

while [ $i -lt "1" ]
    do
        r=`expr $r + 1`   
        WOOT=`curl -s -f http://www.woot.com`
        ITEM=`echo $WOOT | /bin/sed 's/.*<h2 class="fn"[^>]*>\([^>]*\)<\/h2>.*/\1/'`
        BUY=`echo $WOOT | grep -o WantOne.aspx?id=.[[:alnum:]]*-[[:alnum:]]*-[[:alnum:]]*-[[:alnum:]]*-[[:alnum:]]*`
        echo ""
       
        if echo $ITEM | grep "Random\ Crap"; then
            play -q alarm.mp3 &
            echo ""
            echo "BOC FOUND after $r runs."
            i=1
            exit
        else

            AVAIL=`echo $WOOT | grep -o "width:[[:alnum:]]*\%'><" | grep -o "[[:alnum:]]*\%"`
            echo "Current item: "
            echo $ITEM
            echo ""
            echo "Price: $`echo $WOOT | /bin/sed 's/.*<span class="amount"[^>]*>\([^>]*\)<\/span>.*/\1/'`"
                        if echo $AVAIL |grep [[:alnum:]] > /dev/null; then
                echo "Available: $AVAIL"
            else
                echo "SOLD OUT"
            fi
            echo ""
            echo "http://www.woot.com/$BUY"
            echo "-------------------------------"
            echo "This script has run $r Times."
            sleep 1 && clear
        fi

       done

exit


 
<< Start < Prev 1 2 3 4 5 6 7 8 9 10 Next > End >>

Results 2 - 10 of 230

© Matt Parnell's Brain: Plugged In!