a conductor of fun, usually self-appointed; he/she who creates an atomsphere of merriment in nearly every situation; completely unrelated to being productive.
Jim: Do we have to go to that lame dinner party?
Sue: Yeah, but don't worry. Nancy's going! She's the funductor!
Jim: Sweet! Nancy knows how to bring the party!
Sue: Yeah, but don't worry. Nancy's going! She's the funductor!
Jim: Sweet! Nancy knows how to bring the party!
by missc3 May 18, 2011
Get the funductor mug.The halftime show at last night's Albuquerque Thunderbirds game was unreal, thanks to the excellent script written by the funrector.
by Coordicationer December 29, 2009
Get the Funrector mug.Related Words
'Who goes there?' I cry into the darkness
The only reply that he could muster,
'I'm everything you'll ever need my friend, I am Monkey The Funduster.'
And so I smiled and went to sleep.
Jon Richardson 6music
The only reply that he could muster,
'I'm everything you'll ever need my friend, I am Monkey The Funduster.'
And so I smiled and went to sleep.
Jon Richardson 6music
by MonkeyTheFunduster February 17, 2010
Get the Monkey The Funduster mug.Fun + Productive
Term coined by Chad Ochocinco meaning having fun while being productive at the same time.
Term coined by Chad Ochocinco meaning having fun while being productive at the same time.
by och8cinco October 6, 2009
Get the Funductive mug.by Pinabutta November 4, 2008
Get the Fundatory mug.This afternoon, we have to trudge up the hill to the fundatory holiday party. If i wanted to die of boredom, I could stay in my own office and listen to Bill talk about his kids, but noooooo, we have to hit the fundatory.
by bee listy December 10, 2008
Get the fundatory mug.A functor, or function object, is a class in C++ with the () operator overloaded. Functors are used a lot in the standard library to do custom comparisons. They're used in place of function pointers because sometimes you need to store a value or remember something (ie. put the functor into a special 'state' for whatever purpose), a functor can do this, a function pointer can't (without messing with global variables).
class over5 { // this class is the functor
bool operator() (int x) {
return x > 5;
}
};
std::list<int> L;
... // put a bunch of ints onto the list
over5 o5;
std::find_if(L.begin(), L.end(), o5);
// o5 will have its overloaded () operator called to check if the element in L is over 5.
bool operator() (int x) {
return x > 5;
}
};
std::list<int> L;
... // put a bunch of ints onto the list
over5 o5;
std::find_if(L.begin(), L.end(), o5);
// o5 will have its overloaded () operator called to check if the element in L is over 5.
by Sam Johnston July 23, 2005
Get the functor mug.