- published: 08 Jan 2022
- views: 1549021
'+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; })); }); -->
Benjamin Franklin (January 17, 1706 [O.S. January 6, 1705] – April 17, 1790) was one of the Founding Fathers of the United States. A renowned polymath, Franklin was a leading author, printer, political theorist, politician, freemason, postmaster, scientist, inventor, civic activist, statesman, and diplomat. As a scientist, he was a major figure in the American Enlightenment and the history of physics for his discoveries and theories regarding electricity. As an inventor, he is known for the lightning rod, bifocals, and the Franklin stove, among other inventions. He facilitated many civic organizations, including Philadelphia's fire department and a university.
Franklin earned the title of "The First American" for his early and indefatigable campaigning for colonial unity, first as an author and spokesman in London for several colonies. As the first United States Ambassador to France, he exemplified the emerging American nation. Franklin was foundational in defining the American ethos as a marriage of the practical values of thrift, hard work, education, community spirit, self-governing institutions, and opposition to authoritarianism both political and religious, with the scientific and tolerant values of the Enlightenment. In the words of historian Henry Steele Commager, "In a Franklin could be merged the virtues of Puritanism without its defects, the illumination of the Enlightenment without its heat." To Walter Isaacson, this makes Franklin "the most accomplished American of his age and the most influential in inventing the type of society America would become."
Benjamin Franklin (1706–1790) was an American statesman, writer, scientist, inventor and printer.
Benjamin Franklin or Ben Franklin may also refer to:
Benjamin Franklin is a bronze sculpture of a seated Franklin by John J. Boyle at the University of Pennsylvania in Philadelphia, Pennsylvania. It is located in front of College Hall, on Locust Walk, between 34th and 36th Streets, and is one of three statues of Franklin on the campus.
It was commissioned by department store founder Justus C. Strawbridge in 1896, as a gift to the City of Philadelphia. It was cast by the Henry-Bonnard Bronze Company of New York, and installed in 1899 in front of Philadelphia's Main Post Office, at 9th and Chestnut Streets.Benjamin Franklin was the first United States Postmaster General. The granite pedestal was designed by architect Frank Miles Day. Its inscription quotes President George Washington's eulogy of Franklin:
1706-1790
VENERATED
FOR BENEVOLENCE
ADMIRED FOR TALENTS
ESTEEMED FOR PATRIOTISM
BELOVED FOR
PHILANTHROPY
(On back of pedestal):
(On back of statue):
HENRY-BONNARD BRONZE CO FOUNDERS NY 1899
A signed Founder's mark also appears on the back of the statue.
The Other Side is the first EP album from Kate Voegele. She subtly blends a combination of pop, folk and indie music together with her voice, adding to the styles of music in her album.
The Other Side is a studio release by black metal band Alastis. It was released in 1997 on Century Media.
The Other Side is a children's picture book written by Jacqueline Woodson and illustrated by E. B. Lewis, published in 2001 by G. P. Putnam's Sons.
The narrator and protagonist of the story is Clover, a young African-American girl. She lives beside a fence which segregates her town. Her mother instructs her never to climb over to the other side. Then one summer, she notices a white girl on the other side of the fence. The girl seems to be very lonely and is even outside when it is raining.
Clover decides to talk to the girl on the other side of the fence. Both girls are not allowed to cross the fence, so they simply decide to sit on the fence together. First, Clover's friends will not let Annie, the girl from the other side, play with them but then all of the girls realize that the fence (a symbol for segregation) should not be there.
Benjamin Franklin is a 1974 American television miniseries that chronicles the life of Benjamin Franklin. It was broadcast by CBS and won the Emmy Award for Outstanding Limited Series.
Claim your SPECIAL OFFER for MagellanTV here: https://try.magellantv.com/peopleprofiles Start your free trial TODAY so you can watch The Pilgrims: Journey into the unknown about the Pilgrim’s journey to the New World and the rest of MagellanTV’s history collection: https://www.magellantv.com/video/the-pilgrims-journey-into-the-unknown For early access to our videos, discounted merch and many other exclusive perks please support us as a Patron or Member... Patreon: http://www.patreon.com/thepeopleprofiles Buy me a Coffee: https://www.buymeacoffee.com/peopleprofiles YouTube Membership: https://www.youtube.com/channel/UCD6TPU-PvTMvqgzC_AM7_uA/join or follow us on Twitter! https://twitter.com/tpprofiles Please support our friends The History Chronicles https://www.youtube.com/thehistorychr...
How much do you know about this famous historical figure from U.S. history? In this video, you will learn about his life growing up and his achievements as a politician and inventor. For instance, did you know he was the 15th of 17 children? And he stopped going to school at 10 years old. He spent the rest of his life learning on his own. Something many people know about him is that he used to write letters about current events that he submitted to a newspaper that his brother owned. He used a pseudonym, or fake name—Mrs. Silence Dogood. Eventually, he ran his own newspaper called the Pennsylvania Gazette. This became one of the most successful newspaper in the 13 colonies! Benjamin Franklin was the only American to sign all four of the major documents involved in the founding of the Uni...
A Benjamin Franklin documentary released by PBS in 2002 in High Quality.
In his 1791 autobiography, Ben Franklin laid out his daily routine. Let's go through it, see what's useful, and also highlight what's missing. My book "10 Steps to Earning Awesome Grades" is completely free, so check it out if you're interested in improving your grades! http://collegeinfogeek.com/get-better-grades/ See the full daily schedule: https://collegeinfogeek.com/wp-content/uploads/2017/07/ben-franklin-schedule.jpg Ben Franklin's autobiography: http://www.gutenberg.org/files/20203/20203-h/20203-h.htm ---------- Videos you might want to watch next: How to Be Lazy and Still Get a Ton of Work Done - https://www.youtube.com/watch?v=TkraRj8uAYQ&t=105s&list=PLx65qkgCWNJIS5Y_CcxifKHjQKf7iqVv5 How to Wake Up Early - https://www.youtube.com/watch?v=6XFAYNQIM3Q&t=24s&list=PLx65qkg...
Benjamin Franklin was one of America's founding fathers as well as a scientist, statesman, author, printer, activist, postmaster, and diplomat. He is renowned for his discoveries and theories on electricity and is credited with inventing swimming fins, bifocals, the lightning rod, a flexible catheter, and many other inventions we use today. Franklin was born in 1706, and was a middle child. His parents, who were soap and candle makers, could not afford to send him to school longer than two years so, by the age of 10, young Benjamin began working alongside his father. By the age of 12, he had became his brother James's apprentice at a printing shop. Franklin did not let his lack of access to a formal education prevent him from becoming one of America's most influential and famous figures....
The 3 Minute History of Benjamin Franklin - Innovative History. Franklin was the oldest founding father of the United States of America. He was a scientist who discovered electricity, an ambassador, inventor, and key player during the American Revolution.
Electricity is a type of energy that consists of the movement of electrons between two points when there is a potential difference between them, making it possible to generate what is known as an electric current. #electicity #discoveries #electriccurrent #benjaminfranklin #voltaic Make sure you watch the whole video to know all the answers to your curious questions! Leave your ideas, suggestions and questions for Dr. Binocs at this Email Id: [email protected] For more fun learning videos SUBSCRIBE to Peekaboo Kidz: http://bit.ly/SubscribeTo-Peekabookidz Credits - Copyrights and Publishing: Rajshri Entertainment Private Limited All rights reserved. Catch Dr.Binocs At - https://goo.gl/SXhLmc Invention Of BULB - https://youtu.be/XWWgDn0C6DA To Watch More Popular ...
Keep Three Things Hidden From Your Family | Benjamin Franklin Quotes: Lessons on Life and Success. Benjamin Franklin (1706-1790) was a polymath and Founding Father of the United States. He was a leading figure in the ... Enlightenment and played a key role in drafting the United States Constitution and Declaration of Independence. He was a scientist, writer, printer, and statesman, known for his curiosity, wit, and innovative ideas. His experiments with electricity led to the invention of bifocal glasses and the lightning rod. He was a strong advocate for education, democracy, and individual liberty, and his legacy continues to inspire Americans to this day. #benjaminfranklin #benjaminfranklinquotes #lifelessons #spokengold #motivation #quotes --------- Contact information:........ ...
What if I told you Benjamin Franklin cheated death with a kite? In the next few seconds, you'll learn about a lesser-known story of Franklin's life.It was a stormy night in 1752.Franklin flew a kite with a key attached to it. He wasn't just playing in the rain.He was conducting a dangerous experiment.This led to his discovery of electricity.But there's a twist! The story of him being struck by lightning is a myth. In reality, he tested his theories cautiously. Yet, his boldness paved the way for many scientific advancements. His curiosity changed the world.Imagine the courage it took. Would you dare to fly that kite? Hit the like button if you found this story fascinating! #franklin #americanpresident #americanstory #americanhistory #america
Check out Brilliant: https://brilliant.org/Biographics/ We made a mistake in the video. The American Revolutionary War dates should be: Started: April 19, 1775 Won: September 3, 1783. We apologize for this error. →Subscribe for new videos four times per week. https://www.youtube.com/c/biographics?sub_confirmation=1 Visit our companion website for more: http://biographics.org This video is sponsored by Brilliant Credits: Host - Simon Whistler Author - Shannon Quinn Producer - Jennifer Da Silva Executive Producer - Shell Harris Business inquiries to [email protected] Other Biographics Videos: Bernie Madoff: The Greatest Con in History https://youtu.be/E3hceCMoTQY Nikita Khrushchev – The Man Behind the Missile Crisis https://youtu.be/gjGLD8bx7Qo Source/Further reading: ...
Benjamin Franklin (January 17, 1706 [O.S. January 6, 1705] – April 17, 1790) was one of the Founding Fathers of the United States. A renowned polymath, Franklin was a leading author, printer, political theorist, politician, freemason, postmaster, scientist, inventor, civic activist, statesman, and diplomat. As a scientist, he was a major figure in the American Enlightenment and the history of physics for his discoveries and theories regarding electricity. As an inventor, he is known for the lightning rod, bifocals, and the Franklin stove, among other inventions. He facilitated many civic organizations, including Philadelphia's fire department and a university.
Franklin earned the title of "The First American" for his early and indefatigable campaigning for colonial unity, first as an author and spokesman in London for several colonies. As the first United States Ambassador to France, he exemplified the emerging American nation. Franklin was foundational in defining the American ethos as a marriage of the practical values of thrift, hard work, education, community spirit, self-governing institutions, and opposition to authoritarianism both political and religious, with the scientific and tolerant values of the Enlightenment. In the words of historian Henry Steele Commager, "In a Franklin could be merged the virtues of Puritanism without its defects, the illumination of the Enlightenment without its heat." To Walter Isaacson, this makes Franklin "the most accomplished American of his age and the most influential in inventing the type of society America would become."
Baby come back
[Verse 1: Black Thought]
Yo, we obviously need to tone it down a bit
Running round town spending time like it's counterfeit
Everybody catching hay fever like sinuses
Step in my arena let me show y'all who the highness is
You might say I could be doing something positive
Humbled head down low and broke like promises
Soaking and broken in a joke like comics is
Not enough paper to be paying folks compliments
But when that paper got low so did my tolerance
And it ain't no truth in a dare without the consequence
Listen if it not for these hood inventions
Id just be another kid from the block with no intentions
On the dock of that bay serving a life sentence
Even if I'm going to hell I'm gonna make an entrance
Yeah let em know I'm getting cheese like omelets is
But I'm the toast of the town like Thomas is
[Hook: Bilal]
We're all on a journey
Down the hall of memories
Don't worry bout what you ain't got
Leave with a little bit of dignity
Never loved what I had
Always felt like I deserved more
But when I
Make it to the other side
Make it to the other side
That's when we'll settle up the score
[Verse 2: Black Thought]
Yo, we did this in remembrance of
Faces from the past
We no longer have an image of
Carrying cold blood hearts
That never been for love
Brothers keep going for theirs but never get enough
World travelers that seen it all
And did enough
Only to return to learn
The world wasn't big enough
Damn, how long has it been?
I guess the jig is up
Now all I know is I'm about to wake this n*gga up
Yeah that hindsight 20/20 now n*ggas dead on the money
Trying to take something from me
It's a wrap like mummy
Undone I am becoming and,
When he's tired of running
Through the layers of the onion
He'll probably shed a tear
Cause they'll be no more fast times
Just his weak mind scrolled out like a bad sign
He never had enough and got confused when they asked why
Life is only a moment in time and it passed by
[Hook: Bilal]
We're all on a journey
Down the hall of memories
Don't worry bout what you ain't got
Leave with a little bit of dignity
Never loved what I had
Always felt like I deserved more
But when I
Make it to the other side
Make it to the other side
That's when we'll settle up the score
[Verse 3: Greg Porn]
I'm sitting on top of the world ready to jump off
Thinking of various ways to break law
Thinking that enough is enough but still I want more
Thinking of how I'm playing with fire that burned my young boy
By any means necessary, don't give a damn
So every night I'm on a flight that never lands
Be an asshole when the shit hits the fan
Or bet your life on a bluff and a bad hand
Can't win, can't lose
Get 'em gassed leave em leaking fuel
Either way the market moves
Cash rules kings, queens, prince and princess
Every night I'm crossing a line that ain't the finish
Every thought is dark as a glass of f*cking Guinness
Too far gone to come back to my senses
Now I'm on the edge of my bed making love to my meds
Every moments like a pistol to my head
When I'm getting mine
[Hook: Bilal]
We're all on a journey
Down the hall of memories
Don't worry bout what you ain't got
Leave with a little bit of dignity
Never loved what I had
Always felt like I deserved more
But when I
Make it to the other side
Make it to the other side