Welcome Guest Login or Signup
FLASHCHAT | INSTANT MESSENGER | BOOKMARK
| LANGUAGE:
 

Rdubvonshizz
PROFILE   GALLERY   BLOGS   GUESTBOOK   FRIENDS   FAVORITES   VIDEOS  
 
Film is like tasty bacon for my eyes

mem_normal OFFLINE
Male
21 years old
Illinois
United States
Profile Views: 22391


JOB: Editor
EXPERIENCE: 2 to 3 yrs
OWN EQUIPMENT: Yes
CLASS LEVEL: Professional
AWARDS: Other
TRAVEL: Yes
MEMBER SINCE: 10/16/2007
STAR SIGN: Sagittarius
LAST LOGIN: 08/31/2008 17:54:51
MY RATING: 0.00

film editing, bass guitar, sound editing, hockey



purevolume™ | Funkodore Roosevelt






















var fansPage = 0;
var friendsPage = 0;
var commentsPage = 0;
var labelArtistsPage = 0;
var statsPage = 0;
var close = '';


function addArtistComment(artistId, comment){
var id = "icon_addcomm";
document.getElementById(id).value = '

Adding Comment...

' + close;
x_addArtistComment(artistId, comment, addArtistComment_cb);
}
function addArtistComment_cb(results){
var errorMsg = "Unable to add comment";
var id = "icon_addcomm";

if(results == 1){
document.getElementById(id).innerHTML = '

Your comment has been submitted and is awaiting your friend's approval

' + close;
}
else{
document.getElementById(id).innerHTML = '

' + errorMsg + '

' + close;
}
}


function addArtistToFaves(artistId){
document.getElementById('addFavBox').innerHTML = 'Adding Favorite...';
x_addArtistToFaves(artistId, addArtistToFaves_cb);
}
function addArtistToFaves_cb(results){
var errorMsg = "Unable to add artist to favorites";
var id = "addFavBox";

if(results == 1){
document.getElementById(id).innerHTML = '

FUNKODORE ROOSEVELT has been saved as a favorite

' + close;
}
else{
//alert(results);
document.getElementById(id).innerHTML = '

' + errorMsg + '

' + close;
}
}

function addArtistToFriends(artistId){
document.getElementById('icon_addfriend').innerHTML = '

Adding Friend...

';
x_addArtistToFriends(artistId, addArtistToFriends_cb);
}
function addArtistToFriends_cb(results){
var errorMsg = "Unable to add artist as a friend";
var id = "icon_addfriend";

if(results == 1){
document.getElementById(id).innerHTML = '

Your friend request has been sent.

' + close;
}
else{
//alert(results);
document.getElementById(id).innerHTML = '

' + errorMsg + '

' + close;
}
}

// ICON POPUPs
Menu = {timer : null, current : null};
Menu.getStyle = function(name)
{
if(document.getElementById) return document.getElementById(name).style;
else if(document.all) return document.all[name].style;
else if(document.layers) return document.layers[name];
}
Menu.show = function(name)
{
if(this.timer) clearTimeout(this.timer);
this.getStyle(name).visibility = "visible";
this.current = name;
}
Menu.hide = function()
{
this.timer = setTimeout("Menu.doHide()",0);
}
Menu.doHide = function()
{
if(this.current)
{
this.getStyle(this.current).visibility = "hidden";
this.current = null;
}
}


// remote scripting library
// (c) copyright 2005 modernmethod, inc
var sajax_debug_mode = false;
var sajax_request_type = "POST";

function sajax_debug(text) {
if (sajax_debug_mode)
alert("RSD: " + text)
}
function sajax_init_object() {
sajax_debug("sajax_init_object() called..")

var A;
try {
A=new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
A=new ActiveXObject("Microsoft.XMLHTTP");
} catch (oc) {
A=null;
}
}
if(!A && typeof XMLHttpRequest != "undefined")
A = new XMLHttpRequest();
if (!A)
sajax_debug("Could not create connection object.");
return A;
}
function sajax_do_call(func_name, args) {
var i, x, n;
var uri;
var post_data;

uri = "sajax.php";
if (sajax_request_type == "GET") {
if (uri.indexOf("?") == -1)
uri = uri + "?rs=" + escape(func_name);
else
uri = uri + "&rs=" + escape(func_name);
for (i = 0; i < args.length-1; i++) > uri = uri + "&rsargs[]=" + escape(args[i]);
uri = uri + "&rsrnd=" + new Date().getTime();
post_data = null;
} else {
post_data = "rs=" + escape(func_name);
for (i = 0; i < args.length-1; i++) > post_data = post_data + "&rsargs[]=" + escape(args[i]);
}

x = sajax_init_object();
x.open(sajax_request_type, uri, true);
if (sajax_request_type == "POST") {
x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1");
x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
}
x.onreadystatechange = function() {
if (x.readyState != 4)
return;
sajax_debug("received " + x.responseText);

var status;
var data;
status = x.responseText.charAt(0);
data = x.responseText.substring(2);
if (status == "-")
alert("Error: " + data);
else
args[args.length-1](data);
}
x.send(post_data);
sajax_debug(func_name + " uri = " + uri + "/post = " + post_data);
sajax_debug(func_name + " waiting..");
delete x;
}


// wrapper for getStats
function x_getStats() {
sajax_do_call("getStats",
x_getStats.arguments);
}


// wrapper for getFans
function x_getFans() {
sajax_do_call("getFans",
x_getFans.arguments);
}


// wrapper for getFriends
function x_getFriends() {
sajax_do_call("getFriends",
x_getFriends.arguments);
}


// wrapper for getComments
function x_getComments() {
sajax_do_call("getComments",
x_getComments.arguments);
}


// wrapper for getLabelArtists
function x_getLabelArtists() {
sajax_do_call("getLabelArtists",
x_getLabelArtists.arguments);
}


// wrapper for getLabelProfileArtists
function x_getLabelProfileArtists() {
sajax_do_call("getLabelProfileArtists",
x_getLabelProfileArtists.arguments);
}


// wrapper for commitReorderSongs
function x_commitReorderSongs() {
sajax_do_call("commitReorderSongs",
x_commitReorderSongs.arguments);
}


// wrapper for addArtistComment
function x_addArtistComment() {
sajax_do_call("addArtistComment",
x_addArtistComment.arguments);
}


// wrapper for addArtistToFaves
function x_addArtistToFaves() {
sajax_do_call("addArtistToFaves",
x_addArtistToFaves.arguments);
}


// wrapper for addArtistToFriends
function x_addArtistToFriends() {
sajax_do_call("addArtistToFriends",
x_addArtistToFriends.arguments);
}


// wrapper for test
function x_test() {
sajax_do_call("test",
x_test.arguments);
}


// wrapper for toggleDownloadableSong
function x_toggleDownloadableSong() {
sajax_do_call("toggleDownloadableSong",
x_toggleDownloadableSong.arguments);
}


// wrapper for saveSongOrder
function x_saveSongOrder() {
sajax_do_call("saveSongOrder",
x_saveSongOrder.arguments);
}


// wrapper for saveSongAssociationOrder
function x_saveSongAssociationOrder() {
sajax_do_call("saveSongAssociationOrder",
x_saveSongAssociationOrder.arguments);
}






_uacct = "UA-93016-1";
urchinTracker();




GS_googleAddAdSenseService("ca-pub-2496626852869849");
GS_googleEnableAllServices();


GA_googleAddSlot("ca-pub-2496626852869849", "ROS_LEADERBOARD_728x90_ATF");
GA_googleAddSlot("ca-pub-2496626852869849", "ROS_FOOTER_728x90_BTF");
GA_googleAddSlot("ca-pub-2496626852869849", "ROS_SKYSCRAPER_160x600_ATF");
GA_googleAddSlot("ca-pub-2496626852869849", "ROS_BLOCK_AD_300x250_ATF");
GA_googleAddSlot("ca-pub-2496626852869849", "ROS_BLOCK_AD_300x250_BTF");
GA_googleAddSlot("ca-pub-2496626852869849", "ROS_RECTANGLE_AD_300x100_BTF");
GA_googleAddSlot("ca-pub-2496626852869849", "ROS_SMALL_RECTANGLE_AD_300x60_BTF");
GA_googleAddSlot("ca-pub-2496626852869849", "ROS_TARGETED_SKYSCRAPER_160x600_ATF");
GA_googleAddSlot("ca-pub-2496626852869849", "GENRE_TARGETED_728x90_ATF");
GA_googleAddSlot("ca-pub-2496626852869849", "Flyleaf_Profile_Targeted_728x90");


GA_googleFetchAds();





















FUNKODORE ROOSEVELT





















Funkodore Roosevelt



Club / Ambient
Byron, IL R-Dub Von Shizz




















swapFlashDivs("transatlantic");




















BILLBOARD







PHOTOS









BLOG



Funkodore Roosevelt hasn't posted a blog yet.






SHOWS






Funkodore Roosevelt hasn't posted any shows yet.


































STATS























FANS



Total Fans0




getFans('next','99457775');



FRIENDS



Total Friends0





COMMENTS



Total Comments0






















Are you sure you want to add
FUNKODORE ROOSEVELT
as a Friend?












All GenresAcousticAlternativeAmbientBluegrassBluesChristianChristian RapClassic RockClubComedyCountryDeath MetalDrum and BassElectronicaEmoExperimentalFolkFolk RockFunkGrungeHardcoreHip HopHouseIndieIndustrialJam BandJazzMetalMetalcoreOtherPopPop PunkPost HardcorePowerpopProgressivePsychedelicPunkR&BRapReggaeRockRockabillyScreamo SkaSoulSouthern RockSurf RockWorld
















_qacct="p-064ChFffHQLkk";quantserve();

Quantcast











Anything made by: Terry Gilliam, Wes Anderson, David Lynch, David Mamet

Queens of the Stone Age, Nebula, Fu Manchu, Funkodore Roosevelt

any Hunter S. Thompson or Philip K. Dick book


FilmRunner Fans








Dark comedy

myspace

School:
By the end of this Spring Semester I will have received an Associates in Fine Arts and an Associates in Mass Communication. I have done numerous independent studies for college credit directly related to film and video. I have also under gone an internship program with a local production studio, Moments Video. They have recently picked me up as a head editor and as a videographer.
Equipment I have used:
Cameras- GL1, GL2, XL1, DSR-250, DSR-500, JVC GY-HD100
Avid XpressPro
Sorenson Squeeze
Adobe After Effects
Glide Cam
Dolly
Wireless Mics
Shotgun Mics
Full live to tape studio with three cameras and light grid
What I have or will be Doing:
Directed a live to tape Cable show
Editing video art pieces for the Long Island Music Awards
Editing a TV series for Cable called “All Around Rockford on Location”
Event Videography and editing to pay for food and water
Equipment I own:
New Mac Book Pro
1.5 Terabit Storage drive
Avid Xpress Pro 5.7.2
Light Wave 3D 09
Newtek Arsenal

My heart is in editing but I can also shoot, write and direct if needed




Displaying 2 out of 2 comments
03/12/2008 10:45:02
Shooting over a hello! Let me know if you need any tech help for your page. Do you need any help uploading your profile pic?


11/06/2007 16:45:23
Hey man, thanks for he request! Nice edit! Look forward to see more of your work! :)



*** Filmmakers Network ***