- published: 24 Nov 2021
- views: 285760
'+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; })); }); -->
Troy Transit Center is an Amtrak station in Troy, Michigan served by the Wolverine. This station replaced Birmingham Amtrak station on October 14, 2014, and is located about 1200 feet southwest on Doyle Drive in Troy, Michigan.
The Troy Transit Center brings together the services of Amtrak, Suburban Mobility Authority for Regional Transportation (SMART) buses and taxis. Designed by local architectural firm Neumann/Smith, the one story, 2,000 square foot brick building includes a waiting room and restrooms; large expanses of glass allow natural light to flood the interior. A pedestrian bridge over the tracks allows access to the western platform and protects passengers from inclement weather.
In 2000, Grand Sakwa Properties gave the city of Troy title to 77 acres, 2.7 of which would be donated with the provision that funding for a transit center be secured within 10 years. In 2011, the cities of Birmingham and Troy were awarded a federal grant to assist in replacing the existing station with a new, multimodal transit center across the tracks in Troy. However, the mayor of Troy rejected the funding on ideological grounds, thus terminating the project. The $6.6 million project was resurrected by a subsequent Troy city administration, and broke ground on November 27, 2012, and was completed in October 2013. A legal dispute over title to the land kept the center from opening. In late September 2014, a settlement by Troy to acquire the land and lease the site to Amtrak was reached, and the station opened on October 14, 2014.
This is a list of craters on Mars. There are hundreds of thousands of impact crater on Mars, but only some of them have names. This list here contains only named Martian craters starting with the letter O – Z (see also lists for A – G and H – N).
Large Martian craters (greater than 60 km in diameter) are named after famous scientists and science fiction authors; smaller ones (less than 60 km in diameter) get their names from towns on Earth. Craters cannot be named for living people, and small crater names are not intended to be commemorative - that is, a small crater isn't actually named after a specific town on Earth, but rather its name comes at random from a pool of terrestrial place names, with some exceptions made for craters near landing sites. Latitude and longitude are given as planetographic coordinates with west longitude.
Troy is a male given first name used in English-speaking countries, and derives from the Irish Gaelic Troightheach, meaning "foot soldier". Troy can also be an informal form of the female name Gertrude (often shortened to Trude) in Dutch. The name Troy may refer to:
hi everyone, this video is for educational purposes only. this video shows the type of meteorite samples that manage to survive when it entered the earth atmosphere and landed on earth surface. I hope that this video can help you determine your meteorite is really a meteor right and not a meteor Wrong. #meteorites #Raremeteorites #preciousstones #spacerocks #NASA #SPACE. #Ironmeteorites #stoneyironmeteorite #stoney #Asteroids. Credit to : Google.com /Wikipedia https://www.google.com/ for photos and information. credit background music: Power by RocknStock https://tunetank.com/track/1458-power
Impact craters are scattered across Earth’s surface, but meteoroids first face the challenge of passing through Earth’s atmosphere, producing impressive shooting stars (meteors) before they even come close to reaching the ground. Not all meteorite impacts leave a scar on the planet, but those that do can be powerful enough to cause mass extinctions. Yet from destruction, life can blossom, with these hotspots of evolution also housing huge economic metal deposits to help society prosper. ━━━━━━━━━━━━━━━━━━━━ Additional Information ──────────────────────────── https://impact.uwo.ca https://www.spacerocks.ca ━━━━━━━━━━━━━━━━━━━━ Social Media ──────────────────────────── https://www.twitter.com/drcrater https://www.linkedin.com/in/gordon-oz-osinski-61282822/ https://www.instagram.com/drcrater/...
Get a Wonderful Person Tee: https://teespring.com/stores/whatdamath More cool designs are on Amazon: https://amzn.to/3wDGy2i Alternatively, PayPal donations can be sent here: http://paypal.me/whatdamath Hello and welcome! My name is Anton and in this video, we will talk about new discoveries from Mars that redefine our understanding of the Red Planet Links: https://www.nature.com/articles/s41550-022-01836-3 https://www.nature.com/articles/s41598-022-18082-2 https://www.nasa.gov/feature/ames/giant-tsunamis-battered-the-coastlines-of-an-early-martian-ocean https://dx.doi.org/10.1029/2021JE007152 #mars #astronomy #redplanet Support this channel on Patreon to help me make this a full time job: https://www.patreon.com/whatdamath Bitcoin/Ethereum to spare? Donate them here to help this chan...
#southafrica #africa #geology #asteroid #asteroidimpact #crater #impactcrater #vredefortimpactcrater #vredefort #vredefortimpactevent#geoscience #disaster #earthscience #volcanoes #extinction #extinctionevent #comet #meteorite #bolide #asteroids The Vredefort Crater is, to this day, the largest known proven impact site on our planet. A massive asteroid smashed into here a little over 2 billion years ago, and, the land has never been the same since. Join us, as we head into South Africa, to witness one of the most destructive and chaotic events to have ever impacted the planet. I hope you enjoyed this video. If you wish to be in the loop for more content such as this, each like, share, comment and subscription helps the channel out immensely. If you are not in a position to donate, I...
Subscribe for more amazing videos! ► http://bit.ly/Subscribe-to-Richest ◄ Welcome back, Richest fans! Recently, a story spread across social media. Whilst working one evening in North Sumatra, Indonesia, Joshua Hutagalung would suddenly make a space discovery as an old meteorite fell into his home. The media across the globe began to take an interest in this space rock. Eventually, Hutagalung sold it for a small fortune. Yet later on, it seems the meteorite may have actually been worth millions! However, is this actually the case? Or are people getting their maths a little wrong? Today, we’re going to explore this interesting story. As well as briefly examine the amazing Hoba meteorite. Now for the spoiler paragraph. If you like surprises, we suggest you stop reading and watch the vide...
#asteroid #impact #meteorite #crater #australia #southaustralia #adelaide #acramanimpactcreater #lakeacraman #geoscience #geology #naturaldisaster #naturaldisaster #comet #meteoritecrater #meteorites #earthscience #geological #supervolcano #gawlerranges #earthsciences #volcanoes #geosciences # At OzGeographics, we're fascinated by impact events, as you probably already know by the content we've made in the past. So I found I figured it was a good idea to finally get to making a compilation of our best videos, that cover some of the largest impact events, along with some fascinating associations surrounding them, such as the Devonian Extinction's strong relation to the events that happened in Australia. If you wish to be in the loop for more content such as this, each like, share and su...
If you've come across a rock that looks positively out-of-this-world, there's a possibility it may be a meteorite. Although meteorites are relatively rare on Earth, they're not impossible to find in the wild. However, you'll want to make sure your find is indeed a stony or iron rock meter space cosmic origin and not a piece of ordinary terrestrial material. By checking for common visual and physical markers of a meteorite, you can determine whether the rock you've found is actually extraterrestrial in origin
Our Planet is home to many strange discoveries. There is one special place on earth, that holds a considerably high amount of those. This is a map of Australia, the smallest continent with one of the largest countries. Australia is the seventh continent and is also the world's oldest, flattest, and driest inhabited region. The breathtakingly gorgeous continent is a vibrant mix of varied geography, distinct climate, and a vast and adventurous history.The center section of Australia is mostly desert, however there are rich green rainforests in the north east and mountain ranges in the southeast. The British seized the eastern half of the continent in the 1770s, while Indigenous Australians arrived almost 65,000 years ago.Because the massive continent is cut off from the rest of the planet. ...
WARNING: SPOILERS. WATCH IN 1080p. *All the images and music used in the video belong to their respective owners. I do not own anything. This is purely fan-made video, for entertainment purpose only. Please support the artists by purchasing their original works. This is a special video for my subscriber! I hope you enjoy the video, Charles! :) Movie: Troy. Music: 1.Twelve Titans Music - Weightless. https://www.youtube.com/watch?v=UqViw4nrVRQ ♫ Follow Twelve Titans Music: ★ Facebook: https://www.facebook.com/twelvetitansmusic/ ★ Website: http://www.twelvetitansmusic.com/ ★ YouTube channel: https://www.youtube.com/channel/UCDhAPVW3Pt4pPAeUNbddgGw 2.Luke Richards - A Final Sacrifice. https://www.youtube.com/watch?v=K9tLAH0Z0pA ♫ Follow Luke Richards: ★ Discogs: https://www.discogs.com...
This is going to be a re-sound for the video Achilles is Shrouded in Myth as being demi-god but it is later clarified to not be the case .... implying no one had ever managed that before. Achilles vs. Boagrius. This is only for entertainment Only
Achilles. Remember the name. Another compilation suiting ancient Greek hero portrayed by Brad Pitt in Wolfgang Petersen's movie "Troy". --------------------------------------------------------------------------------- If you'd like to own any of the pieces of unreleased soundtrack from the movie "Alexander", contact me at [email protected]. --------------------------------------------------------------------------------- If you like my work, please consider supporting me on: https://www.paypal.me/dreamerafterall --------------------------------------------------------------------------------- Thank you for watching and donating!
You missed THIS in Troy. In the famous fight scene where Achilles and Hector duel each other, the actors didn’t use stunt doubles. Brad Pitt and Eric Bana instead came to an agreement, where they would pay the other in cash for each strike that accidentally landed for real. The stakes were $50 for a light hit and $100 for a heavy blow. One actor got the better of it, as Brad Pitt had to pay Eric Bana $750 while Bana didn’t have to pay Pitt at all, but who actually got the better deal?
Watch #TenMinutes of #TroyMovie #DirectorsCut . An adaptation of Homer's great epic, the film follows the assault on Troy by the united Greek forces and chronicles the fates of the men involved. SUBSCRIBE to Warner Bros. Entertainment: http://bit.ly/32v18jf Connect with Warner Bros. Entertainment Online: Follow Warner Bros. Entertainment INSTAGRAM: https://www.instagram.com/warnerbrosentertainment/ Like Warner Bros. Entertainment on FACEBOOK: https://www.facebook.com/warnerbrosent/ Follow Warner Bros. Entertainment TWITTER: https://twitter.com/WBHomeEnt About Troy - The Director's Cut: #BradPitt stars in an epic tale of passion, heroism, betrayal and war that has been passed from generation to generation since the dawn of civilization--the story of the battle for Troy. A thousand years...
Brad Pitt in 'Troy' motivational speech. #bradpitt #motivation #speech #movies
Troy Transit Center is an Amtrak station in Troy, Michigan served by the Wolverine. This station replaced Birmingham Amtrak station on October 14, 2014, and is located about 1200 feet southwest on Doyle Drive in Troy, Michigan.
The Troy Transit Center brings together the services of Amtrak, Suburban Mobility Authority for Regional Transportation (SMART) buses and taxis. Designed by local architectural firm Neumann/Smith, the one story, 2,000 square foot brick building includes a waiting room and restrooms; large expanses of glass allow natural light to flood the interior. A pedestrian bridge over the tracks allows access to the western platform and protects passengers from inclement weather.
In 2000, Grand Sakwa Properties gave the city of Troy title to 77 acres, 2.7 of which would be donated with the provision that funding for a transit center be secured within 10 years. In 2011, the cities of Birmingham and Troy were awarded a federal grant to assist in replacing the existing station with a new, multimodal transit center across the tracks in Troy. However, the mayor of Troy rejected the funding on ideological grounds, thus terminating the project. The $6.6 million project was resurrected by a subsequent Troy city administration, and broke ground on November 27, 2012, and was completed in October 2013. A legal dispute over title to the land kept the center from opening. In late September 2014, a settlement by Troy to acquire the land and lease the site to Amtrak was reached, and the station opened on October 14, 2014.
Drive slow, homie, drive slow, homie
You never know, homie, might meet some hoes, homie
You need to pump your brakes and drive slow, homie
My homie Mali used to stay, 79th and May
One of my best friends from back in the day
Down the street from Calumet, a school full of stones
He nicknamed me K-Rock so they'll leave me alone
Bulls jacket with his hat broke way off
And walked around the mall with his radio face off
Plus he had the spinner from his Dayton's in his hand, keys in his hand
Reason again to let you know he's the man
Back when we rocked the 'Leases, he had dreams of Caprices
Drove by the teachers, even more by polices
How he get the cash the day his father passed away
Left him with a lil' somethin', 16, he was stuntin'
Al B. Sure nigga with the hair all wavy
Hit Lakeshore, girls go all crazy
Hit the freeway, go at least 'bout 80
Boned so much that summer, even had him a baby
See back back then then if you had a car
You was the Chi-Town version of Baby
And I was just a virgin, a baby
One of the reasons I looked up to him crazy
I used to love to play my demo tape when the system yanked
Felt like I was almost signed when the shit got cranked
We'll take a Saturday and just circle the mall
They had they Lakers and Aurora's, we was hurtin' 'em all
With the girls a lot of flirtin' involved but dog
Fuck all that flirtin', I'm tryin' to get in some drawers, so
Put me on with these hoes homie
He told me, "Don't rush to get grown, drive slow homie"
Drive slow, homie, drive slow
You never know, homie about these hoes homie
You need to pump your brakes and drive slow, homie
What it do, I'm posted up in the parking lot, my trunk wavin'
The candy gloss is immaculate, it's simply amazing
Them elbows pokin' wide on that Candy-lac
Trunk open, screens on, neon's lit with 5th relaxed
I'm on a mission for dime pieces and sexy ladies
Allow me to introduce you to my CL Mercedes
It's a star-studded event when I valet park
Open up my mouth and sunlight illuminates the dark
You see them 4's crawlin', you see them screens fallin'
The disco ball in my mouth insinuates I'm ballin'
I'm leanin' on the switch, sittin' crooked in my slab
But I could still catch boppers if I drove a cab
A young Houston hard-hitter all about the scrilla
Ridin' some candy-coated crawlin' like a caterpillar
I'm tippin' on them 4's, I'm jammin' on that Screw
I'm lookin' for them hoes baby, what it do
Drive slow, homie
Turn your hazard lights on when you see them hoes
Drive slow, homie
If you ridin' around the city with nowhere to go
Drive slow, homie
Live today 'cause tomorrow man, you never know
You never know, homie, might meet some hoes, homie
You need to pump your brakes and drive slow, homie
My car's like the movie, my car's like the crib
I got mo' TV's in here than where I live
That don't make no sense, but baby I'm the shit
And everything I flip, you know it's somethin' serious
I got the custom grill, I got the Bravis rims
I got the baller genetics baby this evidence
You see a player flickin' and how you ain't convinced
That you should go on and kiss it, just a lil' bit
I wearin' my custom kicks, I got my Jesus chain
My canary's is gleamin', through my angel wings
They see me, hoes actin' like they seen a king
With that mean lean, smokin' on that finest Cali green
My woodgrain oak, I'm ridin' on Vogues
My cylinder quiet, like tip-toes
I sold O's, and this I know
When you see them hoes, lil' homie drive slow
Yeah, drive slow, homie, drive slow, homie
You never know, homie, might meet some hoes, homie
You need to pump your brakes and drive slow, homie