'+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
    • Simple Jonathan Blues | Song A Day #3938

      What does it matter what you say to the dark As long as you don’t give away who you are How can one city smell so f ing bad If its not the rotting animal carcasses It’s the landfill full of trash I been a beggar about as long as I can know Nothing has ever come close to filling up that hole Today was a yellow one but tomorrow could be blue Don’t look at me honey, it all depends on you My new album I USED TO LOVE MY BODY is out NOW and available for download or streaming: http://jonathanmann.net/body 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 marri...

      published: 13 Oct 2019
    • Simple (Song A Day #1383)

      At two conferences over the last two weeks, I saw two different presentations about this bank, Simple.com. They seem totally awesome. Check out their website. I HATE BANKS and I feel so guilty about having my money in Chase. Screw Chase! I wanna use Simple! Yay! Simple (Song A Day #1383) I hate banks They are greedy and evil They got us into this mess And I feel bad With my money in a bank That was bailed out like the rest Too big to fail It's wrong so let's Get our money out right quick There's another way That I heard about And I think it'll do the trick Simple, Simple They'll treat you as a human Simple, Simple They wanna help you with what your doing So well designed They never profit from fees Your data is there So you can budget with ease Simple does All the things right That ha...

      published: 15 Oct 2012
    • Pull That Thread | Song A Day #5086

      You can own each day's song as an NFT by visiting: http://songaday.world She’s out across her skis again She’s turning all the heads in her polo fleece But she won’t look at me It feels like there’s a magic word To unlock all my confidence but it’s lost Somewhere in my memory And she’s that I’ve ever wanted All other options exhausted When our history is plotted They’ll mark this time in red Arcs of electric spinning To her friend whispered grinning An old sweater cold and thinning If I could pull the thread She’s famous among all the birch Shaking leaves and making waves in the snow She doesn’t know my name I put out all the milk and cookies I thought it would be easy But she never came She likes her cocoa hotter than A hot tub in the dead of wintertime Shoulders in the snow Sp...

      published: 04 Dec 2022
    • Florence And The Dancing Ducks | Song A Day #4474

      I write a song a day! Join the Song A Day Discord: https://discord.gg/ZqwATkEm This fluffy tail won’t wiggle or wag Drifting on the wind like a plastic bag This fluffy tail won’t dance for you But if you ask nice there’s so much we could do Come to the front Of the castle if you want To sing under the sun If you want This fluffy tail don’t belong at sea I dream of red skies when I sleep This fluffy tail demands a place And if you ask nice we can catch waves 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...

      published: 01 Apr 2021
    • Apple Watch: The Musical ♫ | Song A Day #2078

      Donating = Loving: http://patreon.com/jonathanmann Download this song: https://jonathanmann.bandcamp.com/track/watch-event-the-musical Hire me: http://songsincorporated.com Dickbutt photo at end by: @afwaller Need a song? Email me: jonathan@jonathanmann.net 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/ call: (510) 402-6081 http://jonathanmann.net As we all sat waiting for the big show to begin We saw shots of the crowd and heard two songs playin' Then there was a bunch of live stream trouble It was cutting in and out We saw some bars and tone from the TV truck And all of Twitter began to shout But then on comes Phil Schil...

      published: 10 Sep 2014
    • Cheese Sandwich | Song A Day #4054

      Ever wanted to be a fly on the wall to hear me write my song from start to finish? Listen to my podcast! It's called As It Happens: Song A Day. http://podcast.jonathanmann.net There’s lots of roundabouts in Keene It’s all white right now not green I think I’m gonna go to sleep But first I’ll get my dad a cheese Sandwich I don’t want to see Trump on the TV I just wanna knock doors for Bernie I don’t care if it rains snow or sleet But first I’ll go and get my dad a cheese Sandwich  I write a song a day! Spotify: http://bit.ly/SADspotify Bandcamp: http://jonathanmann.bandcamp.com Instagram: http://instagram.com/jonathanmann Twitter: http://twitter.com/songadaymann Website: jonathanmann.net

      published: 07 Feb 2020
    • The Deer Licks The Cat | From The Album "Animals" | Jonathan Mann

      Download the album: http://animals.cool Anni Rossi sang this song: http://www.annirossi.com/ This is the original video that inspired this song: https://www.youtube.com/watch?v=JpMwAHmnbS8 The story I tell in the song is true! Both the deer and the cat live at Arnold's Wildlife Refuge (http://arnoldswildlife.org/). Here's what they wrote to me: "The little deer's mom was killed by a car. The deer was just too small to care for itself and was brought to the center to be raised. The cat has lived there a long time. I think it was just dropped off there one day. It's name is BAC, Bad Ass Cat." Other videos; Hoppy The Deer: https://www.youtube.com/watch?v=qh8gnIluUp4 Another: https://www.youtube.com/watch?v=eF5J5Kjt6oY Another: https://www.youtube.com/watch?v=KkcHTiEn7K4 WHY DO DEER...

      published: 20 May 2014
    • We Fix Space Junk | Song A Day #4252

      I write a song a day! Patreon: http://patreon.com/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

      published: 22 Aug 2020
    • B-U-I-D-L Song by Jonathan Mann (Devcon4)

      Visit the https://archive.devcon.org/ to gain access to the entire library of Devcon talks with the ease of filtering, playlists, personalized suggestions, decentralized access on IPFS and more. https://archive.devcon.org/archive/watch/4/b-u-i-d-l-song Jonathan Mann's famous B-U-I-D-L song! Speaker(s): Jonathan Mann Skill level: Beginner Track: Devcon Keywords: build, songs Follow us: https://twitter.com/efdevcon, https://twitter.com/ethereum Learn more about devcon: https://www.devcon.org/ Learn more about ethereum: https://ethereum.org/ Devcon is the Ethereum conference for developers, researchers, thinkers, and makers. Devcon 4 was held in Prague, Czech Republic on Oct 30 - Nov 2, 2018. Devcon is organized and presented by the Ethereum Foundation, with the support of our sponsors....

      published: 11 Dec 2018
    • Go Easy On Yourself (Song A Day #1502)

      Go Easy On Yourself Song A Day #1502 D G F# Go easy, go easy on yourself D A Bm Go easy, go easy on yourself, yourself D A Life can pile on you Bm G And the truth will truth will out D A D So go easy, go easy on yourself D Beatin' yourself up A Bm Beatin' yourself up G It's a comfortable way to live D A Some people blame other people Bm You blame yourself G And then you don't have to give F# You don't have to look in anybody's eyes Bm And say hey you hurt me, hey you hurt me F# All you do is look straight, straight inside and say G A Well I guess this is my fault Go easy, go easy on yourself Go easy, go easy on yourself, yourself Life might pile on you But the truth will always out So go easy, go easy on yourself You might be You might be avoiding And that's ...

      published: 11 Feb 2013
    Simple Jonathan Blues | Song A Day #3938
    3:53

    Simple Jonathan Blues | Song A Day #3938

    • Order:
    • Duration: 3:53
    • Uploaded Date: 13 Oct 2019
    • views: 117
    What does it matter what you say to the dark As long as you don’t give away who you are How can one city smell so f ing bad If its not the rotting animal carcasses It’s the landfill full of trash I been a beggar about as long as I can know Nothing has ever come close to filling up that hole Today was a yellow one but tomorrow could be blue Don’t look at me honey, it all depends on you My new album I USED TO LOVE MY BODY is out NOW and available for download or streaming: http://jonathanmann.net/body 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/Simple_Jonathan_Blues_|_Song_A_Day_3938
    Simple (Song A Day #1383)
    1:38

    Simple (Song A Day #1383)

    • Order:
    • Duration: 1:38
    • Uploaded Date: 15 Oct 2012
    • views: 1445
    At two conferences over the last two weeks, I saw two different presentations about this bank, Simple.com. They seem totally awesome. Check out their website. I HATE BANKS and I feel so guilty about having my money in Chase. Screw Chase! I wanna use Simple! Yay! Simple (Song A Day #1383) I hate banks They are greedy and evil They got us into this mess And I feel bad With my money in a bank That was bailed out like the rest Too big to fail It's wrong so let's Get our money out right quick There's another way That I heard about And I think it'll do the trick Simple, Simple They'll treat you as a human Simple, Simple They wanna help you with what your doing So well designed They never profit from fees Your data is there So you can budget with ease Simple does All the things right That have been done wrong for so long That you kinda thought That was just how it was But with Simple the crap is all gone You call them up And talk to a person Who is full of warmth and excite-ment0* * No overdraft fees Or hidden fees low balance fees They just want to do it right Simple so Simple Designed well right from the start Simple so Simple A way to bank with your heart 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/Simple_(Song_A_Day_1383)
    Pull That Thread | Song A Day #5086
    2:59

    Pull That Thread | Song A Day #5086

    • Order:
    • Duration: 2:59
    • Uploaded Date: 04 Dec 2022
    • views: 156
    You can own each day's song as an NFT by visiting: http://songaday.world She’s out across her skis again She’s turning all the heads in her polo fleece But she won’t look at me It feels like there’s a magic word To unlock all my confidence but it’s lost Somewhere in my memory And she’s that I’ve ever wanted All other options exhausted When our history is plotted They’ll mark this time in red Arcs of electric spinning To her friend whispered grinning An old sweater cold and thinning If I could pull the thread She’s famous among all the birch Shaking leaves and making waves in the snow She doesn’t know my name I put out all the milk and cookies I thought it would be easy But she never came She likes her cocoa hotter than A hot tub in the dead of wintertime Shoulders in the snow Spin the bottle double dare I’m naked in the snow and all my skin Knows just where it want to go 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/Pull_That_Thread_|_Song_A_Day_5086
    Florence And The Dancing Ducks | Song A Day #4474
    1:49

    Florence And The Dancing Ducks | Song A Day #4474

    • Order:
    • Duration: 1:49
    • Uploaded Date: 01 Apr 2021
    • views: 237
    I write a song a day! Join the Song A Day Discord: https://discord.gg/ZqwATkEm This fluffy tail won’t wiggle or wag Drifting on the wind like a plastic bag This fluffy tail won’t dance for you But if you ask nice there’s so much we could do Come to the front Of the castle if you want To sing under the sun If you want This fluffy tail don’t belong at sea I dream of red skies when I sleep This fluffy tail demands a place And if you ask nice we can catch waves 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/Florence_And_The_Dancing_Ducks_|_Song_A_Day_4474
    Apple Watch: The Musical ♫ | Song A Day #2078
    3:14

    Apple Watch: The Musical ♫ | Song A Day #2078

    • Order:
    • Duration: 3:14
    • Uploaded Date: 10 Sep 2014
    • views: 77965
    Donating = Loving: http://patreon.com/jonathanmann Download this song: https://jonathanmann.bandcamp.com/track/watch-event-the-musical Hire me: http://songsincorporated.com Dickbutt photo at end by: @afwaller Need a song? Email me: jonathan@jonathanmann.net 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/ call: (510) 402-6081 http://jonathanmann.net As we all sat waiting for the big show to begin We saw shots of the crowd and heard two songs playin' Then there was a bunch of live stream trouble It was cutting in and out We saw some bars and tone from the TV truck And all of Twitter began to shout But then on comes Phil Schiller Almost lost my paitence Bigger iPhones, so much bigger But there's a Chinese translation In the background IN THE BACKGROUND Anyway These phones are packed with pixels So many pixels Over a million pixels This guy's got a really warm neck You can use this phone one handed Something called Focus Pixels And you can make calls over wifi Phil says we all need to run more stairs And he's an expert in butterflies Everyone knows that it's so hard To remove your credit cards From your wallet, it really hurts Eddie Cues got you covered with his pink shirt With the secure element The secure element And then we heard the three words The wondrous magically words It was weird to hear them from Tim Cook's mouth All my higher brain functions are dropping away Images flash and Jony Ive narrates I am pavlov's dog coming on command Tim Cook raises up his hands It's the Apple watch and I can't help my self I want one so bad I'm about to pass out What's the interface, how you get around Oh yeah simple it's a digital crown It's the digital crown Linear Acuator Taptic Engine Horological experts Track the solar system is Kevin Lynch gonna sing Love Shack or wild thing? We all glampsed Jeff And his heartbeat Penises Everyone will Draw Penises On the Apple Watch
    https://wn.com/Apple_Watch_The_Musical_♫_|_Song_A_Day_2078
    Cheese Sandwich | Song A Day #4054
    2:52

    Cheese Sandwich | Song A Day #4054

    • Order:
    • Duration: 2:52
    • Uploaded Date: 07 Feb 2020
    • views: 376
    Ever wanted to be a fly on the wall to hear me write my song from start to finish? Listen to my podcast! It's called As It Happens: Song A Day. http://podcast.jonathanmann.net There’s lots of roundabouts in Keene It’s all white right now not green I think I’m gonna go to sleep But first I’ll get my dad a cheese Sandwich I don’t want to see Trump on the TV I just wanna knock doors for Bernie I don’t care if it rains snow or sleet But first I’ll go and get my dad a cheese Sandwich  I write a song a day! Spotify: http://bit.ly/SADspotify Bandcamp: http://jonathanmann.bandcamp.com Instagram: http://instagram.com/jonathanmann Twitter: http://twitter.com/songadaymann Website: jonathanmann.net
    https://wn.com/Cheese_Sandwich_|_Song_A_Day_4054
    The Deer Licks The Cat | From The Album "Animals" | Jonathan Mann
    3:15

    The Deer Licks The Cat | From The Album "Animals" | Jonathan Mann

    • Order:
    • Duration: 3:15
    • Uploaded Date: 20 May 2014
    • views: 3004
    Download the album: http://animals.cool Anni Rossi sang this song: http://www.annirossi.com/ This is the original video that inspired this song: https://www.youtube.com/watch?v=JpMwAHmnbS8 The story I tell in the song is true! Both the deer and the cat live at Arnold's Wildlife Refuge (http://arnoldswildlife.org/). Here's what they wrote to me: "The little deer's mom was killed by a car. The deer was just too small to care for itself and was brought to the center to be raised. The cat has lived there a long time. I think it was just dropped off there one day. It's name is BAC, Bad Ass Cat." Other videos; Hoppy The Deer: https://www.youtube.com/watch?v=qh8gnIluUp4 Another: https://www.youtube.com/watch?v=eF5J5Kjt6oY Another: https://www.youtube.com/watch?v=KkcHTiEn7K4 WHY DO DEER LICK CATS?!
    https://wn.com/The_Deer_Licks_The_Cat_|_From_The_Album_Animals_|_Jonathan_Mann
    We Fix Space Junk | Song A Day #4252
    1:50

    We Fix Space Junk | Song A Day #4252

    • Order:
    • Duration: 1:50
    • Uploaded Date: 22 Aug 2020
    • views: 613
    I write a song a day! Patreon: http://patreon.com/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/We_Fix_Space_Junk_|_Song_A_Day_4252
    B-U-I-D-L Song by Jonathan Mann (Devcon4)
    7:23

    B-U-I-D-L Song by Jonathan Mann (Devcon4)

    • Order:
    • Duration: 7:23
    • Uploaded Date: 11 Dec 2018
    • views: 399
    Visit the https://archive.devcon.org/ to gain access to the entire library of Devcon talks with the ease of filtering, playlists, personalized suggestions, decentralized access on IPFS and more. https://archive.devcon.org/archive/watch/4/b-u-i-d-l-song Jonathan Mann's famous B-U-I-D-L song! Speaker(s): Jonathan Mann Skill level: Beginner Track: Devcon Keywords: build, songs Follow us: https://twitter.com/efdevcon, https://twitter.com/ethereum Learn more about devcon: https://www.devcon.org/ Learn more about ethereum: https://ethereum.org/ Devcon is the Ethereum conference for developers, researchers, thinkers, and makers. Devcon 4 was held in Prague, Czech Republic on Oct 30 - Nov 2, 2018. Devcon is organized and presented by the Ethereum Foundation, with the support of our sponsors. To find out more, please visit https://ethereum.foundation/
    https://wn.com/B_U_I_D_L_Song_By_Jonathan_Mann_(Devcon4)
    Go Easy On Yourself (Song A Day #1502)
    2:10

    Go Easy On Yourself (Song A Day #1502)

    • Order:
    • Duration: 2:10
    • Uploaded Date: 11 Feb 2013
    • views: 2862
    Go Easy On Yourself Song A Day #1502 D G F# Go easy, go easy on yourself D A Bm Go easy, go easy on yourself, yourself D A Life can pile on you Bm G And the truth will truth will out D A D So go easy, go easy on yourself D Beatin' yourself up A Bm Beatin' yourself up G It's a comfortable way to live D A Some people blame other people Bm You blame yourself G And then you don't have to give F# You don't have to look in anybody's eyes Bm And say hey you hurt me, hey you hurt me F# All you do is look straight, straight inside and say G A Well I guess this is my fault Go easy, go easy on yourself Go easy, go easy on yourself, yourself Life might pile on you But the truth will always out So go easy, go easy on yourself You might be You might be avoiding And that's OK, you know All you have to be is be the way you are Be a little, be a lot, try not at all or hard Say what you mean when you can, when you can And say with a full throat Stop hitting yourself, stop hitting yourself This song is the antidote 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/Go_Easy_On_Yourself_(Song_A_Day_1502)
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Simple Jonathan Blues | Song A Day #3938
      3:53
      Simple Jonathan Blues | Song A Day #3938remove from playlist
    • Simple (Song A Day #1383)
      1:38
      Simple (Song A Day #1383)remove from playlist
    • Pull That Thread | Song A Day #5086
      2:59
      Pull That Thread | Song A Day #5086remove from playlist
    • Florence And The Dancing Ducks | Song A Day #4474
      1:49
      Florence And The Dancing Ducks | Song A Day #4474remove from playlist
    • Apple Watch: The Musical ♫ | Song A Day #2078
      3:14
      Apple Watch: The Musical ♫ | Song A Day #2078remove from playlist
    • Cheese Sandwich | Song A Day #4054
      2:52
      Cheese Sandwich | Song A Day #4054remove from playlist
    • The Deer Licks The Cat | From The Album
      3:15
      The Deer Licks The Cat | From The Album "Animals" | Jonathan Mannremove from playlist
    • We Fix Space Junk | Song A Day #4252
      1:50
      We Fix Space Junk | Song A Day #4252remove from playlist
    • B-U-I-D-L Song by Jonathan Mann (Devcon4)
      7:23
      B-U-I-D-L Song by Jonathan Mann (Devcon4)remove from playlist
    • Go Easy On Yourself (Song A Day #1502)
      2:10
      Go Easy On Yourself (Song A Day #1502)remove from playlist
    PLAYLIST TIME: 0:00 / 31:03

    Simple Jonathan Blues | Song A Day #3938

    What does it matter what you say to the dark As long as you don’t give away who you are How can one city smell so f ing bad If its not the rotting animal carcasses It’s the landfill full of trash I been a beggar about as long as I can know Nothing has ever come close to filling up that hole Today was a yellow one but tomorrow could be blue Don’t look at me honey, it all depends on you My new album I USED TO LOVE MY BODY is out NOW and available for download or streaming: http://jonathanmann.net/body 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.
    3:53
    Simple Jonathan Blues | Song A Day #3938
    What does it matter what you say to the dark As long as you don’t give away who you are H...
    published: 13 Oct 2019
    Play in Full Screen
    1:38
    Simple (Song A Day #1383)
    At two conferences over the last two weeks, I saw two different presentations about this b...
    published: 15 Oct 2012
    Play in Full Screen
    2:59
    Pull That Thread | Song A Day #5086
    You can own each day's song as an NFT by visiting: http://songaday.world She’s out across...
    published: 04 Dec 2022
    Play in Full Screen
    1:49
    Florence And The Dancing Ducks | Song A Day #4474
    I write a song a day! Join the Song A Day Discord: https://discord.gg/ZqwATkEm This fluff...
    published: 01 Apr 2021
    Play in Full Screen
    3:14
    Apple Watch: The Musical ♫ | Song A Day #2078
    Donating = Loving: http://patreon.com/jonathanmann Download this song: https://jonathanma...
    published: 10 Sep 2014
    Play in Full Screen
    2:52
    Cheese Sandwich | Song A Day #4054
    Ever wanted to be a fly on the wall to hear me write my song from start to finish? Listen ...
    published: 07 Feb 2020
    Play in Full Screen
    3:15
    The Deer Licks The Cat | From The Album "Animals" | Jonathan Mann
    Download the album: http://animals.cool Anni Rossi sang this song: http://www.annirossi.c...
    published: 20 May 2014
    Play in Full Screen
    1:50
    We Fix Space Junk | Song A Day #4252
    I write a song a day! Patreon: http://patreon.com/jonathanmann Website: http://jonathanma...
    published: 22 Aug 2020
    Play in Full Screen
    7:23
    B-U-I-D-L Song by Jonathan Mann (Devcon4)
    Visit the https://archive.devcon.org/ to gain access to the entire library of Devcon talks...
    published: 11 Dec 2018
    Play in Full Screen
    2:10
    Go Easy On Yourself (Song A Day #1502)
    Go Easy On Yourself Song A Day #1502 D G F# Go easy, go easy on yourself D A Bm Go ea...
    published: 11 Feb 2013
    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)); } }); }); }); // -->
    ×