• Obituary: Common Sense
    What follows is purported to have been a London Times obituary. It has been circulated on the Internet, and its actual source and authorship are, to my knowledge, unknown. Nonetheless, I believe that, in its humorous way, it serves as a commentary on modern-day human behavior. The text of the “obituary,” edited for purposes of this publication, is as follows:
    Today we mourn the passing of a beloved old friend, “Common Sense,” who has been with us for many years. No one knows for sure how old he was, since his birth records were long ago lost in bureaucratic red tape. He will be remembered as having cultivated such valuable lessons as:
    • knowing when to come in out of the rain;
    • the early bird gets the worm;
    • life isn’t always fair; and
    • maybe it was my fault.
    Common Sense lived by simple, sound financial policies (don’t spend more than you can earn) and reliable strategies (adults, not children, are in charge).
    His health began to deteriorate rapidly when well-intentioned but overbearing regulations were set in place. Reports of a 6-year-old boy charged with sexual harassment for kissing a classmate; teens suspended from school for using mouthwash after lunch; and a teacher fired for reprimanding an unruly student, only worsened his condition.
    Common Sense lost ground when parents attacked teachers for doing the job that they themselves had failed to do in disciplining their unruly children.
    It declined even further when schools were required to get parental consent to administer sun lotion or an aspirin to a student, but could not inform parents when a student became pregnant and wanted to have an abortion.
    Common Sense lost the will to live as the churches became businesses and criminals received better treatment than their victims.
    Common Sense took a beating when you couldn’t defend yourself from a burglar in your own home and the burglar could sue you for assault.
    Common Sense finally gave up the will to live, after a woman failed to realize that a steaming cup of coffee was hot. She spilled a little in her lap and was promptly awarded a huge settlement.
    Common Sense was preceded in death, by his parents, “Truth” and “Trust,” by his wife, “Discretion,” by his daughter, “Responsibility,” and by his son, “Reason.”
    He is survived by his 4 stepbrothers – “I Know My Rights,” “I Want It Now,” “Someone Else Is To Blame,” and “I’m A Victim.”
    Not many attended his funeral, because so few realized he was gone. If you still remember him, pass this on. If not, join the majority and do nothing.
     worldthreat No comments





  • WTF Firefox 3.6?!

    So, i upgraded Firefox to 3.6 only to discover it breaks shadowbox in most of my sites, and in an attempt to debug it, found out serverfault.com and stackoverflow.com are broken in this version. Real effin nice. I have a feeling i will be very busy debugging this winter….

     worldthreat No comments





  • psychedelic kaleidoscope




    This nifty lil .swf was created by Phong YEARS ago! Be patient while the .jpg’s download from Flickr. Link to source code @ the bottom of this post!


    A master at his trade, Phong innovated as2 and made the world a little trippier and some how more natural with his algorithms. I think he was the first programmer i really ever “MET”. It was at Burning Man 05. camping with the Cosmic Elves! Speaking of Burning Man, I have a couple Black Rock photos kaleidolized in this mix!


    Feel free to paste the location of any .jpg on the web in the player’s address bar, then hit load image…. and. Voila!
    You just remixed ANY image you chose!


    SOURCE CODE <-here

     worldthreat 1 comment

    1 comment - Latest by:
    • nEFF²
      It's truly strange that Phong was one of your first reference points and mentors, as he was one of mine as ...


  • Identity Remix

    Just finished remixing industrial rock artist, Cell’s “identity”.
    I sampled some drums from the Deftones and had some fun with the multi tracks!

    You can hear it @ http://iamcell.com

    Cell - Album Art
     worldthreat No comments





  • if the world spun faster, would our clocks catch up?

    ?

     worldthreat No comments





  • 2010 | year of the tiger

    HA! pee knew yeah!

    coming: NEW! beats! NEW! art! MORE! mediocre blogging!
    stay tuned…

     worldthreat No comments





  • Wu-Tang: Enter The Dubstep

    Wu-Tang Meets The Indie Culture Vol. 2: Enter The Dubstep

    I usually don’t soup up main stream albums too often, but… peep this!
    One of the best records i’ve heard since “Demon Days” by The Gorillaz!

    Wu-Tang

    Excerpt from wutang-corp.com: ‘This groundbreaking album is trail-blazing the collaboration between Dubstep and Hip-Hop, with stomach-pounding, bass-thumping guttural beats, and gully, gritty and grimy lyrics that break into the next decade in the chapters of each respective genre’s history. With Scuba, Parson, Trillbass, Dakimh, DZ, Rogue Star, Stenchman, Datsik & many more producing not remixes, but complex re-interpollations that include a veritable goldmine of Wu-Tang verses from the vaults that feature Raekwon, Ghostface Killa, RZA, GZA, Method Man, U-God & Masta Killa, Wu affiliates Killah Priest, Bronze Nazareth, Prodigal Sunn, Solomon Childs, Son One & more, and guest spots from Busta Rhymes, MF Doom, Pimp C, Three 6 Mafia, Ras Kass, Vast Aire, Canibus, Lord Jamar & many more, this one of a kind compilation is at the forefront of an emerging cultural and musical blend that is taking place on the margins of the mainstream, but will be talked about for years to come….’

     worldthreat No comments





  • piMP3 player | REMiX!

    So, i needed a light weight mp3 player for iamcell.com, when i stumbled upon the piMP3 Player by cssrevolt.com.  Perfect! (does not work in IE right now)…Uses prototype (less than perfect) and integrates seemingly seemless!  For the sake of UI, i added “previous” and “next track” buttons… Code can be seen below…  I worked under a stressful time constraint, so if any1 wants to jump in and drop some logic on my ass or fix the ie bug, by all means!

    _____________________________________________________

    download piMP3 player REMiX!

    next: function(e) {

    var counter = this.options.Counter++;
    var theCount = data.length;
    //alert(counter+'  |   |  ' + theCount);
    var sound = new Array();
    for(i = 0; i < theCount; i++){
    var ur = $('nextSound'+i);
    sound.push(ur);
    var cap = $('nextSound'+i).innerText;
    }
    if(counter==theCount){
    this.options.Counter=0;
    this.caption = sound[0].innerText || sound[0].textContent;
    this.sound_selected.writeAttribute('href',sound[0]).update(this.caption);
    } else {
    this.caption = sound[counter].innerText || sound[counter].textContent;
    this.sound_selected.writeAttribute('href',sound[counter]).update(this.caption);
    }

    Sound.play(this.sound_selected.readAttribute(’href’),{track:’pimp3Player’, replace:true});
    this.sound_status.show();
    Event.stop(e);
    },

    prev: function(e) {

    var counter = this.options.Counter–;
    var theCount = data.length;
    //alert(counter);
    var sound = new Array();
    for(i = 0; i < theCount; i++){
    var ur = $(’nextSound’+i);
    sound.push(ur);
    var cap = $(’nextSound’+i).innerText;
    }
    if(counter==0){
    this.options.Counter=theCount-1;
    this.caption = sound[theCount].innerText || sound[theCount].textContent;
    this.sound_selected.writeAttribute(’href’,sound[theCount]).update(this.caption);
    } else {
    this.caption = sound[counter].innerText || sound[counter].textContent;
    this.sound_selected.writeAttribute(’href’,sound[counter]).update(this.caption);
    }
    this.caption = sound[counter].innerText || sound[counter].textContent;
    this.sound_selected.writeAttribute(’href’,sound[counter]).update(this.caption);
    Sound.play(this.sound_selected.readAttribute(’href’),{track:’pimp3Player’, replace:true});
    this.sound_status.show();
    Event.stop(e);
    }

     worldthreat No comments





  • iamCell.com LiVE!

    Hello Electronic Rock fans!

    Yesterday, i released a new website: iamcell.com.

    It features the artist Cell, and his path to recording his 1st studio written LP.
    Go get some free music and look @ some fun pictures! He sounds like Ninie Inch Nails and Gravity Kills had a baby with an alarm salesman, backstage @ a rave while Rage Against The Machine does the National Anthem.

    Design and code (oh god, i hate remixing wordpress plugins) by me!

    GO LEAVE COMMENTS!!!! Lets blow up his analytics!

     worldthreat No comments





  • ftp via BASH! script

    Recently i developed an e commerce site that sends the order directly to a distributor for shipping after the bank transactions…
    Being a relatively new nerd, i work best destroying someone else’s code (script lion)… so here’s a lil contribution since every example i googled was (significantly) different. Here is a bash script that will upload files if your using a typical Media Temple server using Linux / CentOS 5… Script will also move the files to a new directory… just delete if you don’t want to move anything when your done…

    #!/bin/bash
    set -m
    theDate="$(date +%Y-%m-%d)"

    ftp -vinp ftp.urAddress.com <
    quote USER yourusername
    quote PASS 9assword
    cd Upload
    binary
    put /path/to/your/file/PO850.xml ‘date +%d_%m_%y’_PO850.xml
    quit
    EOF

    cp /path/to/your/file/*.xml /path/to/your/other_directory/

    rm /path/to/your/file/*.xml

    exit 0

    Hope this helps someone… oh… and to the younger script kiddies… don’t be afraid of Linux… shits, tit after a bit!

     worldthreat No comments









Shout Outs!

highly recommended brethren...

  • Electric Sheep
  • evilest.net
  • i am cell
  • mlebrun.com
  • rob o’toole – the flexiest man alive
  • ryantgraff.com