'+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

Jonathan Mann is the name of:

  • Jonathan Mann (WHO official) (1947–1998), former head of the World Health Organization's global AIDS program, who is also the namesake of the WHO Jonathan Mann Award
  • Jonathan Mann (journalist) (born 1960), journalist for CNN
  • Jonathan Mann (musician) (born 1982), musician and YouTube personality
  • See also

  • John Mann (disambiguation)
  • Jonathan Mann (journalist)

    Jonathan Mann (born July 16, 1960) is a Canadian journalist working for CNN International and La Presse. He anchors both the weekend editions of International Desk. He hosts Political Mann on cnn '. Every December, Mann hosts The Prize for Peace, a discussion with the Nobel Peace Prize winner, live from Oslo, Norway.

    Mann was born in Montreal, Canada, to Adina and Harry Mann. His mother was a travel agent and his father a general practitioner and amateur actor. Early in his career, he worked as a freelance journalist in India covering the aftermath of the assassination of Indira Gandhi in 1984. He captured Canadian and international headlines when, defying a ban imposed on foreigners in the state of Punjab, he was arrested and placed in police custody in the city of Amritsar. Upon receiving the news, his parents travelled to Ottawa to lobby Canada's federal government to intervene on his behalf. The incident received widespread media coverage and was even debated during question period in the House of Commons. Thanks largely to a concerted diplomatic effort by the Canadian government, Mann was released one week later. The attention drawn to Mann during the affair is credited with helping launch his successful journalistic career, leading to work with the CBC Radio, NBC Radio, and later CNN, where he became the 24-hour news network's first Paris correspondent. As a Montreal native, he speaks fluent French. He received his primary school education at the Jewish People's School, where he also learned Hebrew and Yiddish. Mann received a bachelor's degree in philosophy from York University in Toronto.

    Jonathan Mann (musician)

    Jonathan Mann (born April 9, 1982) is an American singer-songwriter, best known for creating and publishing a new song and video each day since January 2009, under the YouTube channel "Song A Day." Because of his vast quantity of material and speed of composition, his songs often reference immediate current events and popular trends of the very day the video was uploaded. His biting satire and musical versatility have been referenced by Steve Jobs, Paul Krugman, Rachel Maddow and Steve Wozniak, among many others.

    Career

    Mann started composing at the age of 12, before enrolling at Bennington College. While pursuing his graduate studies at CalArts, he co-wrote and starred in a rock opera called “The Last Nympho Leprechaun” with colleague Thomas Hughes. In grad school, he wrote and starred in a rock opera based on the Super Mario Brothers. Since then, he has recorded music and self-released albums under the names Forty (or 40) Second Songs, The Nympho Leprechauns, Novox the Robot, GameJew, The Mario Opera, as well as simply Jonathan Mann.

    Jonathan Mann (WHO official)

    Jonathan Max Mann (July 30, 1947 – September 2, 1998) was an American physician who was an administrator for the World Health Organization.

    Education

    Mann was president of the National Honor Society in the Newton South High School class of 1965. He earned his B.A. from Harvard College, his M.D. from Washington University in St. Louis (1974), and the degree of M.P.H. from the Harvard School of Public Health in 1980.

    Career

    Mann joined the Centers for Disease Control in 1975, staying there until 1977. He then became the State Epidemiologist for New Mexico, until 1984.

    Mann moved to Zaire in March 1984 as a founder of Project SIDA, an effort to study AIDS in Africa, after being recruited by fellow epidemiologist Joseph B. McCormick.

    Mann founded the WHO's Global Programme for AIDS in 1986. In March 1990, Mann resigned this post to protest the lack of response from the United Nations with regard to AIDS, and the actions of the then WHO director-general Hiroshi Nakajima.

    Podcasts:

    Jonathan Mann

    ALBUMS

    Song a Day: Year Five

    Released 2014

    Song a Day: Year Four

    Released 2013

    Song a Day: Year Three

    Released 2012

    Song a Day: Year Two

    Released 2011

    Song a Day: Year One

    Released 2010
    • Sour (Song A Day #1440)

      Sour Song A Day #1440 D Bm control tab to the place that you want to go A control that slips away the harder you hold it's ok G it's just splattered blood It's just a matter of time freaking out and seeking out a place to hide I'm creaky bones and flesh that sticks to my sides it's ok it's just a cold wind it's just a hot girl D Em I can't be your only one G On the telepho A You're calling Left out in the sun too long I'm shriveled up And sour Go ahead and swing that bat like you really mean it Come on ring that bell when I've been defeated Ding ding Another KO Another spectacle Another rock show Break down all the rules that you've counted on Hate on how they break and you're left with new ones It's just life It's just a broken heart It's just an opener F#7 Thi...

      published: 11 Dec 2012
    • Song A Day #659: What A Glorious Space To Dwell (Fun Facts Song)

      Donate to Song A Day: http://patreon.com/jonathanmann DOWNLOAD THIS SONG: http://www.jonathanmannmusic.com/track/what-a-glorious-place-to-dwell I stumbled on to a really wonderful thread on Reddit.com about the most mind blowing facts people could think of. I collected a bunch of them and made this song! Lyrics: There are more atoms in a single glass of water than glasses of water in the oceans of the Earth A blue whales heart is the size of a VW Beetle and you could swim through its arteries An adult human has two to nine pounds of bacteria in his or her body Cleopatra lived closer in time to the first moon landing than to the building of the Great Pyramid 54 million people alive right now will be dead within 12 months. fold over a piece of paper 42 times and it will reach the m...

      published: 22 Oct 2010
    • "Iron Within, Iron Without" (Warhammer 40K fan song)

      Spotify: https://open.spotify.com/artist/6tZxznfIh2EqEhrk3HQ9gl Apple Music: https://music.apple.com/us/artist/jonathan-mann/1770570753 Patreon: https://www.patreon.com/fatcatjt I write all of my own songs, but use AI for singing and instrumental. I don't own the art.

      published: 03 Oct 2024
    • Song A Day #972: The Cat Says The Lid Stays Closed Song

      Download this and other songs: http://www.jonathanmannmusic.com/track/the-cat-says-the-lid-stays-closed-song Follow me on twitter: http://www.twitter.com/songadaymann Follow me on facebook: http://www.facebook.com/songadaymannwhen you may think that i'm just a normal cat with normal cat like powers you may think that lie in the sun and while away the hours but i am queen of this domain and you have better obey my rule i may chase after little red lights but i am nobody's fool so the lid stays closed oh, the lid stays closed you may think that you own this joint that only shows how little you noes when i was young i was an idiot i didn't know how to get my way now i'm older and take what i want no matter what you say and there are certain things around this house that i simply just ca...

      published: 29 Aug 2011
    • Song A Day #579: Bill Cosby Died? No. Bill Cosby Is Not Dead (the song)

      This goes out to Twitter. Download: http://jonathanmann.bandcamp.com/track/bill-cosby-is-not-dead bill cosby's not dead well it might say so on twitter but you know it just makes me bitter because cosby is one of the greats kids nowadays don't know i grew up watching his show go watch some clips of him on youtube he'll just about blow your mind now i love me some richard pryor but cosby's more my style being funny without uttering a swear yeah he's clean and he loves his family he shows you what a man can be though he shilled for jello and kodak we won't hold that against him no

      published: 03 Aug 2010
    • Toxic Poop Sludge (instrumental)

      My new album I USED TO LOVE MY BODY is out NOW and available for download or streaming: http://jonathanmann.net/body A stomach bug has been making it's way through my family and yesterday and today has been my turn. Hi there! If you're new around these parts, welcome. I'm Jonathan Mann. I write a song every single day, and I've been doing that for the last 10+ years. Through sick days, tired days, days with no inspiration, the death of my grandma, the breakup of a 5 year long relationship, the marriage to my wife and the birth of our son - I've never missed a day. This is my life's work.

      published: 21 Mar 2019
    • Song A Day #974: Alyssa Bereznak Song (OK Cupid/Gizmodo Magic Hater Woman)

      Download this and other songs: http://jonathanmann.bandcamp.com/track/alyssa-bereznak Read the post that inspired this song: http://gizmodo.com/5833787/my-brief-okcupid-affair-with-a-world-champion-magic-the-gathering-player Follow me on twitter: http://www.twitter.com/songadaymann Follow me on facebook: http://www.facebook.com/songadaymannwhen LYRICS: was she trolling for hits on her blog post did she write it looking for a fight? it seems odd to call someone out for being nerdy when you write for such a nerdy website and then there's the issue of manners why'd you have to put him down that way? either you're really mean or smart or clueless but you shouldn't say nothing if you got nothing nice to say alyssa bererznak it was a personal attack on a world cham...

      published: 01 Sep 2011
    • Tower of Lovers (Song A Day #1445)

      Tower of Lovers Song A Day #1445 E i'm like you and you're like me and it goes on like that for infinity A until you're not like me anymore it could be the weather and it could be the moon it could be a waitress that makes her swoon but it's not like it was before and you wait under the covers for some great tower of lovers to topple down but they say only the lonely know just how this dog and pony show ends my best guess is a cloudy haze and i'm little boy lost with heart ablaze burning everything i touch and it wouldn't matter, wouldn't mean a thing* like caged canary that was trained to sing but i love you so much and in your world of bubbles you're popping all of your troubles with friends friends but no one is closer you glide on through a ghost or a cat meow no one no...

      published: 16 Dec 2012
    • From A Wallet That I Control | Song A Day #5217

      You can own each day's song as an NFT by visiting: http://songaday.world Mistakes, mistakes were made From a wallet I control Silly games, silly games were played From a system I uphold This wallet has been filled With eth that it now holds This project has been shilled By a twitter that I control This toilet has been pooped By an anus that I govern The milk is sour oops It was left out and uncovered This happened in a home The deed for which I own And I am here alone In a body that I possess Join the Song A Dao Discord: https://enter.songaday.world/ Patreon (not Patreon): http://ampled.com/artist/jonathanmann Website: http://jonathanmann.net Spotify: http://bit.ly/SADspotify Bandcamp: http://jonathanmann.bandcamp.com Instagram: http://instagram.com/jonathanmann Twitter: http://twitt...

      published: 14 Apr 2023
    • Death, Death, Death | redux | Song A Day #1886

      Donate to Song A Day: http://patreon.com/jonathanmann Death, Death, Death Song A Day #1512 G# Death, death, death C# G# Is dancing around here Fm He's got a big top hat C# D# And a great big furry beard G# You're not afraid of him C# G# cause you are the same weird D# Death, death, death C# G# Is dancing around here Life, life, life Is short and long to you From the teepee in the china foothills To flatbush avenue from Morty, my grandpa to your lovers lars and gru Life, life, life Is short and long to you D# C# You may not always be remembered Fm D# But you will never be replaced D# C# These are lines from a poem G# You wrote I sit here studying your features The lines upon your face Hearing the labored breathing In your throat A# C# I want my lover to...

      published: 02 Mar 2014
    Sour (Song A Day #1440)
    2:27

    Sour (Song A Day #1440)

    • Order:
    • Duration: 2:27
    • Uploaded Date: 11 Dec 2012
    • views: 2910
    Sour Song A Day #1440 D Bm control tab to the place that you want to go A control that slips away the harder you hold it's ok G it's just splattered blood It's just a matter of time freaking out and seeking out a place to hide I'm creaky bones and flesh that sticks to my sides it's ok it's just a cold wind it's just a hot girl D Em I can't be your only one G On the telepho A You're calling Left out in the sun too long I'm shriveled up And sour Go ahead and swing that bat like you really mean it Come on ring that bell when I've been defeated Ding ding Another KO Another spectacle Another rock show Break down all the rules that you've counted on Hate on how they break and you're left with new ones It's just life It's just a broken heart It's just an opener F#7 This highway that you've severed Bm Means no commuters ever G Get to work on time A F#7 Or get home to their families I'll take the subway from now on I'll ride my bike and I'll fall off And when I hit my head I'll be somebody new FOLLOW me on Twitter: http://twitter.com/songadaymann LISTEN to my podcast: http://www.alwaysmaking.us LIKE http://www.facebook.com/songadaymann RATE http://rate.jonathanmann.net/ DOWNLOAD http://jonathanmann.bandcamp.com/album/song-a-day-the-album CALL (510) 402-6081 Other Places To Connect With Me: FOLLOW me on SoundCloud: http://soundcloud.com/jonathanmann FOLLOW me on Instagram: My username is jonathanmann BE on my mailing list: http://tinyletter.com/jonathanmann SUBSCRIBE to me on Facebook: http://www.facebook.com/Jonathanmann DO what they do on Google+: http://bit.ly/mannplus LOOK at my blog: http://blog.jonathanmann.net/ PLAY with my App! http://bit.ly/mannapp
    https://wn.com/Sour_(Song_A_Day_1440)
    Song A Day #659: What A Glorious Space To Dwell (Fun Facts Song)
    3:04

    Song A Day #659: What A Glorious Space To Dwell (Fun Facts Song)

    • Order:
    • Duration: 3:04
    • Uploaded Date: 22 Oct 2010
    • views: 268339
    Donate to Song A Day: http://patreon.com/jonathanmann DOWNLOAD THIS SONG: http://www.jonathanmannmusic.com/track/what-a-glorious-place-to-dwell I stumbled on to a really wonderful thread on Reddit.com about the most mind blowing facts people could think of. I collected a bunch of them and made this song! Lyrics: There are more atoms in a single glass of water than glasses of water in the oceans of the Earth A blue whales heart is the size of a VW Beetle and you could swim through its arteries An adult human has two to nine pounds of bacteria in his or her body Cleopatra lived closer in time to the first moon landing than to the building of the Great Pyramid 54 million people alive right now will be dead within 12 months. fold over a piece of paper 42 times and it will reach the moon what a mad, mad world what a wonderfully nutty universe what a glorious space to dwell what a blessing and what a curse Hydrogen is a light, odorless gas, which, given enough time thinks about itself. The chances are high that 120 years from now, I will not be thought of daily. Just another person who lived on Earth. You see your nose at all times, your brain just chooses to ignore it. Optimus Prime and Eeyore were the same guy. Same with Megatron and Scooby Do Duck Hunt is two player A controller in port 2 controls the ducks. Blue whale is more closely related to a cow, than a cow is to a horse. what a mad, mad world what a wonderfully nutty universe what a glorious space to dwell what a blessing and what a curse The age of the observable universe is 13.7 billion years, but it's a sphere with a radius of 46.5 billion lightyears. Each ejaculation has more sperm than there are people in the united states. One in 5000 babies are born without an anus It's called Imperforate Anus. Our concept of "reality" exists solely in our brain.
    https://wn.com/Song_A_Day_659_What_A_Glorious_Space_To_Dwell_(Fun_Facts_Song)
    "Iron Within, Iron Without" (Warhammer 40K fan song)
    2:54

    "Iron Within, Iron Without" (Warhammer 40K fan song)

    • Order:
    • Duration: 2:54
    • Uploaded Date: 03 Oct 2024
    • views: 1758
    Spotify: https://open.spotify.com/artist/6tZxznfIh2EqEhrk3HQ9gl Apple Music: https://music.apple.com/us/artist/jonathan-mann/1770570753 Patreon: https://www.patreon.com/fatcatjt I write all of my own songs, but use AI for singing and instrumental. I don't own the art.
    https://wn.com/Iron_Within,_Iron_Without_(Warhammer_40K_Fan_Song)
    Song A Day #972: The Cat Says The Lid Stays Closed Song
    1:17

    Song A Day #972: The Cat Says The Lid Stays Closed Song

    • Order:
    • Duration: 1:17
    • Uploaded Date: 29 Aug 2011
    • views: 33030
    Download this and other songs: http://www.jonathanmannmusic.com/track/the-cat-says-the-lid-stays-closed-song Follow me on twitter: http://www.twitter.com/songadaymann Follow me on facebook: http://www.facebook.com/songadaymannwhen you may think that i'm just a normal cat with normal cat like powers you may think that lie in the sun and while away the hours but i am queen of this domain and you have better obey my rule i may chase after little red lights but i am nobody's fool so the lid stays closed oh, the lid stays closed you may think that you own this joint that only shows how little you noes when i was young i was an idiot i didn't know how to get my way now i'm older and take what i want no matter what you say and there are certain things around this house that i simply just can't stand an open lid is one of them you stupid, silly man
    https://wn.com/Song_A_Day_972_The_Cat_Says_The_Lid_Stays_Closed_Song
    Song A Day #579: Bill Cosby Died? No. Bill Cosby Is Not Dead (the song)
    3:08

    Song A Day #579: Bill Cosby Died? No. Bill Cosby Is Not Dead (the song)

    • Order:
    • Duration: 3:08
    • Uploaded Date: 03 Aug 2010
    • views: 4330
    This goes out to Twitter. Download: http://jonathanmann.bandcamp.com/track/bill-cosby-is-not-dead bill cosby's not dead well it might say so on twitter but you know it just makes me bitter because cosby is one of the greats kids nowadays don't know i grew up watching his show go watch some clips of him on youtube he'll just about blow your mind now i love me some richard pryor but cosby's more my style being funny without uttering a swear yeah he's clean and he loves his family he shows you what a man can be though he shilled for jello and kodak we won't hold that against him no
    https://wn.com/Song_A_Day_579_Bill_Cosby_Died_No._Bill_Cosby_Is_Not_Dead_(The_Song)
    Toxic Poop Sludge (instrumental)
    2:03

    Toxic Poop Sludge (instrumental)

    • Order:
    • Duration: 2:03
    • Uploaded Date: 21 Mar 2019
    • views: 287
    My new album I USED TO LOVE MY BODY is out NOW and available for download or streaming: http://jonathanmann.net/body A stomach bug has been making it's way through my family and yesterday and today has been my turn. Hi there! If you're new around these parts, welcome. I'm Jonathan Mann. I write a song every single day, and I've been doing that for the last 10+ years. Through sick days, tired days, days with no inspiration, the death of my grandma, the breakup of a 5 year long relationship, the marriage to my wife and the birth of our son - I've never missed a day. This is my life's work.
    https://wn.com/Toxic_Poop_Sludge_(Instrumental)
    Song A Day #974: Alyssa Bereznak Song (OK Cupid/Gizmodo Magic Hater Woman)
    2:20

    Song A Day #974: Alyssa Bereznak Song (OK Cupid/Gizmodo Magic Hater Woman)

    • Order:
    • Duration: 2:20
    • Uploaded Date: 01 Sep 2011
    • views: 4223
    Download this and other songs: http://jonathanmann.bandcamp.com/track/alyssa-bereznak Read the post that inspired this song: http://gizmodo.com/5833787/my-brief-okcupid-affair-with-a-world-champion-magic-the-gathering-player Follow me on twitter: http://www.twitter.com/songadaymann Follow me on facebook: http://www.facebook.com/songadaymannwhen LYRICS: was she trolling for hits on her blog post did she write it looking for a fight? it seems odd to call someone out for being nerdy when you write for such a nerdy website and then there's the issue of manners why'd you have to put him down that way? either you're really mean or smart or clueless but you shouldn't say nothing if you got nothing nice to say alyssa bererznak it was a personal attack on a world champion what have you ever done? i'd like to now quote your twitter: "dude's i don't think it's bad to be a dweeb i just don't want to date someone i can't relate to" well, what if he was the champion of something else? what if he was a championship swimmer or the world champion chef it's good to like stuff and to be good at things but you just put him down instead so you don't want to date someone you can't relate to that i can understand but that's not what you wrote, what you wrote was the tearing down of a man maybe you weren't attracted to him physically and all that that's a valid reason but don't point to someone's passion and say i don't like you because of that
    https://wn.com/Song_A_Day_974_Alyssa_Bereznak_Song_(Ok_Cupid_Gizmodo_Magic_Hater_Woman)
    Tower of Lovers (Song A Day #1445)
    4:25

    Tower of Lovers (Song A Day #1445)

    • Order:
    • Duration: 4:25
    • Uploaded Date: 16 Dec 2012
    • views: 7203
    Tower of Lovers Song A Day #1445 E i'm like you and you're like me and it goes on like that for infinity A until you're not like me anymore it could be the weather and it could be the moon it could be a waitress that makes her swoon but it's not like it was before and you wait under the covers for some great tower of lovers to topple down but they say only the lonely know just how this dog and pony show ends my best guess is a cloudy haze and i'm little boy lost with heart ablaze burning everything i touch and it wouldn't matter, wouldn't mean a thing* like caged canary that was trained to sing but i love you so much and in your world of bubbles you're popping all of your troubles with friends friends but no one is closer you glide on through a ghost or a cat meow no one no one no one no one knows how to dress me up in the finest clothes and take me for a stroll i get up then i sit down i walk by trees and grass dead brown a heart as black as coal FOLLOW me on Twitter: http://twitter.com/songadaymann LISTEN to my podcast: http://www.alwaysmaking.us LIKE http://www.facebook.com/songadaymann RATE http://rate.jonathanmann.net/ DOWNLOAD http://jonathanmann.bandcamp.com/album/song-a-day-the-album CALL (510) 402-6081 Other Places To Connect With Me: FOLLOW me on SoundCloud: http://soundcloud.com/jonathanmann FOLLOW me on Instagram: My username is jonathanmann BE on my mailing list: http://tinyletter.com/jonathanmann SUBSCRIBE to me on Facebook: http://www.facebook.com/Jonathanmann DO what they do on Google+: http://bit.ly/mannplus LOOK at my blog: http://blog.jonathanmann.net/ PLAY with my App! http://bit.ly/mannapp
    https://wn.com/Tower_Of_Lovers_(Song_A_Day_1445)
    From A  Wallet That I Control | Song A Day #5217
    1:36

    From A Wallet That I Control | Song A Day #5217

    • Order:
    • Duration: 1:36
    • Uploaded Date: 14 Apr 2023
    • views: 151
    You can own each day's song as an NFT by visiting: http://songaday.world Mistakes, mistakes were made From a wallet I control Silly games, silly games were played From a system I uphold This wallet has been filled With eth that it now holds This project has been shilled By a twitter that I control This toilet has been pooped By an anus that I govern The milk is sour oops It was left out and uncovered This happened in a home The deed for which I own And I am here alone In a body that I possess Join the Song A Dao Discord: https://enter.songaday.world/ Patreon (not Patreon): http://ampled.com/artist/jonathanmann Website: http://jonathanmann.net Spotify: http://bit.ly/SADspotify Bandcamp: http://jonathanmann.bandcamp.com Instagram: http://instagram.com/jonathanmann Twitter: http://twitter.com/songadaymann Speaking: http://jonathanmann.net/conf Commission me: http://jonathanmann.net/personal Theme songs: http://jonathanmann.net/themes
    https://wn.com/From_A_Wallet_That_I_Control_|_Song_A_Day_5217
    Death, Death, Death | redux | Song A Day #1886
    5:24

    Death, Death, Death | redux | Song A Day #1886

    • Order:
    • Duration: 5:24
    • Uploaded Date: 02 Mar 2014
    • views: 1110
    Donate to Song A Day: http://patreon.com/jonathanmann Death, Death, Death Song A Day #1512 G# Death, death, death C# G# Is dancing around here Fm He's got a big top hat C# D# And a great big furry beard G# You're not afraid of him C# G# cause you are the same weird D# Death, death, death C# G# Is dancing around here Life, life, life Is short and long to you From the teepee in the china foothills To flatbush avenue from Morty, my grandpa to your lovers lars and gru Life, life, life Is short and long to you D# C# You may not always be remembered Fm D# But you will never be replaced D# C# These are lines from a poem G# You wrote I sit here studying your features The lines upon your face Hearing the labored breathing In your throat A# C# I want my lover to meet you A# C# I want my kids to know you A# C# And Morty will surely greet you A# C# And throw his arms around you Cm And you will watch me grow C# D# From wherever you go, go, go, go, go, go Death, death, death Is dancing around here Dancing the way you used to With no callousness or fear The path is like the dancing It's spontaneous and clear Death, death, death Is dancing around here buy music: http://archive.hellomann.com follow: http://twitter.com/songadaymann like: http://facebook.com/songadaymann look: http://instagram.com/jonathanmann TUMMMMMBLR: http://jonathanmann.tumblr.com/ email: jonathan (at) jonathanmann.net call: (510) 402-6081 http://jonathanmann.net
    https://wn.com/Death,_Death,_Death_|_Redux_|_Song_A_Day_1886
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Sour (Song A Day #1440)
      2:27
      Sour (Song A Day #1440)remove from playlist
    • Song A Day #659: What A Glorious Space To Dwell (Fun Facts Song)
      3:04
      Song A Day #659: What A Glorious Space To Dwell (Fun Facts Song)remove from playlist
    • 2:54
      "Iron Within, Iron Without" (Warhammer 40K fan song)remove from playlist
    • Song A Day #972: The Cat Says The Lid Stays Closed Song
      1:17
      Song A Day #972: The Cat Says The Lid Stays Closed Songremove from playlist
    • Song A Day #579: Bill Cosby Died? No. Bill Cosby Is Not Dead (the song)
      3:08
      Song A Day #579: Bill Cosby Died? No. Bill Cosby Is Not Dead (the song)remove from playlist
    • Toxic Poop Sludge (instrumental)
      2:03
      Toxic Poop Sludge (instrumental)remove from playlist
    • Song A Day #974: Alyssa Bereznak Song (OK Cupid/Gizmodo Magic Hater Woman)
      2:20
      Song A Day #974: Alyssa Bereznak Song (OK Cupid/Gizmodo Magic Hater Woman)remove from playlist
    • Tower of Lovers (Song A Day #1445)
      4:25
      Tower of Lovers (Song A Day #1445)remove from playlist
    • From A  Wallet That I Control | Song A Day #5217
      1:36
      From A Wallet That I Control | Song A Day #5217remove from playlist
    • Death, Death, Death | redux | Song A Day #1886
      5:24
      Death, Death, Death | redux | Song A Day #1886remove from playlist
    PLAYLIST TIME:

    Sour (Song A Day #1440)

    Sour Song A Day #1440 D Bm control tab to the place that you want to go A control that slips away the harder you hold it's ok G it's just splattered blood It's just a matter of time freaking out and seeking out a place to hide I'm creaky bones and flesh that sticks to my sides it's ok it's just a cold wind it's just a hot girl D Em I can't be your only one G On the telepho A You're calling Left out in the sun too long I'm shriveled up And sour Go ahead and swing that bat like you really mean it Come on ring that bell when I've been defeated Ding ding Another KO Another spectacle Another rock show Break down all the rules that you've counted on Hate on how they break and you're left with new ones It's just life It's just a broken heart It's just an opener F#7 This highway that you've severed Bm Means no commuters ever G Get to work on time A F#7 Or get home to their families I'll take the subway from now on I'll ride my bike and I'll fall off And when I hit my head I'll be somebody new FOLLOW me on Twitter: http://twitter.com/songadaymann LISTEN to my podcast: http://www.alwaysmaking.us LIKE http://www.facebook.com/songadaymann RATE http://rate.jonathanmann.net/ DOWNLOAD http://jonathanmann.bandcamp.com/album/song-a-day-the-album CALL (510) 402-6081 Other Places To Connect With Me: FOLLOW me on SoundCloud: http://soundcloud.com/jonathanmann FOLLOW me on Instagram: My username is jonathanmann BE on my mailing list: http://tinyletter.com/jonathanmann SUBSCRIBE to me on Facebook: http://www.facebook.com/Jonathanmann DO what they do on Google+: http://bit.ly/mannplus LOOK at my blog: http://blog.jonathanmann.net/ PLAY with my App! http://bit.ly/mannapp
    2:27
    Sour (Song A Day #1440)
    Sour Song A Day #1440 D Bm control tab to the place that you want to go A con...
    published: 11 Dec 2012
    Play in Full Screen
    3:04
    Song A Day #659: What A Glorious Space To Dwell (Fun Facts Song)
    Donate to Song A Day: http://patreon.com/jonathanmann DOWNLOAD THIS SONG: http://www.jona...
    published: 22 Oct 2010
    Play in Full Screen
    2:54
    "Iron Within, Iron Without" (Warhammer 40K fan song)
    Spotify: https://open.spotify.com/artist/6tZxznfIh2EqEhrk3HQ9gl Apple Music: https://music...
    published: 03 Oct 2024
    Play in Full Screen
    1:17
    Song A Day #972: The Cat Says The Lid Stays Closed Song
    Download this and other songs: http://www.jonathanmannmusic.com/track/the-cat-says-the-lid...
    published: 29 Aug 2011
    Play in Full Screen
    3:08
    Song A Day #579: Bill Cosby Died? No. Bill Cosby Is Not Dead (the song)
    This goes out to Twitter. Download: http://jonathanmann.bandcamp.com/track/bill-cosby-is-...
    published: 03 Aug 2010
    Play in Full Screen
    2:03
    Toxic Poop Sludge (instrumental)
    My new album I USED TO LOVE MY BODY is out NOW and available for download or streaming: ht...
    published: 21 Mar 2019
    Play in Full Screen
    2:20
    Song A Day #974: Alyssa Bereznak Song (OK Cupid/Gizmodo Magic Hater Woman)
    Download this and other songs: http://jonathanmann.bandcamp.com/track/alyssa-bereznak ...
    published: 01 Sep 2011
    Play in Full Screen
    4:25
    Tower of Lovers (Song A Day #1445)
    Tower of Lovers Song A Day #1445 E i'm like you and you're like me and it goes on lik...
    published: 16 Dec 2012
    Play in Full Screen
    1:36
    From A Wallet That I Control | Song A Day #5217
    You can own each day's song as an NFT by visiting: http://songaday.world Mistakes, mistak...
    published: 14 Apr 2023
    Play in Full Screen
    5:24
    Death, Death, Death | redux | Song A Day #1886
    Donate to Song A Day: http://patreon.com/jonathanmann Death, Death, Death Song A Day #151...
    published: 02 Mar 2014
    Play in Full Screen

    Jonathan Mann

    Jonathan Mann is the name of:

  • Jonathan Mann (WHO official) (1947–1998), former head of the World Health Organization's global AIDS program, who is also the namesake of the WHO Jonathan Mann Award
  • Jonathan Mann (journalist) (born 1960), journalist for CNN
  • Jonathan Mann (musician) (born 1982), musician and YouTube personality
  • See also

  • John Mann (disambiguation)
  • '); } 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(''); } } }); } } 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)); } }); }); }); // -->
    ×