- published: 12 Dec 2023
- views: 3001159
'+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; })); }); -->
George Riley Puckett (May 7, 1894 – July 13, 1946) was an American country music pioneer mostly known for being a member of Gid Tanner and the Skillet Lickers.
Puckett was born in Dallas, Paulding County, Georgia. An accident during infancy left him blind. He had his formal education at the Georgia School for the Blind in Macon, Georgia.
He sang and played guitar and banjo. He was first heard on the radio as a part of Clayton McMichen's Hometown Band.
His vocalizing was a regular feature at the Georgia Old-Time Fiddlers Conventions. Newspaper reporters covering these events referred to him as the "Bald Mountain Caruso" in admiration of his renditions of such songs as "When You and I Were Young, Maggie" and "Sleep, Baby, Sleep". For several years Puckett played and sang with the Home Town Boys, a string-band ensemble composed of Atlanta-area musicians. They made their debut on Atlanta's six-month-old radio station, WSB, on September 18, 1922. Until going off the air in 1926, they remained one of the station's most popular acts.
A po' boy (also po-boy, po boy, or poor boy) is a traditional submarine sandwich from Louisiana. It almost always consists of meat, which is usually roast beef, fried seafood, chicken, or ham. The meat is served on baguette-like New Orleans French bread, known for its crisp crust and fluffy center.
A key ingredient that differentiates po' boys from other submarine sandwiches is the bread. Typically, the French bread comes in 10 oz (280 g), 32 in (81 cm) long "sticks". Standard sandwich sizes might be a "shorty", measuring 5–7.5 inches (13–19 cm); a quarter po'boy, 8 inches (20 cm); half po'boy, about 16 inches (41 cm); and a full po'boy, at about 32 inches (81 cm) long. The traditional versions are served hot and include fried shrimp and oysters. Soft shell crab, catfish, crawfish, Louisiana hot sausage, fried chicken breast, roast beef, and French fries are other common variations. The last two are served with gravy.
A "dressed" po' boy has lettuce, tomato, pickles, and mayonnaise; onions are optional. Fried seafood poboys are often dressed by default with melted butter and sliced pickle rounds. A Louisiana style hot sauce is optional. Non-seafood po' boys will also usually have mustard; the customer is expected to specify "hot" or "regular"—the former being a coarse-grained Creole mustard and the latter being American yellow mustard.
"Love And Theft" (generally referred to as Love and Theft) is the thirty-first studio album by American singer-songwriter Bob Dylan, released on September 11, 2001 by Columbia Records. It featured backing by his touring band of the time, with keyboardist Augie Meyers added for the sessions. It peaked at #5 on the Billboard 200, and has been certified with a gold album by the RIAA. A limited edition release included two bonus tracks on a separate disc recorded in the early 1960s, and two years later, on September 16, 2003, this album was one of fifteen Dylan titles reissued and remastered for SACD hybrid playback.
The album continued Dylan's artistic comeback following 1997's Time Out of Mind and was given an even more enthusiastic reception. The title of the album was apparently inspired by historian Eric Lott's book Love & Theft: Blackface Minstrelsy and the American Working Class, which was published in 1993. "Love and Theft becomes his Fables of the Reconstruction, to borrow an R.E.M. album title", writes Greg Kot in The Chicago Tribune (published September 11, 2001), "the myths, mysteries and folklore of the South as a backdrop for one of the finest roots rock albums ever made."
“The po’boy’s important to the city of New Orleans because New Orleans made it.” Today Bon Appétit spends the day with Justin Kennedy, general manager of Parkway Bakery and Tavern in New Orleans, preparing to serve the city’s famous poor boy (po’boy) sandwiches. Director: Dan Siegel Director of Photography: Alejandro Moreno Editor: Jamie Gordon Featuring: Justin Kennedy Director of Culinary Production: Kelly Janke Creative Producer: Lisa Paradise Line Producer: Jen McGinity Associate Producer: Oadhan Lynch Project Manager: Janine Dispensa Production Coordinator: Elizabeth Hymes Camera Operator: Calvin Blue Jr Assistant Camera: Valery DaGrain Sound Recordist: Ian Wood Production Assistant: Shari Wilson; Ashley Bush Food Stylist: Kaitlyn Lena Post Production Supervisor: And...
Where can you get the best po'boy in New Orleans? A po'boy is a traditional sandwich from Louisiana consisting of roast beef or fried seafood, always served on crispy, fluffy New Orleans French bread. Insider's Herrine Ro and Alana Yzola are exploring New Orleans in search of the best po'boy, with stops at Parkway Bakery & Tavern, Killer Po'Boys, Johnny's Po-Boys, Domilise's. They order the fried shrimp po'boy at each sandwich, and talk to chefs, owners, locals, and tourists to learn what makes a great po'boy and which spot serves the best one in the city. Parkway: 1:40 Killer Po'Boys: 4:40 Johnny's Po-Boys: 7:06 Domilise's: 10:00 Winner: 13:31 MORE BEST OF THE BEST: The Best Hot Chocolate In London | Best Of The Best https://www.youtube.com/watch?v=L0_xrFtnWv8 The Best Barbecue In Austi...
Chef Isaac Toups is back, this time showing us how to make a classic fried seafood po' boy. The shrimp and oysters are tossed in a mixture of cornmeal and corn flour for a crispy and light batter, and the whole sandwich is dressed in a simple tomato and onion salad. The result is the ultimate Louisiana sandwich. Check out the recipe here: https://www.vice.com/en_us/article/a35eqe/shrimp-and-oyster-poboys-recipeSubscribe to Munchies here: http://bit.ly/Subscribe-to-MUNCHIES All Munchies videos release a full week early on our site: https://video.vice.com/en_us/channel/munchies Hungry? Sign up here for the MUNCHIES Recipes newsletter. https://www.vice.com/en_us/page/sign-up-for-munchies-recipes-newsletter Check out http://munchies.tv for more! Follow Munchies here: Facebook: http://face...
If you’re struggling, consider therapy with BetterHelp #ad. Click https://betterhelp.com/jolly for a 10% discount on your first month of therapy with a credentialed professional specific to your needs. We couldn't come to New Orleans without trying some delicious PoBoys! Check out our latest JOLLY merch at http://getjolly.store Click here to buy Josh's bestselling autobiography! https://amzn.eu/d/73xtwcy Hit join and become a Jollybean member to join us in our members-only livestreams: https://www.youtube.com/jolly/join Special thanks to our Jollybean VIPs for supporting us in making this video! Kyle Ann TIFFANY JACOBS Johnathon Randle Li Winslow Bettie Meier Claim2Game (a.k.a isaiah gollan 20) James Wilson 63angel Florian Adamek Raileigh GJ tralalaladee Vicky Bham Jamedalamus David ...
Get $1.49 per meal with code 49MAKEITHAPPEN at https://bit.ly/43WAD6x! The Shrimp Po Boy is an absolute classic of a sandwich. It's honestly one of my all time favorites.. crispy deep fried shrimp with a fantastic aioli or remoulade between toasted bread is a thing of beauty. Give this recipe a try. lets #makeithappen MY FIRST EVER HARD COVER COOK BOOK IS NOW AVAILABLE! PRE-ORDER YOURS NOW https://bestofbothworldscookbook.com Get my All-Purpose Seasoning and Digital Food Thermometer here https://www.mrmakeithappen.shop CLICK THE "JOIN" BUTTON FOR MEMBERSHIP PERKS! I Host Weekly Virtual Cooking Classes. You can sign up via Patreon here or if you just want to Support The Show: https://www.patreon.com/Mrmakeithappen Don't forget to Subscribe, enable notifications, and give this video ...
Two longtime favorites return as expert chef and chef instructor Frank Proto trades Po' Boy recipes with home cook extraordinaire Lorenzo. We gave Lorenzo $340 worth of ingredients to reproduce Frank's recipe while sending only a modest $25 worth of stuff back the other way. How will Lorenzo's skills measure up to Frank's expert level recipe? Will Frank's "Po' Boy Bites" come together and steal the show? Learn more with Chef Frank on his YouTube Channel ProtoCooks! https://www.youtube.com/channel/UC368WO9e4BWuPYAeSIuaUsg Follow him on Instagram at @protocooks Keep up with Lorenzo on Instagram at @rollinabenzo Still haven’t subscribed to Epicurious on YouTube? ►► http://bit.ly/epiyoutubesub ABOUT EPICURIOUS Browse thousands of recipes and videos from Bon Appétit, Gourmet, a...
Po'Boy Ingredients - Sub rolls - Iceberg lettuce, finely sliced - Tomatoes, sliced - Po’ Boy sauce - Fried shrimp or prawns Method 1. Slice the sub and add the sauce to both sides 2. Next add the lettuce, tomato and the fried prawns/shrimp 3. Enjoy! Ingredients Po’ Boy sauce - 3 tbsp mayonnaise - 1 tsp horseradish - 1 tbsp pickle juice - 1 tsp hot sauce - 1 tsp mustard Ingredients fried shrimp/prawns - Peeled and deveined prawns or shrimp (3-4 per sandwich) - 1 cup cornmeal - 2 eggs, beaten - 1 tbsp milk - 2 tbsp old bay seasoning - Salt to taste - Oil to fy Method 1. Mix the cornmeal, old bay, and some salt and place the prawns/shrimp into the mix and cover well 2. Mix together the milk and eggs and add your prawns/shrimp into it, and then again into the cornmeal mix. 3. Fry at...
How to Make Po'boys like the Best in New Orleans Ingredients: 1 cup Mayonnaise 2 tbsp Dijon Mustard 2 tbsp Dill Pickle Relish 1 tsp Smoked Paprika 1 tsp Creole Seasoning 1-2 tsp prepared Horseradish 2 Garlic cloves, minced ½ to 1 tsp Hot Sauce, adjust to taste Juice of ½ lemon, about 2 tablespoons 1 tsp Worcestershire Sauce ¼ tsp Salt ¼ tsp Black Pepper Shrimp 1 ½ to 2 lbs Raw Shrimp, peeled and deveined with tails off ¾ cup All-Purpose Flour ½ cup Yellow Corn Meal The Level Up A Rub - https://www.smokinandgrillinwitab.com/product/the-level-up-series-a-rub/ ¾ cup Buttermilk 1 Large Egg 1 tbsp Hot Sauce Assembly: 4 French Rolls, split open 2 cups sliced Cabbage or shredded Lettuce 2 large Tomatoes, sliced All Purpose Seasoning: https://www.smokinandgrillinwitab.com/product/all-purpose-...
Kookin With Kina | Topic: “Let it Go” Recipe Grilled Salmon and Shrimp Po’boys
We make the best Shrimp Po'boy around and here's why. Quality is everything with a po'boy— if it's not quality, get it the f*** out of my kitchen. Everything from the bread to the sauce has to be the right texture and flavor to work together and be absolutely delicious. I dare you to try it and not love it. - Chef Mike
George Riley Puckett (May 7, 1894 – July 13, 1946) was an American country music pioneer mostly known for being a member of Gid Tanner and the Skillet Lickers.
Puckett was born in Dallas, Paulding County, Georgia. An accident during infancy left him blind. He had his formal education at the Georgia School for the Blind in Macon, Georgia.
He sang and played guitar and banjo. He was first heard on the radio as a part of Clayton McMichen's Hometown Band.
His vocalizing was a regular feature at the Georgia Old-Time Fiddlers Conventions. Newspaper reporters covering these events referred to him as the "Bald Mountain Caruso" in admiration of his renditions of such songs as "When You and I Were Young, Maggie" and "Sleep, Baby, Sleep". For several years Puckett played and sang with the Home Town Boys, a string-band ensemble composed of Atlanta-area musicians. They made their debut on Atlanta's six-month-old radio station, WSB, on September 18, 1922. Until going off the air in 1926, they remained one of the station's most popular acts.
Man came to the door, I say 'for whom were you lookin'?'
Says 'your wife', I say 'she's busy in the kitchen cookin''
Po' boy, where you been?
Already told you, won't tell you again
I say 'how much you want for that, I'll go into the store'
Man says 'three dollars' 'all right', I say, 'will you take four?'
Po' boy, never say die
Things will be all right, by and by
Workin' like in a main line, workin' like the devil
The game is the same it's just up on another level
Po' boy, dressed in black
Police at your back
Po' boy in a red hot town
Out beyond the twinklin' stars
Ridin' first class train
Makin' the rounds
Try to keep from fallin' between the cars
Othello told Desdemona "I'm cold, cover me with a blanket"
"By the way, what happened to that poisoned wine?"
She said "I gave it to you, you drank it"
Po' boy, layin' 'em straight
Pickin' up the cherries fallin' off the plate
Time and love has branded me with its claws
Had to go to Florida, dodgin' them Georgia laws
Po' boy in the hotel called the Palace of Bloom
Called down to room service, said 'send up a room
My mother was the daughter of a wealthy farmer
My father was a traveling salesman, I never met him
When my mother died my uncle took me in to run a funeral parlor
He did a lot of nice things for me and I won't forget him
All I know is that I'm thrilled by your kiss
I don't know any more than this
Po' boy, pickin' up sticks
Build you a house out of mortar and bricks
Knockin' on the door, I say 'who is it, where you from?'
Man say 'Freddie', I say 'Freddie who?'
He say 'Freddie or not, here I come'
Po' boy 'neath the stars that shine