'+pages+'');
$('.stream > div:odd').addClass('bgr_color');
updateHeight('#history');
});
window.activateTabArea = ensure(function(tab, areas){
var parsed = false;
var parts = (areas || '').split('/');
window.fsonload = $.inArray('fs', parts) >= 0;
if(fsonload){
parts.splice(parts.indexOf('fs'), 1);
}
var replayMode = false;
if($.inArray('replay', parts)>=0){
replayMode = 'replay';
}
var noSoundMode = false;
if($.inArray('nosound', parts)>=0){
noSoundMode = 'nosound';
}
if($.inArray('ns', parts)>=0){
noSoundMode = 'ns';
}
var previewMode = null;
if($.inArray('p', parts)>=0){
previewMode = 'p';
}
if($.inArray('preview', parts)>=0){
previewMode = 'preview';
}
if($.inArray('repeat', parts)>=0){
replayMode = 'repeat';
}
if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){
replayMode = 'r';
}
if(replayMode){
parts.splice(parts.indexOf(replayMode), 1);
}
if(noSoundMode){
parts.splice(parts.indexOf(noSoundMode), 1);
}
if(previewMode){
parts.splice(parts.indexOf(previewMode), 1);
}
if(previewMode){
if(!parts.length){
parts = ['1-14', '999:59'];
}
}
var area = parts[0];
if(tab == 'history' && false){
var page = parseInt(area || '1') || 1;
$.ajax({
url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1),
dataType: 'jsonp',
success: function(response){
$ensure(function(){
renderHistory(response, page);
});
}
});
return true;
}
if(tab == 'global_history' && false){
var page = parseInt(area || '1') || 1;
globalHistory.fetchStream(page, '', function(){
updateHeight('#global_history');
});
return true;
}
if(tab == 'my_playlists' && false){
var page = parseInt(area || '1') || 1;
myPlaylists.fetchStream(page, '', function(){
updateHeight('#my_playlists');
});
return true;
}
if(tab == 'my_videos' && false){
var page = parseInt(area || '1') || 1;
myVideos.fetchStream(page, '', function(){
updateHeight('#my_videos');
});
return true;
}
if(tab == 'related_sites' && areas && matchPosition(areas)){
var seconds = parsePosition(areas);
scrollRelated(seconds);
return false;
}
if(matchPosition(area) || matchAction(area)){
parts.unshift('1');
area = parts[0];
}
if(tab == 'expand' && area && area.match(/\d+/)) {
var num = parseInt(area);
if(num < 100){
//FIX ME. Load news page with ajax here
}
else if(num > 1900){
//FIX ME. Load timeline page with ajax here
}
}
else if(tab.match(/^playlist\d+$/)){
var playerId = parseInt(tab.substring(8));
var vp = videoplayers[playerId];
window.descriptionsholder = $('.descriptionsplace');
if(!vp) return; // why? no player?
if(replayMode){
$('.replaycurrent'+playerId).attr('checked', true);
vp.setReplayCurrent(true);
}
var playQueue = [];
window.playQueue = playQueue;
var playQueuePosition = 0;
var playShouldStart = null;
var playShouldStop = null;
var parseList = function(x){
var items = x.split(/;|,/g);
var results = [];
for (i in items){
try{
var action = parseAction(vp, items[i]);
if(!action.video){
if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]);
}else{
results.push(action);
}
}catch(e){
if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]);
}
}
return results;
};
var scrollToPlaylistPosition = function(vp){
var ppos = vp.getPlaylistPosition();
var el = vp.playlistContainer.find('>li').eq(ppos);
var par = el.closest('.playlist_scrollarea');
par.scrollTop(el.offset().top-par.height()/2);
}
var updateVolumeState = function(){
if(noSoundMode){
if(noSoundMode == 'turn-on'){
clog("Sound is on, vsid="+vp.vsid);
vp.setVolumeUnMute();
noSoundMode = false;
}else{
clog("Sound is off, vsid="+vp.vsid);
vp.setVolumeMute();
noSoundMode = 'turn-on';
}
}
}
var playQueueUpdate = function(){
var playPosition = playQueue[playQueuePosition];
vp.playFromPlaylist(playPosition.video);
scrollToPlaylistPosition(vp);
playShouldStart = playPosition.start;
playShouldStop = playPosition.stop;
};
var playQueueAdvancePosition = function(){
clog("Advancing play position...");
playQueuePosition ++;
while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){
playQueuePosition ++;
}
if(playQueuePosition < playQueue.length){
playQueueUpdate();
}else if(vp.getReplayCurrent()){
playQueuePosition = 0;
playQueueUpdate();
vp.seekTo(playShouldStart);
vp.playVideo();
}else{
vp.pauseVideo();
playShouldStop = null;
playShouldStart = null;
}
};
function loadMoreVideos(playerId, vp, start, finish, callback){
var playlistInfo = playlists[playerId-1];
if(playlistInfo.loading >= finish) return;
playlistInfo.loading = finish;
$.ajax({
url: '/api/upge/cheetah-photo-search/query_videos2',
dataType: 'json',
data: {
query: playlistInfo.query,
orderby: playlistInfo.orderby,
start: start,
count: finish-start
},
success: function(response){
var pl = vp.getPlaylist().slice(0);
pl.push.apply(pl, response);
vp.setPlaylist(pl);
callback();
}
});
}
if(parts.length == 1 && matchDash(parts[0])){
var pl = vp.getActualPlaylist();
var vids = parseDash(parts[0]);
parts = [];
for(var i = 0; i < vids.length; i++){
playQueue.push({
'video': pl[vids[i]-1],
'start': 0,
'stop': null
})
}
if(vids.length){
if(vids[vids.length-1]-1>=pl.length){
loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){
if(fsonload){
activateTabArea(tab, parts[0]+'/fs');
}else{
activateTabArea(tab, parts[0]);
}
var pls = vp.getPlaylist();
vp.playFromPlaylist(pls[pls.length-1]);
vp.playVideo();
scrollToPlaylistPosition(vp);
});
return true;
}
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
playShouldStart = 0;
}
}
if(previewMode){
var vids = [];
var dur = 0;
var pl = vp.getActualPlaylist();
area = parts[0];
if(parts.length == 1 && matchPosition(parts[0])){
vids = parseDash('1-'+pl.length);
dur = parsePosition(parts[0]);
parts = [];
}else
if(parts.length == 1 && matchDash(parts[0])){
vids = parseDash(parts[0]);
dur = parsePosition("999:59");
parts = [];
}
if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){
vids = parseDash(parts[0]);
dur = parsePosition(parts[1]);
parts = [];
}
for(var i = 0; i < vids.length; i++){
playQueue.push({
'video': pl[vids[i]-1],
'start': 0,
'stop': dur
})
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
}
}
if(parts.length>1){
for(var i = 0; i < parts.length; i++){
var sel = findMatchingVideo(vp, parts[i]);
if(sel){
playQueue.push({
'video': sel,
'start': 0,
'stop': null
})
}
}
if(playQueue){
playQueueUpdate();
vp.playVideo();
parsed = true;
}
}else if(area){
var sel = findMatchingVideo(vp, area);
if(sel){
vp.playFromPlaylist(sel);
playShouldStart = 0;
parsed = true;
}
}
if(fsonload || replayMode){
playShouldStart = 0;
}
if(document.location.search.match('at=|queue=')){
var opts = document.location.search.replace(/^\?/,'').split(/&/g);
for(var o in opts){
if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){
playShouldStart = parsePosition(opts[o].substr(3))
}
if(opts[o].match(/^queue=/)){
playQueue = parseList(opts[o].substr(6));
if(playQueue){
playQueuePosition = 0;
playQueueUpdate();
}
}
}
}
if(matchPosition(parts[1])){
playShouldStart = parsePosition(parts[1]);
parsed = true;
}
if(matchAction(parts[1])){
var action = parseAction(vp, area+'/'+parts[1]);
playShouldStart = action.start;
playShouldStop = action.stop;
parsed = true;
}
if(playShouldStart !== null && !playQueue.length){
playQueue.push({
video: vp.getCurrentVideo(),
start: playShouldStart,
stop: playShouldStop
});
}
if(playShouldStart != null){
setInterval(function(){
if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){
playShouldStop = null;
if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){
playQueueAdvancePosition();
}else{
playShouldStart = null;
}
}
}, 500);
vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){
if(state == 'ended'){ // advance to the next video
playQueueAdvancePosition();
}
});
vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){
if(state){
updateVolumeState();
if(playShouldStart !== null){
vp.seekTo(playShouldStart);
playShouldStart = null;
}else{
playShouldStop = null; // someone started other video, stop playing from playQueue
}
}
if(fsonload) {
triggerFullscreen(playerId); fsonload = false;
}
});
}
}
else if(tab.match(/^wiki\d+$/)){
if(firstTimeActivate){
load_wiki($('#'+tab), function(){
if(area){
var areaNode = $('#'+area);
if(areaNode.length>0){
$('html, body').scrollTop(areaNode.offset().top + 10);
return true;
}
}
});
}
}
return parsed;
})
window.activateTab = ensure(function(tab, area){
window.activeArea = null;
if(tab == 'import_videos'){
if(area){
import_videos(area);
}else{
start_import();
}
return true;
}
if(tab == 'chat'){
update_chat_position($('.chat').eq(0));
window.activeArea = 'chat';
jQuery('.tabtrigger').offscreentabs('activateTab', 'chat');
return true;
}
if(tab in rev_names){
tab = rev_names[tab];
}
if(tab.match(':')){ return false; }
var sup = $('ul li a[id=#'+tab+']');
if(sup && sup.length>0){
window.activeArea = area;
sup.first().click();
if(!window.activateTabArea(tab, area)){
window.activeArea = null;
}
window.activeArea = null;
return true;
}else{
var have_tabs = $('#playlist_menu li').length;
if(tab.match(/^playlists?\d+$/)){
var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs;
if(to_add>0 && have_tabs){
add_more_videos(to_add);
return true;
}
}
}
return false;
});
window.currentPath = ensure(function(){
return window.lastHistory.replace(basepath, '').split('?')[0];
});
window.main_tab = window.main_tab || 'videos';
window.addHistory = ensure(function(path){
if(window.console && console.log) console.log("Adding to history: "+path);
if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){
if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') {
path = basepath;
} else if( path.match('^'+main_tab+'/') ){
path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/');
} else {
path = basepath + '/' + path.replace('--','/');
}
if(document.location.search){
path += document.location.search;
}
if(window.lastHistory) {
history.pushState(null, null, path);
}
else if(window.lastHistory != path){
history.replaceState(null, null, path);
window.lastHistory = path;
}
}
else{
path = path.replace('--','/');
if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') {
path = '';
}
if(window.lastHistory != '/'+path){
window.location.hash = path? '/'+path : '';
window.lastHistory = '/'+path;
}
}
});
$('.tabtrigger li a').live('click', ensure(function() {
var tab = $(this).attr('id');
if(tab.substring(0,1) == '#'){
var name = tab.substring(1);
if(name in menu_names){
name = menu_names[name][0];
}
realTab = rev_names[name];
$('#'+realTab).show();
if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:''));
var path = name;
if(window.activeArea){
path = path + '/' + window.activeArea;
}
if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){
$('.multiple-playlists').show();
$('.related_playlist').show();
$('.longest_videos_playlist').show();
}else {
$('.multiple-playlists').hide();
$('.related_playlist').hide();
$('.longest_videos_playlist').hide();
}
// start the related script only when the tab is on screen showing
if (tab.match(/related_sites/)) {
if (mc) {
mc.startCredits();
}
}
window.activeTab = realTab;
addHistory(path);
setTimeout(ensure(function(){
if(tab.match(/language--/)){
$('.tabtrigger').offscreentabs('activateTab', 'language');
}
if(tab.match(/weather/)) {
$('.tabtrigger').offscreentabs('activateTab', 'weather');
loadContinent();
}
updateMenus(tab);
updateHeight();
}), 10);
}
return false;
}));
});
-->
Jonathan Mann
Released 2014
I Am Scared of Being Lost
Manifest
The Coward
There’s a Cold Going ’Round
Sick Sick Season
I’m in a Bubble State of Mind
I Will Tell You the Truth
The Parts of Me I Want to Kill
As Weather Does Allow
Piers Morgan and Alex Jones Boxing Match
Bad Theories
Oh La La
Misdirection Man
Tommy Lee Jones Is Not Amused
Monster
Tony Danza Puking Up Unicorns
Healthbox State of the Industry: London
Sleep When Dead
Platform Nine and Three-Quarters
Big, Big Stuff
You Won’t Remember What It Was Like Before
Psquash
Everything Was Beautiful, and Nothing Hurt
Hanging IKEA Stuff
Dolphin Trapped in the Gowanus
Fire Helicopter to the Rescue
No Time Song a Day
Burrito Bird
We Put Ourselves Together
Ain’t That the Way
It Won’t Grow Digital
Come Live With Me in Brooklyn
Trying to Take a Nap
The City Says I’m Tiny
Tammy Christine Brumm
If I Was Good at Math
Magic and Technology
Flossing
Non-Existent Cat
George W. Bush’s Self Portraits
Go Easy on Yourself
Gone, Gone
I Can, Oh
Social Regulation of the Neural Response to Threat
Greg Thompson
I Love Yous Thomas Hughes
King of Go for Pro, Yo
Hidey Hidey Go for Pro!
Is This My Life
Pickles the Cat
By Degrees
Death, Death, Death
Compassion
Stress
When Your Grandma Is Dying
My Grandmother’s Uke
Anderson Cooper’s Eye Cleavage
Life’s a Precious Gift
Muzzak
It’s Impossible
My Bubby Is Dead
I Am Animal
The Student Debt Bubble
Oh Little Anthropod
Prometheus Took
"I" Apostrophe "M"
One Small Step to Oh My God
Feel It
What Would You Do If I Said I Was Tired
Choose Cloe Latchkey to Do the Pedalpalooza Poster, Please
I Have to Be Nice
Google Poetry Song
The New Pope Looks Like...
Trains Make Me Pee
Common Sense
A Song I Made Up While Running Up a Hill
I Want to Live on Mars
The Feeling God
Nope
Big, Big Stuff
I Love/Hate You Penelope Trunk
Hey! You Found a Boat!
Impossible
George Bush’s Paintings
ATP Ending Theme
Call It Ours
You Are My Prime Directive
Pie and Posies
Pandoras Box Had Nothing in It
Look Into My Heart
Bioshock Infinite Song
Kim Jong Un Doing Things
Famous Actors With No Teeth
Particles
You Better Lie Down, Kid
How Does the World Work?
LA Only at Night
They Don’t Have Internet at the Hotel
Another Airport Song
Thank You for Wishing Me a Happy Birthday on My Facebook Page
The Future Is Your Free Will
Make Nice
Scottland Theme Song
A Dispatch From Outerspace
I Am Not What I Seem
No Rest for the Weary
Spring Has Finally Come
Today We Clean the Space
NOT THE SAME PLACE
Sounds of the City
Scientists Might Have Found Earth 2.0
My Comment to the TSA
I’m Sure Your Gods’ll You
Cold Fish
Procrastinators Anthem
12 Facts About George Jones
The Blue Whale
When It Rains You Feel It in Your Bones
What Makes Us Human
The Truth of It
It’s Too Nice Out to Play Video Games
Feminazi’s Stole My Ice Cream
BKA
I’m a Morning Person
A Brief History of Cindeo de Mayo
Make Some Heart Out of This Art-Ache
Charles Ramsey Autotune #12
Stanley E. Cohen
You Gotta Touch His Frickin’ Heart (Jeff Bliss Duncanville remix)
You Have to See the Good Stuff, Too
Facebook Ads Are Creepy
Treat Your Mother Right
Bitchin’ Camaro
Sometimes a Weird Smell
Gary the Walrus With ADD
Push on That Door
Burt Reynolds Pose
Run for Your Life
You’re a Giraffe
My Summer Plans
You Don’t Have to Be Good
Don’t Say GIF
Do My Thing
Under the Weight of Summer Marauders
We Will Never Stop
I’ve Turned Into Juice
Llamas and Oranges
Patreon Song
MacBeth on Broadway
Yeah, I Worry
Last One Standing
Pigeon Poop
Buy My Bed
I Miss Playing Video Games
Red Wedding Reactions
Ugly Animals
SOHCAHTOA
Debbie Charter
Teenagers Are Moping
In the Days of 5 Alarms
Journals
The NSA Is Listening to You
Oar Fish
Abstract vs. Concrete Nouns (A video Contest!)
His Beard Will Grow and Grow
Fight the Ninjas Inside of Me
If This House Could Talk
Stephen (Double Jeopardy) Bruckert
Steven Banks Is Billy the Mime
Sleep in a Bed
Pythagorean Therom
Javad Akbari
Super Moon
I Am the Monster
Jonny Flood and the Grand Canyon
Dancing on a Volcano
We’ve Got to Do It
Point, Line, Plane
Medicine Music
Help Me Obi Wan
One More Hit of Viral Medicine
Dawn Is Sprazy
Founders Killed the Rockstar
Sounds Animals Make
A Short Silly Song About Independance Day
Ryo Hirosawa
You Got the Right Way, You Got the Wrong Way
When’s the Future Gonna Be Here
Tina and Ozzy
Turn Your Phone! (Vertical video PSA)
There Their and They’re Song
The Lorem Ipsum Song
Shake That Wiimote Rachel
Playing a Good Video Game
I Don’t Want to Live on This Planet Anymore
John and Elyssa
Hours in the Day
Your vs. You’re Song
And the Pitch Fell Down
Fuck You, Too Hot
Change Is Good
This Horse Won’t Fly
There Was a Baby Born in England
The Mario Opera Returns
To, Too and Two Song
Amsterdam
Jerry Finny
What’s the Worst That Could Happen?
My 10th Day and I Still Loving Everyday of This Miracle Fruit
Electiric Binge
You Got Time
Six Big Colorful Balls
Window Washers
Ode to Nytimes Legal Force
Stuck in a Well
Ding Dong
Gallus Gallus Domesticus
The Legend of Zelda With Ukulele
Octopi/Octorok
Making the Bed in My Undies
I Don’t Want to Go Back to School
This Is the Song I Write When I Don’t Know What to Write
Elon Musk and the Hyperloop of Faraway Dreams
Give Me Coffee
Google Made Me Eat a Cronut
Notograph!
On the Other Side of This
Mario Returns #2
I Just Performed the Mario Opera!
Cuz It’s OK
Do You See the Way She’s Looking at You?
This Is All That We Got
Kindergarten Can Be Scary
Get on Up to the Sky
A Human Treeing
Robots Are Taking Over the World
Look Up at the Sun
Reese Burren Guthman
Fukushima, Syria and Miley Cyrus’ Tongue
Bring Back the Thunder
That Last Gleam
The Replacement Child
More Than the Sum of Your Parts
I Told Myself Alright
Playing With GI Joes
John Kerry Sorta Looks Like Odo
Welcome to Earth
Tamu Massif
Dear Brain, Let Me Sleep
Waffles Are Better Than Pancakes
Ronen Verbit
Don’t Let Everybody Tell You What to Do
I Miss Steve Jobs
Bone Cage
What Am I Running From?
Giving Me Head in the Kitchen
The Dude Bros Are Watching Football Next Door
The Numbers Don’t Lie!
The Mercy of the Court
iOS 7 Tutorial Song
GTA: This Is Why We Video Gaming
Why Do People Love?
Hiroshi Yamauchi, Nintendo’s Father Forever
Dissatisfied
Don’t Mind Me, I’m Just a Little Boy
Singing With My Shadow
Babette Babette Babette, Goodbye
The Fight Finds Us
Back to Where I Started From
A Terrified Rottweiler
College Alumni Song
Denied You
Destroy All Patent Trolls
Government Shutdown Sitcom Theme Song
A Song About Writing a Song a Day
Now I Am the Asshole
Back to Where I Started From (Produced version)
Stop Thinking That Way
Down the Street Kids Are Making Out
10 Minutes
You Can’t Force It
Brooklyn Beta 2013 Day One Recap Song
Let’s Fix the Light
Indecision
Make the Bed Your Head
Story War
God Was Such a Dick
Talk to Her
Debt Crisis
Who Is Your Boss?
A Dog Named Cat and a Dog Named Mouse
What Will the Future Bring?
I Can Love You and I Can Hate You
Obligatory Fall Sick Song
I’ve Got No Words for You
Clean the Molasses Off of Your Glasses
Too Tired for All of This
Colors of Light and Paint
Good Night Serena
Go Faster, Cab
Lou, Lou, Lou
Goodbye Beeblemeyer
I’m Not Scared of Halloween
Hey, Alstair
Mother Nature Is Mother Fucking Scary
ATP Ending Theme 2.0
7 Billion People Are in the World
Movado ESQ One
Change Is Good
Stop Fighting So Hard
Goodbye Everpix
I Need a New Studio
I’m Moving Again
I’m Cooking Dinner Tonight
Busting Down Walls
Happy Birthday Laughing Squid
Armageddon for the Green Bay Packers
You Need Green in Your Life
Keep Looking
An Ode to M.U.S.C.L.E.
The Force
Hypochondria Is Conagious
Lucy Time
You’ll Find It in That
The Day of the Doctor
11 Doctors, 1 Song
In the Morning
Don’t Answer That…
Tomorrow’s Song
Everything That’s in My Head
Some Thanksgiving Thoughts
Zombie Turkey (weird reggae version)
The Answer to Bullying Is Love
Boom Boom Heartbeat Message
Happy Birthday Noura, Again
You Look Like Food to the Dinosaurs
Have You Played the New Zelda
Abraham Lincoln Was a Friend of Mine
Look Out for the Future
Revenge Is a Dish
Oh, I’ve Got to Go
Put on My Comfy Pants
Everything Is Better
In the Woods
There’s Nothing Left but You
This Is the Moon
Teach a Man to Fish Unless He’s Vegan
It’s Snowing
I’m Already Here
ATP Holiday Theme
Viral Videos of 2013: The Song
Happy Christmas Kevin and Kylie
Hey Kristopher
Vice
A Cringeworthy Look Back at 2013
Jewish Family Christmas Tree From the Woods
Dirty Hands
Sledding
Feeling Tired on Christmas Day
Thought and Expression
Living in the Age of the Hoax (A PSA in Song)
Empty Planet
Just Too Beautiful
So, So Heavy
I Will Write Another Song
Released 2013
Clock
Bulb
Outlet
Phone
Plunger
Scissors
Folder
Umbrella
Events That Happened Last Night
Stephen Merritt
Turtles
So It Glows
Who Ate My Teeth
Every Sunset, Every Full Moon
Boring Melody (redux)
WTF Is M(i)LK Day?
Stop SOPA and PIPA!
Snow
LEDwaves
Pumpkin Jojo
My Mom Is Sorry ;-(
The Giants Won!
Mitt Romney Pays Less Taxes Than Me
Togetherment
A Song I Made Up in a Diner
Foxconn Workers Should Unionize
Deep Bisque
I Can’t Keep a Straight Face
Where’s My Teleportation?
Infinite Ways to Die
Pink Slime
Singing With the Fan
Let’s Make Sounds
Michael Cera With a Moustache
The Best Song Ever About the Giants Winning the Super Bowl
Make It in the Music Business
Our Weird Garden
Atomic Alert EXPLOSION
Civilization Is Flying a Kite
Duet With a 165 Million Year Old Cricket
Kitty Dandelion Love
So Cold and Windy
Upsetting Chris Brown Reactions Song
I Don’t Like to Read Jane Austen
Mystery Sound
Just Three Strings
Go for Pro Anthem #1
Another Day of Being Sick
Songs About This Sickness
This Sick State
Mandatoy Transvaginal Ultrasounds
The Ballad of Bob Morris and His Sex Crazed Girl Scouts
Let’s Get Rick Santorum Laid
Be How You Are
Gone Before You Look
Angelina Jolie’s Leg
Leap Year Song
Facebook Timeline Song
Kittens in Space
Rush Limbaugh Death Star
Super Tuesday Song
Oh No!! New iPad!!
KONY2012 and AFRICOM Song
Let It In
Humpty Dumpty Wasn’t an Egg
How to Get What You Want
Clean Out the Closet
Pi Day Song
Bang on the Drum
Downstairs Bear
The Hunger Games
This Is Why I March
Kill Your Devices
Jon Gruber and Dan Benjamin
No More Bugga Bugga
Not Easy
Write Something Down
Nothing Is Faster Than Light for Now
Koozo
There Are No People in the Future
Put on a Hoody and Get Shot
Jibber Jabber
Turn Off the Lights
This Is My Life
Tornado Pouch
Oh, Time Racer
It’s Time for Bleeps and Bloops
All Kinds of Animals Looking in My Soul
Heaven Doesn’t Know
Kill Your Devices
One of These Days
Healthbox Accelerator Theme
Doing a Song Right Now
Shocked!!!
Your Day
Summertime Murder Man
It’s My 30th Birthday
Stuff to Do
It’s Just a Hotel
All My Mahjong Friends
Chugga Chugga Train Made Up on the Spot
I Am Made of What I’m Made Of
I Can’t Remember
Her Super Power
Why Do I Do What I Do?
Don’t You Know How Tired I Am?
A Doggy a Cat and a Fire Engine
Back Pain
Buggababoo
Just as Long as It’s Raining
Why Can’t We All Just Get Along?
Among the Angels
Oh, the End Is Coming
Clash of Kings
Froggy on the Bench Song
The Largest Rainbow
After You’re Dead
Foolish Human
This Is Why I March
Drink More Water
Springtime in Vienna
Super Quick Song
On the Fire Engine
Here Come the Bombs
Ba Doom Ba
Maurice
Temporally Multiplexed Storage of Images in a Gradient Echo Memory
The Infinity Game
Just Look Outside
I Am Diminished
Secret of Life
A Partial List of the Things I’m Not
Gatekeepers
The Great Gatsby
Mitt Romney’s Mirthless Laugh
Invisible Dog
John Gruber and Dan Benjamin
Only One Winner
Club Nook
Orange
Lily’s Eyes
Working on Another Song
Joy and Shutterbean
When I Do My Song
Crazy Thoughts
Weird Little Bug
Tomorrow I Be Movin’
3rd Floor Walk-Up Moving Song
Lay Here With You
The TSA at JFK Dropped My Ukulele
They’re Not Zombies, They’re People Who Eat People
Early Morning Sunday Song
Take the Reins Then Let Them Goe
SPBT Theme Song
Be Kind to Your Compliance People
Ya’ll Are Crazy About the iPad
Friendship Is Magic
I’ve Got an Idea
I’m Excited for the New Macs
220 PPI (WWDC 2012)
Raining in Delaware
Mortal Kombat
It Sucks That You Have to Die
The Vagina Song
I’m Not Writing a Song
Car Alarm
Hey, Jackhammer Dude
Every Song I Ever Wrote, Part 1
I Have a Podcast
It’s Work
Mel Gibson, Danny Glover
Because of the Heat
Nobody Can Keep Up With the Snake
Thunder Thunder
GSBSGDBD
Baby Turtle Eating a Raspberry
Healthcare (I’ll take What I Can Get)
Happiness Is a Forest Fire
The Longest Day
Jonathan’s 114th Dream
OH OH
Heartlocks
Jason Thrower
Put Your Helmet On
To Drive Me Crazy
Table Table Table
I Could Have Been a Wolf
Oh, Little Gecko
On the Moon
Rabbit in the Dark Blue Forest
Hope in the Ground
If I Were a Time Lord
I Fooled You
Mercury
What Good Is Being Human Doing Me?
Hot as Motherfucking Hell
Freedom in a Box
Minister of Piece
Misfortune
Smile More
No One Cares Except Those That Do Care
Signal
Phillipp Is Sorry
Giant Mutant Mosquitos
Chick Fil A
1400 Songs
Monster
Everybody Hates You When Wear Crocs
Darkness Crawls
Mangled Mess
Word Games
Heroes Suck
Duet With Siri, Part 2
Jet-Launching Structure Resolved Near the Supermassive Black Hole in M87
This Song Is Great, They Should Play It on the Radio
Nibbles and Coco
Bubby
Giant Purple Spider Peanut Butter Oreo
Silent Summer Snow
Monsters at the Olympics
Say Uggggh
Traveling
Meshuggnah
Open the Door
What Do You Say to the Girl
Fun Facts About Sex
The Universe’s Wheels
Time to Sleep
Photobomb Song
Excited Train Guy Autotune
I Don’t Understand Twitter
Know That I’m Not Alone
Animals Animals
Tomorrow’s Song
My Ultimate Ayn Rand Porn
Happy Birthday Bianca
I Keep Writing It Down
The First Man on the Moon
Shakespeare Insult Song
When the Wind Blows High
I Have a Stomach Flu
Your Monster’s Come to Life
What You’re Left With Is Me
Clint Eastwood Talking to a Chair
Rats in My Hair
Built for Speed
Wisdom of Being 30
I Hate Getting Up Early
Rage at Humidity
Crazy YouTube Statistics
The Wrong Frog
Since You’re Going That Way Anyway
I’ve Been Listening to a Lot of Marc Maron
Bear Hug the President
Emily and Silver Anniversary Song
Obligatory Song About the Iphone 5
I’m Trying to Learn After Effects
I Don’t Like Giving Up
A Love Song to Science
It’s Me in the Meadow
Little Bits Will All Fall Away
Mitt Romney Pays Less Taxes Than Me
Wild, Wild Willy
I’m Playing the Drums
This Is Not a Song
Funny Dance Time
Addicted
Sick Technical Problems
Duet With Siri, Part 2 (iPhone 5 Song)
Just Do My Best
Jet-Launching Structure Resolved Near the Supermassive Black Hole in M87
I Am a Nostalgic Fool
40 Floors
iOS Maps Song
Spreadsheet’s Almost Done
Mitt Romney Flip-Flop Autotune
Bury Me Beneath the Ocean
Romney Fires Big Bird
Mrs. Sedgwick
The Chorus Is Off
5:30 AM, Sunday Morning
Fly the ‘O’ Plane
Dan Do What You Love
Brooklyn Beta Whisper Don’t Yell at Farmer John
Brooklyn Beta Day Two Ted Nelson Is a Crazy Genius
More Than One Way to Eat That Kale
Somewhere in Between Good and Evil
Grey Matter
Simple
B Movie Breakdown Theme
Binders Full of Women
Spike Is the Brian Krakow of the Buffy Universe
Happy Birthday Dylan Thuras
Future Plans
Secret Bachelor Party
A Song I Pooped Out
Horses & Bayonets
Elves on the Other Side
Stolen Bike Tire
New Glasses
I’ve Pretty Much Lost My Voice
Hurricane Song One
There’s a Hard Drum Beat Rattling Round Our Skulls
Comfortably Smug
Open the Door
Lay Me Down Low
Squalor
Galapagos Art Space
Shake the Boom
Dying for Other Birds
V-V-V-Vote!
Karl Rove Goes Nuts
Medicine
Look Like That Sometimes
Nick and Catherine Are Getting Married
Through Thick and Straight Through
Very Small Town
All the Ice King Wants for Christmas
Ice King Ninja Party
Gunter the Bottle Breaking Penguin
Follow My Rules to Freedom
Masks of Different Colors
The Twinkie Kid and King Ding Dong Are Dead
I Am the Unicorn
Zombie Turkey (electro)
Magic Narwal’s Ancient Currency
Einstein Flying in a Monster Truck
Mr. Potato Head’s Farting Alarm Clock
The First Christmas (Marceline and the Ice King)
One of Those Short Song Days
Mark Twain, Jane Austen and the Zombie Apocalypse
I Transformed Into a Bear
Nice King Hanukkah Song
Bomb the Moon
Christmas Mermaid Whales
Cockroach on My Green Screen
Noura Birthday Song
Grab Your Yoda
Everything Is in Flux
Dan Amira
I’m Not a Spy
Look Into My Heart
Monkey in a Jacket in the IKEA Parking Lot
Sour
Creepy Santa Outside a Hair Salon
David Lee Beebe, Jr.
Cortisol Is Why I Feel Sad
Golem Made of Dirt
Tower of Lovers
Edgar Allan Poe
Kevin and Kylie 2.0
You and Me in the Singularity
Hypercritical
Brooklyn Book Club Merch Song
Moksi
Hey, You Found a Boat
One Small Step to Oh My God
Christmas Fog
Why’d I Get Everything I Wanted?!
It’s Time to Make a List
I Was Made to Carry Heavy Things
Like the Mayflower
Are You Sick of My Running?
Tired as Can Be on New Years Eve
I’m Scared of Being Lost
Released 2012
Hank Gets Married
EagleShark Raids the Robot Xombies
The Time Racer
Hank in Space
Hank Is Paranoid
Fans of Apple
You Can Do It, Nicole
The Red Panda Hop
The Beast Pageant
Steve Jobs Announces the iPad 2
All the Other Boys
Armadillidiidae
I Live in the Internet
Happy Birthday Lizzie Cuevas
I’m Sorry About the Noise
My Other Mind
My Cough Has Gotten Worse
I Was Only Kidding
A Warm Spring Day
Osama Bin Laden Is Dead
Today Is an Impossible Day
Concealed Pridewalk
Valve, Oh Valve (REDUX)
Road Trip!
Hot Tub in the Rain
This Song Is About Me
Small Dog
Coloring Outside the Hearts
The Interview
Three Day Reign (demo)
Johnny Tumbleton, King of the Elves
I Hate Being Alone
Zen Maru the Cat Song
June ’11 Outgoing Message Jam
Fortune Cookie Soap
Colony Collapse Disorder
Pep and Vigor
Happy 4th of July
Feast on the Glory of the Sun
Meng and Lolo Gary Wedding Song
Kitty Cat Fighting on the Outside
I’m So Disorganized
Weathering the Storm
How Do You Explain Fashion to an Alien?
Tower of Lovers
Jonathan’s Outgoing Message
Only One Direction
Hey Google! Stop Being a Jerk
Conversations on Sunday
Someone’s Got to Stick It to The Man
Take This Body
Video Games
Business
Little Pieces of Paper
Getting Friendly
Oh, SoundCloud
Bits of Skin and Bone Fragments
10000
Fact of Life
Everybody Hates Mitt Romney
OnlineForex.Net
If You Want to Move, You’re Going to Lose Your Balance
Crazy Scary Herman Cain
Occupy Oakland General Strike
You Can’t Make Me Write a Song
Pizza Is a Vegetable
Hard Work
Who’s That Jogging’ Down the Road
New Tex Tone
Get Your Domains Off of GoDaddy
Riley on Marketing (THE REMIX)
Everyone Deserves Love (Katy Perry and Russell Brand Divorce)
Put Everything Bad About Last Year Into a Bucket and Blow It Up
We Eat the Meat, Then Sell It on the Street
EagleShark Eats a Sandwich
Lucy the Lunch Lady Follows Hank
The Husafaria Nebula
Hank Goes for a Walk
Get Better, Steve Jobs
Macworld Rehearsal (Leave Me Mac Related Song Requests)
I Like Brunch
Tomorrow Comes Along
Wren the Polyamourous Bear (LIVE!)
Who the Hell Is Arcade Fire?
Rainy Day in Berkeley
String Theory
The Disease
CATAN!
ISS
I Stand
Heart for Rent
Who Are You?
Let Go
Boring Melody
Toad Is Pissed
The Shy Guy Theme
Lost and Alone
Vegan Myths Debunked
The Bombs That Are Falling Over There
Bone Marrow
The Kickstarter Song
A Birthday Song
When You’re Driving, Look Out
Fruit Bat Fred
Springtime Rain
No Rest for the Weary
The Tide
Prometheus
If I Had One
Hey Hey Ey Oh
Ledo and Ix
Maker Faire
Trinna and Martin Forever and More
Oh, Technology
Memorial Day
Song a Day Welcome Song (demo)
Wii U Song
Broken Brown Elderberry (demo)
Waves Come Crashing
Sweaty Girlfriend (demo)
Petaluma Leprechaun
You Can’t Stop Love
Running Out
Feed the Pilot to the Gods
Why LA?
Now You’ve Seen Me
I Never Promised
Fitting In.
Little Baby Hippo Dance
Once in a While
We’re All Kind of Screwed
Oh, Little Gecko
The Infinity Game
And Then We Crash
Dylan and Michelle
Nothing Saying That You Never Will
The Cat Says the Lid Stays Closed Song
Alyssa Bereznak
I’m Not Sure of Anything
You Look Like Pants
I Want to Be Lighter Than Air
Praying to a Non-Existent Cat
Solo Show Together
Before an Apple Event
Looking for a Place to Live in Brooklyn
Patternful Mind
I Am the Douche (Oh No!)
Men in Flight
Siri: Autotuned (Tribute to Steve Jobs)
Man Good Bad
Cross the State Line
Are You Sick of Songs From the Road
It’s Cool to Care
She’s Turned 3
It Is Cool to Care
The Day After Thanksgiving
The Future
Happy Christmas Kevin and Kylie
Chocolate Chip Cookie Dance (Vegan Recipe in Song)
When I Try to Be Funny
WTF Vegan Food!
When We Build a New Home on the Moon
Make It Through the Winter Solstice
Norad Santa Tracker Blues
How to Be a Jew
WTF?! I Wanted an iPhone
Made for Another Life
Go for Pro Anthem 2
I’m a Sad, Sad Hank
The Robot Xombie
Hank in Jail
Hank Digs a Hole
The Crunchies Song
The Mac vs. PC Conciliatory Song
The iPad 2
Michi’s Finger Dance
I Just Can’t Reach It
Snow Fort
Deep Thoughts With a Capybara
Hey, Defriender!
Blowing the Dust Out of the Cartridge That Is My Mind
Oh! It Doesn’t Matter
The Family Crest
Rustic Hymn
Haiku
Can’t Find a Reason
We’re All Just Monkeys
Mary Roach
Iggy Was a Friend of Mine
Alanisaurus Rex
We’re Going to WonderCon
Limbo
King Kong
Wall Street Wives
I Took My Wampa for a Walk
This Is How I Feel
Nothing About Nothing
I Didn’t Do It
Marble Madness
Underwater Judgmental Worm
Don’t You Know About the Rapture
Epic Fail Song
Bag of Bones
The Music Press
WWDC 2011: The Musical
They Double Dared Us
One of These Mornings
We’re Totally Wiped Out
The Only Way I Know How
Oh, Michael Jackson
Bites All Over
I’ll Always Choose Weird
Falls Away
The Vampire Kitty
In the Forest
I Didn’t Really
Literally Up a Tree
Bamboo Forest
Late Night Kind of Song
Just Be OK
Don’t Talk to Me Dude
By the Looks of It
Courtney and Sarah 4EVA
Schizoid Man
Oversized and Underwhelmed
What You Are
The End of Techcrunch
Three Other Boys
1001
They Booed a Gay Soldier
Riding My Bike Through Through Brooklyn
Where Has My October Mood Gone?
I Was a Teenaged Bandit!!!
Aivi Tran a
I Was a Bully Once
TEDMED 2011 Theme
Everyone’s Got a Place in the Universe
I’m Not
The Last Song I’ll Ever Write in This Apartment
On the Street in Tucson
I Just Need Some Sleep Right Now
This Is What a Police State Looks Like
Lt. John Pike Pepper Spraying Song
Empty Shelves, Part 1
Christmas Pudding
Don’t Give Up Just Yet
I Get Nostalgic for a New York That Never Existed
Corporations Are Not People
No Space in My Brain
Riot at the Mall
The Origin of Hank
Detective EagleShark
Help From Lucy the Lunch Lady
Hank Explores the Future
Nikki’s Lady Lumps (In New Zealand!)
A Brief History of Macworld (In Song)
Daring Fireball
The Apple Patent Song
Ostrich Song
Coffee Burnt Tongue
My Band
You Went to Bennington
And the Body Sings
Hatred and Indifference
Rodent to Rodent, Father to Son
Why Is Love Hard?
Go! With Zach Anner!
Umble
Down in a Hole
I’ve Got to Remember to Breathe
Charlie Sheen
Norman Rides His Scooter
My Stomach Hurts a Lot
Two Feet on the Ground and Your Head in the Storm
Jeanmarie Guenot and Her Quest to Kill SF Nightlife
They Carried Me Away
A Ladder Made of Rope
Who Will Remain (3rd)
Happy Birthday Erin Lyman
Diabetes Time Bomb
Portal 2
Fever on Plane
On My Way
Song a Day #861: My So Called Song
I’m Just Losing My Hair (Some More)
Dan Benjamin
Disobey Authority
On the Other Hand
Don’t Wear Hats While You Dance
Spicy Food
Are You a Real Person
I Dreamt I Was a Submarine
Mix Scalp Genius
A Mighty Find Price
Include Me
Happy Asexual Reproduction Day
I’m Just Telling a Lie
Winter Coat
What Am I Doing Wrong?
A Dance With Dragons
MoreOutgoingMessages
The Beach
Down and Out
Evil Twin Comes to Sing My Song
The Fat Cat Song
It Never Repeats
He’s Not Coming Back
Oh, Little Spider
Little Birdy
I’m Fasting for 10 Days
Trying to Write a Bad Song
I Keep Meaning to Tell You You’re Wrong
Bachmann and Perry Stuffing Their Faces
Obligatory Hurricane Song
To Say Hey
Live Just for the Mo’
Dog Farts
The Teeth of Winter
Hey Man, You Can’t Do That
Awesome Generic Birthday Song
Life Is Circular
Panda Rocking Chair Song
Up Out Over This Mess
Sookie, Oh Sookie
Gonna Unequip
The Universe’s Bodily Functions
Fact or Fiction Wishing Well
We Love You, Anthony Bologna
Weird Day
Driving in a Cab, Riding Through Brooklyn
Dan Harmon (Community Song)
A Duet With Siri (iPhone 4S Song)
DON’T CONSUME TOO MUCH CAFFEINE
In the Garden No One Can Tell When You’re Lyin
A Closed Mind
Joy (Play) And Prevention (The System)
Jim the Banjo
By Degrees
No Time to Write I’m Driving
In the Shower
Freedom to Care
SOPA and PIPA MUST DIE
There Are No Numbers Left
Pow Pow Pow Pow Pow Police State
Come Back to Us
Zombie Turkey (Metal version)
The Quiet in Your Heart
The Truth About Dairy Cows
Sometimes, Sunday
Going Around in Circles
A Partial List of the Things I’m Not
Gay Homophobe
Mother Nature’s Magic Marker
Moist Christmas
Between Two Worlds
Ding Dong Kim Jong (Il Is Dead)… Song
Piss Like a Racehorse
Cup
Released 2011
Happy New Year Everyone From the Mann Family Players
She's Taking Her First Steps
www.tsowf.tumblr.com
The Story of Wandering Fall, Act 2, Scene 3: Tiny Wings
The Story of Wandering Fall, Act 2, Scene 4: Little Masters of Time
The Story of Wandering Fall, Act 2, Scene 5: Mostly Water With Free Will
The Story of Wandering Fall, Act 3, Scene 1: Hey, Hey I'm Over Here
The Story of Wandering Fall, Act 3, Scene 3: We Are Friends
The Story of Wandering Fall, Act 3, Scene 4: On Cows
The Story of Wandering Fall, Act 3, Scene 5: Wandering Together
The Story of Wandering Fall, Act 4, Scene 1: Something, Nothing
The Story of Wandering Fall, Act 4, Scene 2: An Explosion
The Story of Wandering Fall, Act 4, Scene 3: Solar Wind
The Story of Wandering Fall, Act 4, Scene 4: Together Edge of the Universe
The Story of Wandering Fall, Act 4, Scene 5: Trouble Approaching
Doo Wop Ro Bot
My Friend Johnny Boyd Is on the Show 24
She Loves Me
Rubber Deamons: Heathly Angels
Sore Throat
Minstrel
Who Will Remain (acoustic)
Tater Tots and Avacado Shakes
Valentines Day With Groupon
Happy Birthday Sam Douglass
Coyote Hearing
A Man From the Future and the Original Louisiana Hot Sauce
Let's Get Bloody
Stratego
iPage.com
It's Just One of Those Days
CO-OP Theme Song (acoustic)
Someday
Ah Ah OOO Ah OOO
Animal Mind
Reuse! Compost! Recycle! The Song
Sore Throat
Got My Red Robe On
Waiting for God to Call
Please Stop
Happy Birthday Sanae! Again
On Valentines Day
Snakes Are, Aren't Scary
I Wanna Know Everyone
Giving It All That I Have Got
SocialBuy.com
This Much I Know
Can't Fly
iPad
Fuck You, Day
The Robin Hood Tax
Ringtone for Eóin Fay
Double Take
Don't/Just Give It Away
The Wonders of the Mighty Powerstrip
Lonesome Valley
How Is the World Different? Because of You
The Big Thaw With Groupon
Those Gaming Guys
Ben and Jerry's
Juice an Onion
Barnowl
ISM
In the Rain
Train
Recollect
BCCthis
Well, Well, Well
I Was a Dancing Bear
The Legend of Jonathan
Dancing in the Round
Robot Ninja Zombie Bear
Florida Animal Safari Happy Fun Danger Whoa!
Singing in the Wind
Airport Song #2
Kate Mginity Birthday Song
The Way You Are
Aflac
Don't Get Angry
Zach and Cloe
Sleepy Mustache Man
In the Land of Chatroulette (The Definitive Chatroulette Song)
Front and Center
The USA.gov Song
How to Stop the Nuclear Menace (In Song)
Epic, Defined
I'll Be Your April Fool
Hey You!
An Update!
Time Hangs on My Body Like an Ill Fitting Suit
Having a Penguin Communist Party
The Jason Workout Song!
Double Life / Half Life
Compostable Bags Make Me Want to Dance
It's My Birthday, I'll Dance Naked If I Wanna
Going Camping at the Hotsprings Yeah
Sleeping for Your Freedom
Good Looking People Who Care About the Environment
The Standing Cat Song
Time to Panic
Mothers Day With Groupon
Happy Birthday Jane Cowger!
No (Yes)
The Smog Gets Thicker (redux)
Faithfully
I Will Break Your Heart
The Casting Duo
The Ending of the World
Donna Jesse Erin and Sam
Roger Ebert Is A (Brilliant) Grumpy Old Man
Say So
Go 'Way From Here
The Writing Camp Anthem
Pandora's Box Is Open
Feelings Are a Means of Production
Zeaxanthin and Lutein
Koko the Intersex Horse
Randy's House
Here We Are
Two Steps to the Left Texas Style
The Sad Little Porn Cassette
Trying to Make Today Matter in the Same Way as Tomorrow
Cedar Properties
Cherrish
Sleepy Isaac on His 1st Birthday
On the Wind
Do Your Best
I Want to Be Healthy With Life… Supplemented
Rulemaking Matters: The Song!
The Metroming Jingle
NYVS: The Jingle
500 (Five Hundred)
Five Hundred and One
Fire in the Sky
The Club Hopper vs. Dr. Boigenstein
10 Billion
Fallen Heroes
Farthead
skinit.com
The Body Sings
The End Is Coming
On My Street
Save Yourself
Impossible
Outerspace
Apple or Orange
Vitamin D
Father's Day With Groupon
I Didn't Like It (And That's Why I Didn't Put a Ring on It)
Remember When I Said That I Wanted an iPad
Shortcake
Sunday Evening
Tuppy Figueroa
This Is Today's Song
The iPhone 4 Antenna Song
Steve Jobs
We're Jews That Don't Care About Money
Jew Wario at E3
The Mermaid of Tim
I Love Bocce Ball
Honda Civic: It'll Get You There
One Minute Autobiography in Song
Wrong Way
A Boy From Rural Kentucky and His Fire Breathing Cat
I Want to Boogie With You
I Like It When My Friends Eat the Things I Bake
Mr. Everyman Pirate Packs a Ca
Simply Dissonant
Destruction
Jonathan's New Ringtone
Steve Jobs' Head
I Wanna Be a Gastropod Mollusc
And He Kissed Her
Shake Weight Jingle
Tap-N-Give
Let's All Take a Trip
Bones Come to Life
You Are Defined by the People Around You
Gonna Go Downtown Tonight
Me and Ram Dass in a Virtual Photo Booth
The Feeling God
When Natasha Comes to Town
Feel the Weight
Ceiling Fan
Nowhere I Ought to Be
You Love Me the Same Way
Someday I'm Gonna Be Cool Like That
The Red Dead Redemption Song
When the Sun Goes Down
Who You Gonna Be Today?
The Little Man
The Feeling God (redux)
Hello My Old Heart
I Wanna Be Friends With Stephen Fry
I Got a Root Canal
I Wish That There Were More Thunder Storms
Turkeys in the Woods
Purple Smoothie, Purple Shirt
How I Write a Song a Day
Polly Is a Lovely Whale
Short Song, Long Song
Until the Vulcans Call
Put Me Back Together and I Make No Sense
Happy Birthday, Tokie
Until the Fire Came
5000 Subscribers
Bill Cosby Is Not Dead
The Sun Erupted Two Times Today
Stay for Free
Shanon Cook
Changes With Regard to What a Man Can/Cannot Do
No Rain!
The Bird That Invented the Blues
Carpet
The Ballad of Steven Slater
That's Just the Woz
Working on the Little Things
Ivory Birthday Song Two Thousand Ten
The Tea Party
In Your Dreams
The Death of Overdraft Fees (A Celebration, a Warning)
Nature's Express
A Song About the Porcupine Who Thinks He's a Dog
The Pocket God Update Song
Technology UGH!
There's a Shark in the Pond
Are You Excited by What Will Be?
The Panda Dance
Songatron.com
Is on the Roof Again
And Yet It Moves
Cooking (To Be Continued…)
Eating, Building, Sleeping, Party
Pakistan Flood Relief ($16.36)
SEO Quotient
The Tech Silicon Valley Innovation Gallery
On the Road to PAX
'Twas the Night Before PAX
The Duke Nukem Forever Song
The Giantesses' Wish
Deer in the Woods I Love You
I'm Going to the Dentist Again
The Strange Case of the Hello Farm
Let's Burn the Koran! (The Song)
Facebook Memories
The Ballad of Terry Jones and His Incendiary Bigoted Buffoonery
The End of the World Dance
The Google Instant Song
The Faerie Chorus
Tell Me Why
When It Rains It Pours
Autotune the Bronado
Steve Jobs Is a Secret Ninja!
Oprah Autotuned
Bristol Palin Dancing
YouTube Pre-Roll Ads
Humanity Stands
Cosmoceratops
Lady Gaga DADT Speech Autotuned
The Ballad of Teresa Lewis
The Hippo and the Crocodile
Close Your Eyes
Back to Where I Started From
Congratulations TechCrunch
The Canfield Song
Bennington College, I Love You
There's No Way This Song Will Be Good
Morning, Noon or Night?
Ninja Steve
There's Always (NEVER) Someone Better
As If in a Dream
What a Do Little Day
We Did Not See the Sunset
Sex
The Australian Today Show!
Angry Berkeley Housewife in a Jaguar
I've Got an Idea
A Dream State From Which Ye Never Shall Return
The Thing Is the Thing
Secret Cat
I Don't Wanna Be Anyone but Me
Happy 25th Birthday, NES
The Rent Is Too Damn High
Coco Taco Party Song
What a Glorious Place to Dwell
If Dogs Have Feelings
Richard Saul Wurman Birthday Song
Bury Me Beneath the Ocean (redux)
An Open Letter to the Bacteria Living in My Body
I Don't Feel Well
I'm at TEDMED
In This Crowd
666!
I'm More Sick
Sick as a Dog
It's Halloween, Let's Fall in Love
Rally to Restore Sanity: Singing the Signs
I Don't Like the TSA
Animals Are Weird
It Could Have Been Neville
The History of Video Games (In Song)
The Pink Handfish
The History of Mario 2 (In Song)
The Fun Facts Song, Part 2
Vote
Jeff Cannata's Loving Stuff Song
I'll Be Seeing You (redux)
The Ballad of Johannes Mehserle and Oscar Grant
18,000 Cool Jokes
Daylight Savings (redux)
Robin's Treehouse
Craigslist TV
This Song and Video Are Essentially About Not Having Enough Time
Too Long, Didn't Read
Ninjas, Database Security and YOU
People Only Love You If You've Got White Teeth
Nowhere I Ought to Be (redux)
The Schnibl Song!
I Don't Like the TSA
Zombie Turkey (redux) and COLLAB?!
CERN Created and Held Anti-Matter
Willow Palin Facebook Debate
Crimes
Bill the T. Rex
Stop Hunting the Unicorns, You Bastard
I Am Just Air Now
Thanksgiving With Monsters
Paul, the Photographer Fish
Cthulhu and Zeus Sitting in a Tree
Cut the Rope Song
Masterpiece
Animals Are Weird
Dancing in the Musical of Life
It Sucks to Be a Squib
NEW LIFE NEW LIFE
The Continuing Adventures of Steve the Hippo
The Rabbit in the Dark Blue Forest
Orbiting Your Earth Like a Satellite
The Life of a Red Plastic Cup
The Guy Who Paints the Lines on the Road
It Could Have Been Neville
On 7Live
The History of Video Games (In Song)
The Pink Handfish
Nature Is Dangerous and Beautiful
The History of Mario 2 (In Song)
Judas Will Never Repent
My Room Is Filled With Stuff
World of Goo
The Fun Facts Song, Part 2
The Golden Bowling Years
A Brief History of Teen Idols
E-Shopping.com
After a Long Day of Writing Songs…
Christmas Is for Losers
Treasure Map
Christmas Pudding
Doggy Playing on a School Bus
No One Knows the Origins of Boxing Day
I'll Do It Tomorrow
The Bald Porcupine
The Hemaphobe Vamp
Carl Does Windows
What My Self Reflection Froze
Released 2010
In the Time of the Gods
Hands (Oh No!)
Who Do You Think You Are?
Elegy for Industry
The Airport Song
It Must Be the Weather
EGM, 1up, Goodbye
Boy for Boy's Sake
The Deutsch Positivity Anthem
3 Rules of the Internet
Song a Day Anthem
Everyone's a Little Bit Queer
What Does It Mean to Love a Machine?
I'm Drunk Because the Economy Sucks
Get Well, Steve Jobs
Riding the Subway
I'm So Tired of Capitalism
The Marks Sisters
Snow Day
Stars in Our Eyes
Stay Out of My Body
Obama Makes Me Smile
Barack Obama
Hello, Hello
Love Me a Little Bit More
Speaking Electricity
Up on the Mountain Top
The Fox and the Hen
You Know Yourself
Dark Days
The Day That Google Crashed the Internet
Go to Sleep
I Love Battlestar
(Just Sing) A Happy Song
Come Down Where You Ought to Be
Scarlett Thomas
Water
Little Pink Boombox
Changing the Color of My Walls
The Ballad of Stimulus Jones
Wolf of the Battlefield
42
Sanae's Birthday Song
Rock and Roll Cats
The Rain Returned
The Legend of Zelda: Overworld
Lifeforce
Mummy's on Campus
Get Up Off of Your Ass (And Just Do Something)
One of the Lucky Ones
Your Mother Doesn't Love You Anymore (An Extrasolar Anthem)
Zombie Ponies
Geriatrics in Drag
Let's All Go to the Lobby (Fuck That)
Bigfacesmallface
CO-OP Theme
My Friends and I Are Dinosaurs
Marilyn Langois
Shamus and Precious
Our House
Knock Knock
I'm the Same as I Ever Was
Teddy Bear Revolution
The Spyders
Tetris: A History in Song
NIGHT
Zombie Rights, Zombie Dance
A Ringtone for Ivory
Oh, It's Probably Time
Can We Kick It With Kikkoman (Of Course We Can!)
And They Call It Natural
Penguins Having a Party
Nano Nano Nightmare
The Number Nine!
Don't Give Up, Chrissy
Hey, Paul Krugman
Copying Isn't Theft
Saving Newspapers
Spring Equinox
Out My Front Door
Come On, Nouriel
A Long Time Coming (EFCA)
My Obama Nuerosis
1600 Pennsylvania Ave.
Fun a Day Anthem
You're Doing It Right, Jon Stewart
I Am Just a Little Post-It Note
Soren's Song
Jerry Springer
The Close
Ringtone for Mike Trash
Ivory Is in the Caribbean (And I Miss Her)
Tumblr
The Ten Plagues
Pieces
My Baritone Uke and I
1 Week, 5 Days
Ringtone for Shelly
When I Was Born
When the Lighthouse Went Dark
1 Week, 5 Days
Zombie Banks
Ringtone for Casey
Oreo Love
Ringtone for Jackie
It's Like Trying to Fill a Styrofoam Cup With a Hole in the Bottom
Keyboard Shortcuts
Ringtone for Michaela
Torture Memos: Waterboarding
I Am Israel, I Am Palestine
Cannabis Criminalization: A Short History in Song
Wren the Polyamorous Polar Bear and His Story of Redemtion
Fire Engine Red
Spintown
Lindsay McCove
Steve, the Hippo With Multiple Personalities
Ringtone for Liam and Keane's Dad!
Swine Flu: The Musical
Lost in the Tubes! A PSA in Song
The Continuing Adventures of Bulldog and the Dude
To: Sarah and Mike From: Meredith and Adam Re: Sorry About Your Bikes
Happy Birthday Shaista
We Are Pattern Machines
Hey, Miss California
You Deserve a Bank Like This
Birthday Song for Mimi Hughes
Don't Give in to Madness
The Pitch
Roll My Kroalnos Home
Flying to Vienna, Part 1
Flying to Vienna, Part 2
Gamedeals Theme
Springtime in Vienna
Why Do Potatoes Argue?
If You're Gonna Do It (Do It Yourself)
Old Man Sleeping by the Side of the Road
There's a Hole in His Hat
Who Will Remain
The Botanical Gardens of the Univeristy of Vienna
Frodo Uses the Hobbit ATM
A Sleepy German Train Ride
What Are They Gonna Do?
The CCC Anthem
Tarsiers Are My Friends
Meditation on Friends in the Key of G
Floating Orb in Flame
Goodbye Vodka, Voddy
The Smog Gets Thicker
Terror at Arkham (Arkham Horror: A True Story)
Gladiator Meow
A Letter to the Killer of George Tiller
Bandcamp.com Anthem
Half Drunk Mugs of Tea
Saved by the Bell Again
Don't Throw My Shoe at Me
This Here Is a Subscribe Drive
Whiskey the Cat (And Other Songs)
Living My Life
Beautiful Way to Live
I Wanna Go Where the Wild Things Are
Freakonomics
Isaac Newton Was a Total Badass
Joy and Freedom
We've Been Cooking All Day
I Will Follow You
Matthias Jamison-Koenig
Keep Rocking, Iran
I Quit!
Vegetables
The Day Kangaroos Didn't Hop
What You Think It Is
We Don't Change
There's So Much to Know
The Rose of Hillside
You Stole My Money
Happy Birthday, Adrian
I Used to Worship Michael Jackson
The King Has a Bottom
Words Stuck
Down, Down, Down
Take Medium Steps
We'll All Be Fools
Steve Rouse Song
The Book of the New Sun
I've Been Trying to Sneeze for 24 Hours
Palin's Resignation Speech in Song
If Your Love Is on Fire
Colors and Light
Hunchback With a Dirty Mind
Time for Summer Now
Mint Magician
I'm From Vermont
Myspace Is a Ghost Town
When Harry Met Ginny
Do the Monster Dance
Running Through the Internet
Baby, It All Led to You (An Evolutionary Love Song)
The Little Prince
200 Songs
Pictures of Plenty
Bing Goes the Internet
I Am a Crazy Piccachu
Bike Love
Commondreams.org
Look at That Deer, Licking That Cat
The Robots Don't Love You Anymore
Ocean
The Kind of Song You'd Hear in a 90s Noir B-Movie
Two Chords
Games and Sounds
Gone Like the Dodo
Time Capsule
Nic Kaelin
Live With Cha Cha Is in Sonic Technicolor
Let Your Ears Decide
Wash Your Hands!
I Am MG Siegler
The Big Picture With David Shuster
That Dastardly Villian, MG
I Wrote the Worst Jingle in the World
Do It, Screw It
Skydiving Through Groupon.com
Courseopedia.com
Bamboo Solutions
Man Did What Some Birds Could Never Do
Fox News Is Bad for the Country
Infolinks
The King of Monkeys, Gnomes and Nacho Cheese
What Are You So Angry About?
Please Vote for Me
Tiki the Puppy
Funny Hat
Pop Music
Happy Anniversary the Cat Has Kidney Failure
I Am Just a Shadow
Lucky
Epuls.pl Anthem
GPS With Bob Dylan
I Don't Want to Compete
TIRED
Goodbye Jewfro, Hello Cleanface
This Is How We Do It at Bennington
I Got a New Guitar
No Judgements
Cisco Telepresence Anthem
No Judgements V2
Sometimes It's Hard to Keep Yourself Moving
Heart Overflowing
Bicycle Blvd
At the Harley Davidson Museum
Truth in Advertising
I've Got Another Cold
Still Sick
I'm a Bit Better
We Built a Fort
I'm Jonathan
First There Was No Chair
Mirror Revolt
Simian Space Flight
Link Mann
The Android Who Didn't Have a Penis
You Can Do It, Sam
The Sex Machine That Couldn't Love
The Robot That Lived on the Moon and Wished It Were Human
Quantum Decoupling Transition in a One-Dimensional Feschbach Resonant Super Fluid
In Heaven
The 3 Rules of the Internet (reprise)
Scary Any Like Creature
Death in Every Instant
Scary Hill
Throw a Cob of Corn Into the Sun-Popcorn
Big Wall Graphics From Ltlprints.com
Vulcan Smile
How to Defeat the Energy Vampire: The Song
Downstairs Bear
Ardipithecus Ramidus
Hard Drive It Home
You and Me and the Singularity
Sex in Space
Nasa Bombed the Moon
Pants in the Middle
Hey Mr. Bike Theif
The LARP Song
Hey, It's October
Hey, Little Insect and Spider
Nextivafax.com
Somebody Needs Your Help
Frack the Dow Jones
Kickstarter.com
Just a Little More Tired
Treasure Island
Happy Birthday, Kelly Porter
Psoriasis Cure Now Walk
It's This Rain
Lashes to Riches
Beer Pong
Who Needs Sleep
I'm a Bird, You're a Bird, Let's Get It On
Jesus Said
NoSweatApparel.com
I Never Promised
Airplane to Tomorrow
Creature of Habit
Keith Valley Middle School
I'm Tired Halloween Weirdness
To Lon Harris Who Called Me Creepy
Cloud Computing for Beginners
I Am Just a Messanger
Spell or Prayer
It May Feel Like Everythings the Same
The Large Hadron Collider Still Doesn't Work
Show Me Your Dorito Face
I Am All Alone
Cry, Oh Cry, Boo-Hoo So Sad
Winning Feels Good, Losing Feels Bad
20 Minutes With the President
Mr. Barry Screwskull, Number Six Hundred and Twelve
The Beating of a Single Heart
Song a Day, Saturday
Sunday Evening Sad, Slow Song
A Wonderful Pistcachio Discovery
The Story of Wandering Fall, Act 1: Introdruction
Wandering the Universe
At the Edge of the Universe
And With a Name…
I Am Alone
Contact
The Story of Wandering Fall, Act 1: Recap
Cold Feet
Get Your Hand Out of the Hunny Pot
Zombie Turkey
Dancing Fin
The Best Day of My Life, Part 2
The Best Day of My Life, Part 2
It's Good to Be Home
Coors Ad, Collaborationz
Seeing Clearly
Black Holes
Time to Save With VMware
Don't Want to Write My Song Today, Just Want to Play New Super Mario Bros. Wii
Soldier
Gun
Jesus Christ at Christmas Time
Upon Seeing the Twitpic Conversation Between Demi Moore and Ashton Kutcher
AMC Technology
Pirates Life
A Snickers Noir
A Humble Plea for Database Security
So Obvious
If You Piled Up Everything I Didn't Know Would It Be as Big as the Universe? Oh.
Joseph Isadore… Palpatine?
All My Mutant Homies (Say What!)
I'll Be Seeing You
Daylight Savings
Puking My Guts
Food Poisoning
I Must Be Going Crazy
Happy Christmas Adam From Melissa
The Story of Wandering Fall, Act 2, Scene 1: Blue Blue Oval
The Story of Wandering Fall, Act 2, Scene 2: Monsters Rising
Soldier on Blindly
The Wrong Foot
Time, Time, Time
I'm Losing My Hair
Me, I Write a Song a Day
The Story of Wandering Fall, Act 3, Scene 2: Fall in Suburbia
How to Stop the Nuclear Menace (In Song)
Hey You!
Cherrish
Everything Is Digital
A Short Song About Nothing in Particular
Let's Get Along
');
} else {
var query = elem.find('.keywords').html();
$.ajax({
context: elem,
url: 'https://wn.com/api/upge/cheetah-search-adv/video',
cache: true,
data: {
'query': query
},
dataType: 'jsonp',
success: function(text) {
if (text.length > 0) {
video_id = text[0].id;
elem.find('.player').html('
VIDEO
');
}
}
});
}
}
var stopAllYouTubeVideos = function() {
var iframes = document.querySelectorAll('iframe');
Array.prototype.forEach.call(iframes, function(iframe) {
iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*');
});
}
jQuery(function() {
jQuery(".playVideo").live("click", function() {
if(!$(this).hasClass("played")){
stopAllYouTubeVideos();
var elem = $(this);
setTimeout(function(){
mouseOverMe(elem);
}, 1000);
}
});
jQuery(".description_box .expandContent").live("click", function() {
elem = $(this).parent().parent().parent().find('.descContent');
if(elem.height() > 51) {
elem.css('height', '44px');
$(this).html('Show More
');
}else{
elem.css('height', 'auto');
$(this).html('Hide
');
}
});
jQuery('.interview-play-off').click(function() {
$(".interview-play-off").hide();
$(".interview-play").show();
$(".videoplayer-control-pause").click();
});
jQuery(".video-desc .show_author_videos").live("click", function() {
query = $(this).attr('title');
container = $(this).parent().parent().parent().find('.video-author-thumbs');
$(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px');
jQuery.ajax({
url: '/api/upge/cheetah-photo-search/videoresults',
data: {'query': query},
success: function(text) {
if(!text) { text = i18n("No results"); }
container.html(jQuery(text));
}
});
});
});
// -->
Latest News for: jonathan mann award
Edit
Daily Freeman
28 Mar 2023
— Two-time Grammy-award-winning singer-songwriter Aimee Mann , with special guest Jonathan Coulton, will perform Saturday, June 24, at 8 p.m ... Mann’s successful solo career, spanning several ...
Loading...');
var query = jQuery('.radio_query').val();
jQuery.ajax({
data: { query: query },
url: '/api/upge/cheetah-photo-search/radio',
success: function(text) {
jQuery('.radio-search-results').html(jQuery(text));
updateHeight();
$('#RadioSearchTable').tablesorter();
$('#RadioSearchTable').trigger("update");
}
});
return false; // do not submit the form
});
$(".search-tools-btn").click(function () {
header = $(this);
content = $(".search-tools-content");
if(content.is(':visible')) {
content.hide('slow');
header.html('Tools ');
}else{
content.show('slow');
header.html('Hide ');
}
});
});