• 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





  • Pin Up Girls

    I did these remixes in 2007, i believe. I got the originals from a pin-up girl calendar and “traced” them with sharpie and paint-marker, giving the gals modern hair styles and adding my 2 cents!
    I can’t seem to find the name of the artist… If any1 has insight, leave a comment and help a cracker out!
    :)

    pin up paint marker sharpie art

    pin up paint marker sharpie art

    UPDATE! UPDATE! UPDATE! UPDATE! UPDATE!

    I found one of the originals…. I can’t make out his name….
    pin up
    I’ll update when i can.

    UPDATe! 4-12-2010

    I’ve remixed these girls even further! digitally!
    peep it here!

     worldthreat No comments





  • Global Orgasm

    December 21st, 2009

    Welcome to the 4th Annual Global Orgasm for Peace!

    Mark Your Calendars

    This year’s Solstice is on December 21, 2009 at 17:47 UTC, and we thought, since it falls on a Monday for much of the world, we would give everyone a 24-hour period around that time. That would be 5:47 am on the 21st to 5:47 am on the 22nd UTC.

    WHO? All Men and Women, you and everyone you know.

    WHERE? Everywhere in the world, but especially in countries with weapons of mass destruction and places where violence is used in place of mediation.

    WHEN? December 21st,, 2009
    at 17:47 Universal Time (GMT)

    WHY? To effect positive change in the energy field of the Earth through input of the largest possible instantaneous surge of human biological, mental and spiritual energy.

    don’t believe me? well then, http://www.globalorgasm.org/

     worldthreat No comments









Shout Outs!

highly recommended brethren...

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