- 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.
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….
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!
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

?
HA! pee knew yeah!
coming: NEW! beats! NEW! art! MORE! mediocre blogging!
stay tuned…
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!

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….’
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!
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);
}
Hello Electronic Rock fans!
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!
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!
It's truly strange that Phong was one of your first reference points and mentors, as he was one of mine as ...