'+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; })); }); -->

Something Else!!!!

Something Else!!!! (sometimes called Something Else!!!! The Music of Ornette Coleman) is the 1958 debut album by jazz saxophonist Ornette Coleman. According to AllMusic, the album "shook up the jazz world", revitalizing the union of blues and jazz and restoring "blues to their 'classic' beginnings in African music". It is unusual in Coleman's output in that it features a conventional bebop quintet instrumentation (saxophone, cornet, piano, bass and drums); after this album, Coleman would rarely use the piano, creating a starker and more fluid sound.

History

While working as an elevator operator in a department store in Los Angeles, Ornette assembled a group of musiciansteenaged cornet player Don Cherry, double bass player Charlie Haden, and drummers Ed Blackwell and Billy Higginswith whom he could explore his unusual jazz compositions. Coleman was introduced to music producer Lester Koenig of Contemporary Records by a bebop bassist friend of Cherry's, Red Mitchell, who thought Koenig might be interested in purchasing Coleman's songs. When other musicians found the tunes too challenging, Coleman was invited to perform the compositions himself.

Something Else

Something Else or Somethin' Else may refer to:

Literature

  • Something Else (book), a children's book by Kathryn Cave
  • Something Else Press, an American small-press publisher
  • Archie's Something Else! by Spire Christian Comics
  • Music

    Performers

  • Somethin' Else! , a rock and roll band featuring Bobby Cochran, nephew of Eddie Cochran
  • Something Else (band), a J-Pop band
  • Something Else, a 1970s Scottish band featuring Sheena Easton
  • Albums

  • Something Else!!!!, a 1958 album by Ornette Coleman
  • Somethin' Else (Cannonball Adderley album), or the title song by Miles Davis, 1958
  • Somethin' Else (The Kingston Trio album), 1965
  • Something Else (Robin Thicke album), 2008
  • Something Else (Shirley Bassey album), 1971
  • Something Else (Tech N9ne album), 2013
  • Something Else by The Kinks, a 1967 album
  • Something Else from The Move, a 1968 EP
  • Something Else, a 2012 album by Elom Adablah
  • Something Else, a 1970 album by Jeremy Steig
  • Songs

  • "Somethin' Else" (song), a 1959 song by Eddie Cochran, covered by several other performers
  • Something Else (Tech N9ne album)

    Something Else is the thirteenth studio album by American rapper Tech N9ne. It was released on July 30, 2013, by Strange Music and RBC Records. The album has broken up into three portions — Earth, Water & Fire. Production on this album was handled during 2012 to 2013, primarily by frequent collaborator Seven, among others such as Young Fyre, Drumma Boy, and Fredwreck. The album features guest appearances from B.o.B, Big K.R.I.T., CeeLo Green, The Doors, The Game, Kendrick Lamar, Serj Tankian, T-Pain, Trae tha Truth and Wiz Khalifa, among others including several artists from Tech N9ne's Strange Music imprint.

    The album was supported by two singles, "So Dope (They Wanna)" and the Kendrick Lamar assisted "Fragile". Upon its release, Something Else received widespread acclaim from music critics. Also faring well commercially, the album sold 58,300 copies in its first week of sale, and debuting at number 4 on the US Billboard 200 chart.

    Background

    On February 8, 2013, the album was first announced on the Strange Music blog. During the preview on the Strange Music blog, Tech N9ne spoke about what to expect from the album, saying:

    Podcasts:

    • Can't Think (OFFICIAL MUSIC VIDEO)

      Can't Think... Help support the next projects by grabbing some merch at: http://somethingelseyt.com/ -Credits- Animated, Produced, Written by: SomeThingElseYT Co-Producer: @Zalinki 3D Animator: @KRUGSTON Lyrics: Its all the same When we parade the things we hate such a mouthful Bring the crusade Be lead astray Just take one taste of the apple Why fixate on such small mistakes We want to make it better If we never change lanes, I’m doubtful But that depends on the weather You get 1 tip, and 1 tip if only. Got that reflex, don’t you act like you know me. Mind your beeswax and bark like a birch tree. We’re all in our own heads, locked up with loose keys. Influence dreamers, there's nowhere to go. Friends we can cast like they’re all set in stone Stick to the act you're not fit fo...

      published: 22 Mar 2024
    • King Von - Something Else (Audio)

      Shop King Von's "Get Back Gang" Apparel Here: https://thehyv.shop/collections/king-von Listen to the album "Levon James". Out now! Stream: https://Empire.lnk.to/LevonJames Follow King Von: https://www.instagram.com/kingvonfrmdao https://twitter.com/KingVonFrmdaWic Subscribe to King Von's official channel for exclusive music videos and behind the scenes looks: http://bit.ly/Subscribe-to-King-Von #KingVon #LevonJames #Foreverandaday Official audio by King Von from the album "Levon James" © 2020 Forever and a Day, LLC / EMPIRE

      published: 06 Mar 2020
    • I'm Something Else (Official Music Video)

      I’m Something else... SPOTIFY: https://open.spotify.com/artist/1lVDBUHFHFGNogAAqnmYDN ITUNES: https://itunes.apple.com/us/album/heres-something-single/1456714499?app=itunes&ign-mpt=uo%3D4 APPLE MUSIC: https://distrokid.com/hyperfollow/somethingelseyt/heres-something NEW LIMITED SPECIAL MERCH► https://creatorink.com/collections/somethingelseyt-by-adam-ortiz Beat by: Foolish Ways and Somethingelseyt Guest Animators: SugarCub- https://www.youtube.com/user/PrincessNeugets Yes-Hi-Hello- https://www.youtube.com/channel/UCmdiO4vmcBxIxojbha_qJYw?view_as=subscriber Berisoap- https://www.youtube.com/berisoap Background Artist: AntiDarkHeart - https://www.twitch.tv/antidarkheart Storyboard help: MistletoeArt- https://www.youtube.com/channel/UCR7GPoPl54ItKoSGon7Fniw twitter ►https://twi...

      published: 22 Mar 2019
    • Young Dolph, Key Glock - Somethin' Else (Visualizer)

      Listen to the album "Dum and Dummer 2". Out now! Stream: https://music.empi.re/dumanddummer2.oyd #YoungDolph #KeyGlock #DumAndDummer2 Official Visualizer by Young Dolph & Key Glock from the album "Dum and Dummer 2" © 2021 Paper Route EMPIRE http://vevo.ly/r6WTwO

      published: 26 Mar 2021
    • Somethin’ Else

      Provided to YouTube by IDOL Somethin’ Else · Eddie Cochran Deluxe: Greatest Hits - Eddie Cochran ℗ Puzzle Productions Released on: 2012-09-24 Lyricist: Sheeley Composer: B. Cochran Auto-generated by YouTube.

      published: 29 Nov 2014
    • Something Else

      Provided to YouTube by Universal Music Group Something Else · Jadakiss · Young Jeezy The Last Kiss ℗ 2009 The Island Def Jam Music Group Released on: 2009-01-01 Producer: Fiend Studio Personnel, Recording Engineer: Jesus "Poobs" Fernandez Studio Personnel, Recording Engineer: Nico Solis Studio Personnel, Mix Engineer: Dragan "Chach" Cacinovic Composer Lyricist: Jason Phillips Composer Lyricist: R. Jones Composer Lyricist: Jay Jenkins Auto-generated by YouTube.

      published: 31 Jul 2018
    developed with YouTube
    Can't Think (OFFICIAL MUSIC VIDEO)
    2:58

    Can't Think (OFFICIAL MUSIC VIDEO)

    • Order:
    • Duration: 2:58
    • Uploaded Date: 22 Mar 2024
    • views: 662611
    Can't Think... Help support the next projects by grabbing some merch at: http://somethingelseyt.com/ -Credits- Animated, Produced, Written by: SomeThingElseYT Co-Producer: @Zalinki 3D Animator: @KRUGSTON Lyrics: Its all the same When we parade the things we hate such a mouthful Bring the crusade Be lead astray Just take one taste of the apple Why fixate on such small mistakes We want to make it better If we never change lanes, I’m doubtful But that depends on the weather You get 1 tip, and 1 tip if only. Got that reflex, don’t you act like you know me. Mind your beeswax and bark like a birch tree. We’re all in our own heads, locked up with loose keys. Influence dreamers, there's nowhere to go. Friends we can cast like they’re all set in stone Stick to the act you're not fit for the mold Get used to the fact that we all run the show I can’t breathe I can’t think Always screaming what we need Everybody’s saying something but that something doesn’t feed I can’t think I can’t breath Never reaping what we sow Everybody saying nothing but that nothing runs the show We’re all deranged but thats ok. Feel not afraid. Make the right call. We’re bound to change It’s worth the pain Don’t take the bait of the prideful. Why fixate on such small mistakes We gotta be go getters If we ever feel shame, I’m spiteful But that depends all together I got one dream; thats not to be lonely With low static noise, falling path of a lone leaf I'll pass, crowd asking for "old me" Hold to my mind when the mass comes in storming Centrically wedding proportions to blow Leaning the facts like the pizza in Rome Jestingly poking the air when its cold Integrity lacks when we all run the show I can’t breathe I can’t think Always screaming what we need Everybody’s saying something but that something doesn’t feed I can’t think I can’t breath Never reaping what we sow Everybody saying nothing but that nothing runs the show
    https://wn.com/Can't_Think_(Official_Music_Video)
    King Von - Something Else (Audio)
    2:10

    King Von - Something Else (Audio)

    • Order:
    • Duration: 2:10
    • Uploaded Date: 06 Mar 2020
    • views: 2421538
    Shop King Von's "Get Back Gang" Apparel Here: https://thehyv.shop/collections/king-von Listen to the album "Levon James". Out now! Stream: https://Empire.lnk.to/LevonJames Follow King Von: https://www.instagram.com/kingvonfrmdao https://twitter.com/KingVonFrmdaWic Subscribe to King Von's official channel for exclusive music videos and behind the scenes looks: http://bit.ly/Subscribe-to-King-Von #KingVon #LevonJames #Foreverandaday Official audio by King Von from the album "Levon James" © 2020 Forever and a Day, LLC / EMPIRE
    https://wn.com/King_Von_Something_Else_(Audio)
    I'm Something Else (Official Music Video)
    2:45

    I'm Something Else (Official Music Video)

    • Order:
    • Duration: 2:45
    • Uploaded Date: 22 Mar 2019
    • views: 96058890
    I’m Something else... SPOTIFY: https://open.spotify.com/artist/1lVDBUHFHFGNogAAqnmYDN ITUNES: https://itunes.apple.com/us/album/heres-something-single/1456714499?app=itunes&ign-mpt=uo%3D4 APPLE MUSIC: https://distrokid.com/hyperfollow/somethingelseyt/heres-something NEW LIMITED SPECIAL MERCH► https://creatorink.com/collections/somethingelseyt-by-adam-ortiz Beat by: Foolish Ways and Somethingelseyt Guest Animators: SugarCub- https://www.youtube.com/user/PrincessNeugets Yes-Hi-Hello- https://www.youtube.com/channel/UCmdiO4vmcBxIxojbha_qJYw?view_as=subscriber Berisoap- https://www.youtube.com/berisoap Background Artist: AntiDarkHeart - https://www.twitch.tv/antidarkheart Storyboard help: MistletoeArt- https://www.youtube.com/channel/UCR7GPoPl54ItKoSGon7Fniw twitter ►https://twitter.com/SomethingelseYT Instagram ► https://www.instagram.com/somethingelsegram/?hl=en -Lyrics written 100% by yours truly - I'm kinda mad, sad, shaking in, back forth These hacksaw, slack jaws, kicking in back doors Its awful, stupid chickens pecking debacles With mouthfuls freakin chickens, pissing me off URG I’m lookin at these people who hating, discrete and evil Telling me that I’m never gunna be anything, a cheap voice And I don’t even know what’s goin on anymore Cuz these people lookin at me like I’m stupid…. Irregulore Halt! Putting their words in a vault! Lurkin and jerkin to tear what I’m workin on thinkin it’s getting them off Spitting and scoff Pick on my dreams Thinking I'm joke and missing the ball But what do they mean its going its going it going it’s gone Ha look at me I will do and will succeed If I don't, I don't care I’ll pull down your underwear Ha look at me I will do and will succeed If I don't, I don't care I’ll pull down your underwear Welp, now I’m looking up!... And down at the same time cuz i do not give a WHAT! Now these people looking at me like i am freaking nuts Cuz Ill be preaching what we be seeking, never giving up I'm taking the crash course of beating a dead horse trying to convince (or tell) dorks That I'ma pass that I'ma hash back glad proving them wrong cuz I’ll be silly with it back down to my booshwa Call me Liza Koshy Mad puns Booha Ha look at me I will do and will succeed If I don't, I don't care I’ll pull down your underwear And now I sit down reflect and backtrack To those wack from my past who passed trash Who act bad who say that I'm… nothing.. a cast out Get back in your glass house cuz not only am I something… I'm SomeThingElse Ha look at me I will do and will succeed If I don't, I don't care I’ll pull down your underwear Ha look at me I will do and will succeed If I don't, I don't care I’ll pull down your underwear
    https://wn.com/I'm_Something_Else_(Official_Music_Video)
    Young Dolph, Key Glock - Somethin' Else (Visualizer)
    3:40

    Young Dolph, Key Glock - Somethin' Else (Visualizer)

    • Order:
    • Duration: 3:40
    • Uploaded Date: 26 Mar 2021
    • views: 1201588
    Listen to the album "Dum and Dummer 2". Out now! Stream: https://music.empi.re/dumanddummer2.oyd #YoungDolph #KeyGlock #DumAndDummer2 Official Visualizer by Young Dolph & Key Glock from the album "Dum and Dummer 2" © 2021 Paper Route EMPIRE http://vevo.ly/r6WTwO
    https://wn.com/Young_Dolph,_Key_Glock_Somethin'_Else_(Visualizer)
    Somethin’ Else
    2:12

    Somethin’ Else

    • Order:
    • Duration: 2:12
    • Uploaded Date: 29 Nov 2014
    • views: 465016
    Provided to YouTube by IDOL Somethin’ Else · Eddie Cochran Deluxe: Greatest Hits - Eddie Cochran ℗ Puzzle Productions Released on: 2012-09-24 Lyricist: Sheeley Composer: B. Cochran Auto-generated by YouTube.
    https://wn.com/Somethin’_Else
    Something Else
    3:36

    Something Else

    • Order:
    • Duration: 3:36
    • Uploaded Date: 31 Jul 2018
    • views: 529964
    Provided to YouTube by Universal Music Group Something Else · Jadakiss · Young Jeezy The Last Kiss ℗ 2009 The Island Def Jam Music Group Released on: 2009-01-01 Producer: Fiend Studio Personnel, Recording Engineer: Jesus "Poobs" Fernandez Studio Personnel, Recording Engineer: Nico Solis Studio Personnel, Mix Engineer: Dragan "Chach" Cacinovic Composer Lyricist: Jason Phillips Composer Lyricist: R. Jones Composer Lyricist: Jay Jenkins Auto-generated by YouTube.
    https://wn.com/Something_Else
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Can't Think (OFFICIAL MUSIC VIDEO)
      2:58
      Can't Think (OFFICIAL MUSIC VIDEO)remove from playlist
    • King Von - Something Else (Audio)
      2:10
      King Von - Something Else (Audio)remove from playlist
    • I'm Something Else (Official Music Video)
      2:45
      I'm Something Else (Official Music Video)remove from playlist
    • Young Dolph, Key Glock - Somethin' Else (Visualizer)
      3:40
      Young Dolph, Key Glock - Somethin' Else (Visualizer)remove from playlist
    • Somethin’ Else
      2:12
      Somethin’ Elseremove from playlist
    • Something Else
      3:36
      Something Elseremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Can't Think (OFFICIAL MUSIC VIDEO)

    Can't Think... Help support the next projects by grabbing some merch at: http://somethingelseyt.com/ -Credits- Animated, Produced, Written by: SomeThingElseYT Co-Producer: @Zalinki 3D Animator: @KRUGSTON Lyrics: Its all the same When we parade the things we hate such a mouthful Bring the crusade Be lead astray Just take one taste of the apple Why fixate on such small mistakes We want to make it better If we never change lanes, I’m doubtful But that depends on the weather You get 1 tip, and 1 tip if only. Got that reflex, don’t you act like you know me. Mind your beeswax and bark like a birch tree. We’re all in our own heads, locked up with loose keys. Influence dreamers, there's nowhere to go. Friends we can cast like they’re all set in stone Stick to the act you're not fit for the mold Get used to the fact that we all run the show I can’t breathe I can’t think Always screaming what we need Everybody’s saying something but that something doesn’t feed I can’t think I can’t breath Never reaping what we sow Everybody saying nothing but that nothing runs the show We’re all deranged but thats ok. Feel not afraid. Make the right call. We’re bound to change It’s worth the pain Don’t take the bait of the prideful. Why fixate on such small mistakes We gotta be go getters If we ever feel shame, I’m spiteful But that depends all together I got one dream; thats not to be lonely With low static noise, falling path of a lone leaf I'll pass, crowd asking for "old me" Hold to my mind when the mass comes in storming Centrically wedding proportions to blow Leaning the facts like the pizza in Rome Jestingly poking the air when its cold Integrity lacks when we all run the show I can’t breathe I can’t think Always screaming what we need Everybody’s saying something but that something doesn’t feed I can’t think I can’t breath Never reaping what we sow Everybody saying nothing but that nothing runs the show
    2:58
    Can't Think (OFFICIAL MUSIC VIDEO)
    Can't Think... Help support the next projects by grabbing some merch at: http://something...
    published: 22 Mar 2024
    Play in Full Screen
    2:10
    King Von - Something Else (Audio)
    Shop King Von's "Get Back Gang" Apparel Here: https://thehyv.shop/collections/king-von L...
    published: 06 Mar 2020
    Play in Full Screen
    2:45
    I'm Something Else (Official Music Video)
    I’m Something else... SPOTIFY: https://open.spotify.com/artist/1lVDBUHFHFGNogAAqnmYDN ITU...
    published: 22 Mar 2019
    Play in Full Screen
    3:40
    Young Dolph, Key Glock - Somethin' Else (Visualizer)
    Listen to the album "Dum and Dummer 2". Out now! Stream: https://music.empi.re/dumanddumme...
    published: 26 Mar 2021
    Play in Full Screen
    2:12
    Somethin’ Else
    Provided to YouTube by IDOL Somethin’ Else · Eddie Cochran Deluxe: Greatest Hits - Eddie...
    published: 29 Nov 2014
    Play in Full Screen
    3:36
    Something Else
    Provided to YouTube by Universal Music Group Something Else · Jadakiss · Young Jeezy The...
    published: 31 Jul 2018
    Play in Full Screen

    Something Else!!!!

    Something Else!!!! (sometimes called Something Else!!!! The Music of Ornette Coleman) is the 1958 debut album by jazz saxophonist Ornette Coleman. According to AllMusic, the album "shook up the jazz world", revitalizing the union of blues and jazz and restoring "blues to their 'classic' beginnings in African music". It is unusual in Coleman's output in that it features a conventional bebop quintet instrumentation (saxophone, cornet, piano, bass and drums); after this album, Coleman would rarely use the piano, creating a starker and more fluid sound.

    History

    While working as an elevator operator in a department store in Los Angeles, Ornette assembled a group of musiciansteenaged cornet player Don Cherry, double bass player Charlie Haden, and drummers Ed Blackwell and Billy Higginswith whom he could explore his unusual jazz compositions. Coleman was introduced to music producer Lester Koenig of Contemporary Records by a bebop bassist friend of Cherry's, Red Mitchell, who thought Koenig might be interested in purchasing Coleman's songs. When other musicians found the tunes too challenging, Coleman was invited to perform the compositions himself.

    '); } 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)); } }); }); }); // -->
    ×