- published: 01 Jun 2024
- views: 6778699
'+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; })); }); -->
The Other is a 1972 psychological thriller film directed by Robert Mulligan, adapted for film by Tom Tryon from his novel of the same name. It stars Uta Hagen, Diana Muldaur, and Chris and Martin Udvarnoky.
It's a seemingly idyllic summer in 1935, and identical twins Niles and Holland Perry play around the bucolic family farm. Holland is an amoral mischief maker, though sympathetic Niles is often caught in their shenanigans. Niles carries a Prince Albert tobacco tin with him containing several secret trinkets, including something mysteriously wrapped in blue wax paper, and the Perry family ring, which had been handed down from their grandfather, through their father, to Holland, the older twin. Niles asks Holland to confirm that the ring is now indeed his. "Cripes yes, I gave it to you," is the response. Niles asks Holland to take the ring and the wrapped object back, but Holland insists "I gave them to you, they're yours now." Their obnoxious cousin Russell, whom the boys call "Piggy Lookadoo" behind his back, finds them in the apple cellar below the barn—a place they are not supposed to play—and happens to see the contents of the tobacco tin, including the ring. Russell cryptically states that the ring was supposed to be buried, and promises to "tell on" Niles to his father, Niles' Uncle George. Uncle George padlocks the door to the apple cellar to keep the kids from playing there, but there is another stairway inside the barn, giving them access to the cellar.
The Other 98% is a nonprofit organization grassroots network of concerned people that shines a light on economic injustice, undue corporate influence and threats to democracy in the United States. It was founded on 15 April 2010 during “anti-tax” rallies in Washington D.C..
The Other is the 1971 debut novel by Thomas Tryon. Set in 1935, the novel focuses on the sadistic relationship between two thirteen-year-old identical twin boys, one who is well-behaved, and the other, a sociopath who wreaks havoc on his family's rural New England farm property.
Tryon, who had been a working actor prior, retired from his Hollywood career to become a novelist. Upon its release, the novel received wide critical acclaim, and was adapted into a 1972 film of the same name starring Uta Hagen. The novel was reprinted in a commemorative edition in 2012 by New York Review Books with an afterword by Dan Chaon.
Hakeem Seriki (born November 28, 1979), better known by his stage name Chamillionaire, (/ˈkəmɪljənɛər/) is an American rapper and entrepreneur from Houston, Texas. He is the CEO of Chamillitary Entertainment. Chamillionaire was also the founder and an original member of The Color Changin' Click until the group split in 2005.
He began his career independently with local releases in 2002, including collaboration album Get Ya Mind Correct with fellow Houston rapper and childhood friend Paul Wall. He signed to Universal Records in 2005 and released The Sound of Revenge under Universal. It included hit singles "Turn It Up" featuring Lil' Flip and the number-one, Grammy-winning hit "Ridin'" featuring Krayzie Bone of Bone Thugs-n-Harmony. Ultimate Victory followed in 2007, which was notable for not containing any profanity. Chamillionaire is also known for his most anticipated Mixtape Messiah series, which came to a halt in 2009.
In early 2011, he left Universal Records, which led to his would-be third album, Venom, going unreleased. Chamillionaire released his first independent extended play Ammunition in March 2012 and was noted as his first major release since he left the label. Another EP, Elevate, was released on February 17, 2013. He said it is going to be one of several to be released before his third studio album, and shortly after his third EP Reignfall was released on July 23, 2013. He is working on his third studio album, Poison.
Charlie is on the lookout for love and these 20 lady landlubbers have answered the call. With his friends helping him, Charlie will surely feel the spark. Right?
Lauv - The Other (Official Lyric Video) ⬙ FAVOURITES ON SPOTIFY ⬙ ⇥ http://mrsuicidesheep.com/favourites I've been waiting to show you guys this beautiful track for quite a while now. I can't wait to hear what LAUV has to offer to us next. Download... http://apple.co/1FOSZrI Lauv http://lauvsongs.com http://soundcloud.com/lauvsongs http://facebook.com/lauvsongs http://twitter.com/lauvsongs https://instagram.com/_lauvsongs/ Lyric video by Andy DeLuca - [email protected] Footage by Ross Perkel & Bella Finn Parisot ⬗ Sheepy Store ⬗ ⇥ http://mrsuicidesheep.com/store ⬖ Submit Music & Art ⬖ ⇥ http://mrsuicidesheep.com/submit ⬙ Sheepy Instagram ⬙ ⇥ http://mrsuicidesheep.com/insta ⬘ Spotify: Channel Uploads ⬘ ⇥ http://mrsuicidesheep.com/channeluploads ⬗ Spotify: Seeking Blue ⬗ ⇥ ...
We're thrilled to announce a special release and 4K restoration of one of the most critically acclaimed horror films of the 21st Century, Alejandro Amenábar’s THE OTHERS. Starring Nicole Kidman, Christopher Eccleston, and Fionnula Flannagan, the film opened to both critical and box office success upon original release, winning 8 Goya Awards including Best Film and Best Director, and has since been heralded as one of the best psychological horror films of all time. Academy Award® winner Nicole Kidman delivers an unforgettable performance in this gothic supernatural thriller. In 1945, Grace (Kidman) and her two children wait for her husband's return from the war, living an unusually isolated existence behind the locked doors and drawn curtains of a secluded mansion in Jersey. Three mysteri...
Lauv's debut album, ~how i'm feeling~ is available now: http://lauv.lnk.to/howimfeelingYD I met you when I was 18. is a collection of songs, a story. about making a big move, falling in love for the first time, and figuring out your own identity while being with someone else. listen to the entire playlist at: http://lauv.lnk.to/imywiw18 New single ‘I Like Me Better’ out now: http://smarturl.it/lauv_ilmb "I Like Me Better" Official Video: http://lauv.lnk.to/ilmb_video “The Other” out Now Spotify: http://spoti.fi/2mV2tLU iTunes/AppleMusic: http://bit.ly/2lIcUCo Amazon: http://amzn.to/2lE8D1U Google Play: http://bit.ly/2lIaxzo Subscribe to Lauv’s channel: https://lauv.lnk.to/subscribe For official Lauv merch visit https://shop.lauvsongs.com/ Follow Lauv: http://lauvsongs.com http://face...
It could be something goofy or something scary or something normal or something sticky or something prickly or something shocky. The options are limitless.
Material belongs to Las Producciones del Escorpion, SL, Sociedad General De Cine, S.A, Dimension Films, Warner Sogefilms. My Copyright Disclaimer: Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended.
Provided to YouTube by Universal Music Group The Other Woman · Lana Del Rey Ultraviolence ℗ 2014 Lana Del Rey, under exclusive licence to Polydor Ltd. (UK). Under exclusive licence to Interscope Records in the USA Released on: 2014-01-01 Associated Performer, Vocals: Lana Del Rey Producer, Associated Performer, Synthesizer: Dan Auerbach Studio Personnel, Engineer: Collin Dupuis Studio Personnel, Mixer: Robert Orton Associated Performer, Drums: Nick Movshon Associated Performer, Synthesizer: Leon Michels Associated Performer, Electric Guitar: Kenny Vaughan Associated Performer, Pedal Steel: Russ Pahl Studio Personnel, Mastering Engineer: John Davis Composer Lyricist: Jessie Mae Robinson Auto-generated by YouTube.
Starring: Nicole Kidman, Fionnula Flanagan, and Christopher Eccleston The Others (2001) Official Trailer 1 - Nicole Kidman Movie A woman who lives in a darkened old house with her two photosensitive children becomes convinced that her family home is haunted. Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn We're on SNAPCHAT: http://bit.ly/2cOzfcy Like us on FACEBOOK: http://bit.ly/1QyRMsE Follow us on TWITTER: http://bit.ly/1ghOWmt Welcome to the Fandango MOVIECLIPS Trailer Vault Channel. Where trailers from the past, from recent to long ago, from a time before YouTube, can be enjoyed by all. We search near and far for original movie trailer from all decades. Feel free to send us your trailer ...
This is a general daily tarot reading for all 12 signs. Take what resonates & make sure to leave the rest. Follow me on Instagram: https://www.instagram.com/theawakeneddreamer33/ https://www.instagram.com/jpenguin3/ Follow me on TikTok: https://vm.tiktok.com/ZTd9cpyXQ/ EMAIL ME FOR YOUR PERSONAL READING: [email protected] - 10 Card Reading - $100 - 5 Card Reading - $60 - 3 Card Reading - $40 Payments & Donations: https://www.paypal.com/paypalme/TheAwakenedDreamer #tarot #dailytarot #june #monday #zodiacsigns #psychic #predictions
SZA x Justin Timberlake – “The Other Side” (From Trolls World Tour) available everywhere https://smarturl.it/xTheOtherSide Anna Kendrick and Justin Timberlake return in Trolls World Tour, an all-star sequel to DreamWorks Animation’s 2016 musical hit. In an adventure that will take them well beyond what they’ve known before, Poppy (Kendrick) and Branch (Timberlake) discover that they are but one of six different Trolls tribes scattered over six different lands and devoted to six different kinds of music: Funk, Country, Techno, Classical, Pop and Rock. Their world is about to get a lot bigger and a whole lot louder. Trolls World Tour in theaters April 10. For more information: www.trollsworldtour.com PRODUCTION CO: FREENJOY DIRECTOR Daniel Russell EXECUTIVE PRODUCER Nathan Scherrer DI...
The Other is a 1972 psychological thriller film directed by Robert Mulligan, adapted for film by Tom Tryon from his novel of the same name. It stars Uta Hagen, Diana Muldaur, and Chris and Martin Udvarnoky.
It's a seemingly idyllic summer in 1935, and identical twins Niles and Holland Perry play around the bucolic family farm. Holland is an amoral mischief maker, though sympathetic Niles is often caught in their shenanigans. Niles carries a Prince Albert tobacco tin with him containing several secret trinkets, including something mysteriously wrapped in blue wax paper, and the Perry family ring, which had been handed down from their grandfather, through their father, to Holland, the older twin. Niles asks Holland to confirm that the ring is now indeed his. "Cripes yes, I gave it to you," is the response. Niles asks Holland to take the ring and the wrapped object back, but Holland insists "I gave them to you, they're yours now." Their obnoxious cousin Russell, whom the boys call "Piggy Lookadoo" behind his back, finds them in the apple cellar below the barn—a place they are not supposed to play—and happens to see the contents of the tobacco tin, including the ring. Russell cryptically states that the ring was supposed to be buried, and promises to "tell on" Niles to his father, Niles' Uncle George. Uncle George padlocks the door to the apple cellar to keep the kids from playing there, but there is another stairway inside the barn, giving them access to the cellar.
(Paul Wall)
I'm not the type that likes to think about the times I was broke
reminisce on how everybody thought my rhymes was a joke
I played if fair while competitors were buying their vote
But thats life I ain't crying I cope
They talk about I owe them somethin, but they the ones thats holdin me back
They the same people bringing me down,
so thats why anytime I hop up on the mic there ain't no holding me back
Watch I show ya'll the meaning of clown
Until I'm under the ground
They won't disrespect or slander my name
It takes more than a strong mind to handle the fame
I'm walking one path in this broad, scandalous game
If you don't have an umbrella don't stand in the rain
It gets deep boys losing they life cause of their rappin
Get jacked lose their car cause of their cappin
Alot of cats exaggerate on the things that they lackin
But I'm real baby ain't no actin, just real action
(Chorus: Chamillionaire)
Seems Only Times When I'm Ballin Ballin Ballin Ballin
Foreigns, Lacs Are Crawling, Now Hood Rats Are Calling
My Stacks Is Tall and To Them Baps and Frauds But Hey
Where Was You At The Other Day
Never See Myself, Fallin Fallin Fallin Fallin
Picture Me Falling Off from Rappin Back To Starving
No Lacs Or Foreigns, Gucci Hats Or Jordans Hey
I Couln't Ever See The Day-ay-ay
(Paul Wall)
I wish I could forget how I didn't have a friend in the world
More than a dollar to spend on a girl
But now them boys talking down cuz now I'm realer than a genuine pearl
While thier sweeter than a cinnamon swirl...
I'm Real
My whole life I never acted fruad or fake
There must have been some kind of large mistake
Because I've been stuck out like a broken down garage or gate
I paid dues while they charged me hate
One thing I learned is no matter what nobody can dodge their fate
Don't try to rush life like guards, at florida state
Slow down rookie take ya time god ain't late
Do your chores don't go to war with a rake
I'm tryin to soar to be great
thats why I'm fly, looking for wealth
I don't want to be just another book on the shelf
I stopped looking for help when I looked to myself
I got the whole world under my belt
(Chorus: Chamillionaire)
Seems Only Times When I'm Ballin Ballin Ballin Ballin
Foreigns, Lacs Are Crawling, Now Hood Rats Are Calling
My Stacks Is Tall and To Them Baps and Frauds But Hey
Where Was You At The Other Day
Never See Myself, Fallin Fallin Fallin Fallin
Picture Me Falling Off from Rappin Back To Starving
No Lacs Or Foreigns, Gucci Hats Or Jordans Hey
I Couln't Ever See The Day-ay-ay
(Paul Wall)
You won't hear my brag about the struggles I endured as a kid
How selfish and ungreatful people got more than I did
I did my chores damn near went to war to be rich
They think its just a game cuz I'm throwed, more than a pitch
I lost a lot of teammates to jealousy and greed
Planted seeds and watched them get swallowed up by weeds
I'm tryin to live comfortably and have the things that I need
Its true the best things in life are free
But I got people in my face that are influenced by hate and pride
Hiding behind their ego's engulfed in lies
But I dont' walk around looking like my dog just died
I couldn't get rid of my smile if I tried
My face shine bright, you'll never see my grin grow dim
Even when I only had one friend
I couldn't dive into the ocean until I taught myself how to swim
But I ain't tryin to think about back then
(Chorus: Chamillionaire)
Seems Only Times When I'm Ballin Ballin Ballin Ballin
Foreigns, Lacs Are Crawling, Now Hood Rats Are Calling
My Stacks Is Tall and To Them Baps and Frauds But Hey
Where Was You At The Other Day
Never See Myself, Fallin Fallin Fallin Fallin
Picture Me Falling Off from Rappin Back To Starving
No Lacs Or Foreigns, Gucci Hats Or Jordans Hey