- published: 09 Jun 2023
- views: 183484
'+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 Southern Star is the newspaper of Ozark, Alabama and one of the oldest newspapers in the Wiregrass region. It is a weekly publication and new editions are delivered every Wednesday.
The newspaper was founded in 1867 by Joseph A. Adams, a former Confederate soldier with no journalism experience, and it still owned by his descendants.
Southern Star may refer to:
The Southern Star (French title: L'Étoile du sud) is a Technicolor 1969 British-French comedy crime film directed by Sidney Hayers and starring George Segal, Ursula Andress and Orson Welles. In French West Africa in 1912, an extremely valuable diamond is stolen. It was based on the novel The Vanished Diamond (French title L'Étoile du sud) by Jules Verne. The film's opening scenes were anonymously directed by Orson Welles - the last time he would direct scenes in another director's film.
Fortune hunter Dan Rockland (George Segal) comes to West Africa pretending to be a geologist. He is actually employed by Kramer (Harry Andrews), whose business is diamonds, and when Kramer's workers discover a huge uncut gem, Rockland is sent to retrieve it.
He and his African guide Matakit (Johnny Sekka) have opposition to contend with, first from Capt. Karl Ludwig (Ian Hendry), who is Kramer's security chief, and another is the diabolical Plankett (Orson Welles), who resents Rockland's interest in a woman named Erica (Ursula Andress).
The Vanished Diamond, also translated as The Southern Star (French: L'Étoile du sud, lit. The Star of the South) is a novel by Jules Verne, first published in 1884.
It is based on a manuscript by Paschal Grousset.
This novel takes place in South Africa amongst the diamond fields in the district of Griquland. Most of the land is owned by a fictitious wealthy miner, Mr. John Watkins. A shanty town filled with miners has sprung up, all with the hope to get rich. The main area of diamond mining is the Vandergaart Kopje.
The protagonist is a French mining engineer, Victor Cyprien (in the original French version: Cyprien Méré). He moves to the Griquland district to study the formation of diamonds. While he is there he falls in love with wealthy landowner Mr. John Watkins' daughter, Alice. He asks him for her hand in marriage but is denied on his lack of money and stature in the community. He decides that he could amass a fortune by mining with a partner, Thomas Steel. They buy a mining claim and proceed to dig. Victor hires a team of Africans to mine the claim. The claim collapses when Victor's team of hired help is digging. He manages to rescue one of them, Mataki. Achieving no great finds, Victor is disheartened for there are many more eligible suitors than he.
Alabama is a southern state in the United States.
Alabama may also refer to:
Alabama is a Gloucester fishing schooner that was built in 1926 and served as the pilot boat for Mobile, Alabama. The Alabama's home port is Vineyard Haven Harbor, Martha's Vineyard, Massachusetts. The Alabama is owned by The Black Dog Tall Ships, along with the Shenandoah, and offers cruises of Nantucket Sound.
The schooner Alabama was one of the last vessels built from the design of one of the most notable designers of Gloucester Fishing Schooners, Thomas F. McManus. Commissioned by the Mobile Bar Pilot Association of Mobile, Alabama, the vessel was built in Pensacola, Florida, launched in 1926, and originally called Alabamian until her predecessor the Bar Pilot Association's original Alabama was retired. Though the hull bore strong resemblance of McMannus' famous Gloucester fishing schooner designs, it served as a pilot boat stationed on the Mobile Bar until 1966.
In 1967 the schooner was bought by Captain Robert S. Douglas, master and designer of the Shenandoah, and moved to Vineyard Haven. There she sat on a mooring with minimal necessary upkeep until 1994. In the early nineties with a dwindling market for windjammer cruises which leave out most modern amenities kids became the new direction for the Coastwise Packet Company - the original name for what is now also The Black Dog Tall Ships. Because of the success of these "Kids Cruises" on board the Shenandoah, Alabama was to be rebuilt by the Five Corners Shipbuilding Company headed by Gary Maynard a former First Mate that sailed on the Shenandoah. Most of the work was done in Vineyard Haven with the vessel afloat on her mooring using Captain Douglas' own power tools and shop space. Any other work was done in Fairhaven, Massachusetts at D.N. Kelly's Shipyard.
Harvest is the fourth album by the Canadian musician Neil Young, released on February 14, 1972 on Reprise Records, catalogue MS 2032. It featured the London Symphony Orchestra on two tracks and vocals by noted guests David Crosby, Graham Nash, Linda Ronstadt, Stephen Stills, and James Taylor. It topped the Billboard 200 album chart for two weeks, and spawned two hit singles, "Old Man", which peaked at #31 on the Billboard Hot 100, and "Heart of Gold", which reached #1. It was the best-selling album of 1972 in the United States.
After the members of Crosby, Stills, Nash & Young went their separate ways in 1970, Young recruited a group of country session musicians (which he christened The Stray Gators) and recorded a country rock record, Harvest. The record was a massive hit, producing a US number one single in "Heart of Gold". Other songs returned to some usual Young themes: "Alabama" was "an unblushing rehash of 'Southern Man'"; and "The Needle and the Damage Done" was a lament for great artists who had died of heroin addiction. The former song was also at least partially responsible (along with the aforementioned "Southern Man") for the creation of Lynyrd Skynyrd's 1973 hit "Sweet Home Alabama"; Young later wrote of "Alabama" in his autobiography Waging Heavy Peace, saying it "richly deserved the shot Lynyrd Skynyrd gave me with their great record. I don't like my words when I listen to it. They are accusatory and condescending, not fully thought out, and too easy to misconstrue." "Words (Between the Lines of Age)", the last song on the album, featured a lengthy guitar workout with the band. It has a typical Neil Young structure consisting of four chords during the multiple improvised solos. The song is notable for alternating between a standard 4/4 time signature for verses and choruses and an unusual 11(3+3+3+2)/8 for interludes.
Brent Cobb - Southern Star (Official Music Video) Listen to "Southern Star" from Brent's upcoming album: https://orcd.co/southernstar Directed by Jace Kartye Follow Brent Cobb: https://www.facebook.com/BrentCobbMusic https://twitter.com/brent_cobb https://www.instagram.com/brent_cobb http://brentcobbmusic.com Lyrics: Under the southern star I heal all of my scars As cicadas sing ain't it the sweetest dream Winding kudzu vines untangle up my mind How beloved is my home sweet home I've been a drifter down most highways I've been lost at sea There's one thing this world could never take from me No matter how far I go No matter how deep the dark I know I can always count on the southern star How do I define all those good ole times Way on way back when Rowdy and full of friends Bitter...
Directed by: Bryan Dos Reis (bdosreis.com) Sound by: Joshua Cohen Video Performance by: Gregory Alan Isakov Jeb Bows Philip Parker Steve Varney John Paul Grigsby Max Barcelow "Southern Star" (from the new record, Evening Machines) is available now: http://smarturl.it/eveningmachines https://gregoryalanisakov.com
track 03 from 'evening machines' https://gregoryalanisakov.bandcamp.com/album/evening-machines https://gregoryalanisakov.merchtable.com/ https://gregoryalanisakov.com/ https://www.facebook.com/gregoryalanisakov/ https://open.spotify.com/artist/5sXaGoRLSpd7VeyZrLkKwt?si=CGzJgqKcQZuZmmhWQ7Hriw lyrics: O my drunken southern star how you tried to hide in darkness slipped from orbit now you’re dangerously close come out, come out from all your hiding out we’ll dig in our heels salute the battlefields where our broken hearts were born and the storm clouds are thirsty i can see them bursting, watch them gathering light and the walls in the bedroom now are pounding out were we broken open baby, maybe just a crack swore i heard you whisper that you preferred us like that my broken open child w...
Provided to YouTube by Entertainment One U.S., LP Southern Star · Gregory Alan Isakov Evening Machines ℗ 2018 Suitcase Town Music under exclusive license to Dualtone Music Group, a division of MNRK Records Released on: 2018-10-05 Auto-generated by YouTube.
#1 country hit in 1990. From the album Southern Star (RCA). Written by Rich Alves, Steve Dean and Roger Murrah.
Provided to YouTube by BMG Special Products Southern Star · Alabama Southern Star ℗ 1988 Sony Music Entertainment Released on: 1988-06-03 Composer, Lyricist: Roger Murrah Composer, Lyricist: Steve Dean Composer, Lyricist: Rich Alves Producer: Barry Beckett Auto-generated by YouTube.
AC-130J Ghostrider gunship firing in Chile during Exercise SOUTHERN STAR Follow us on: https://twitter.com/TimesArchives Credit Sgt William Chockey, MSgt Cody Ramirez #AC130J #ghostrider #gunship
South Africa native who as a child moved to the U.S. is now a fiercely independent, DIY musician based in Boulder, CO. Influenced by Leonard Cohen and Bruce Springsteen, Isakov strikes that “balance of space and instrumentation,” with lush flourishes—twirling strings, a loping banjo, ghostly pedal steel, solid yet restrained percussion. Precise, poignant and even devastating lyrics encourage a close listen and contemplation. Taped deep within the subterranean amphitheater of The Caverns in Tennessee's majestic Cumberland Mountains, Bluegrass Underground is a musical adventure series showcasing a broad spectrum of music from the heart of the American experience. Season IX's featured artists include the Nitty Gritty Dirt Band, Amanda Shires, Keb' Mo', Josh Ritter, Lucero, Brothers Osborne,...
Full show! Only missing San Luis from the beginning, sorry 🫠 If anyone wants single song clips, leave me a comment. I’m happy to share via google drive. TRACK LIST Before the Sun 0:29 Dark, Dark, Dark 4:00 Southern Star 7:20 The Fall 10:34 Mistakes 14:15 Watchman 18:30 Chemicals 21:35 Liars 25:01 Miles to go 32:55 Big Black Car 36:36 One Day 42:47 Master & a Hound 46:57 Apaloosa bones 50:39 Caves 54:46 {Encore} Amsterdam 1:00:12 The Stable Song 1:03:50 Feed Your Horses 1:09:24
Provided to YouTube by Columbia Nashville Legacy Southern Star · David Allan Coe Crazy Daddy ℗ 1989 Sony Music Entertainment Released on: 1989-01-01 Mastering Engineer: M.C. Rather Composer: R. Murrah Mastering Engineer: Hollis Flatt Composer: S. Dean Composer: R. Alves Auto-generated by YouTube.
The Southern Star is the newspaper of Ozark, Alabama and one of the oldest newspapers in the Wiregrass region. It is a weekly publication and new editions are delivered every Wednesday.
The newspaper was founded in 1867 by Joseph A. Adams, a former Confederate soldier with no journalism experience, and it still owned by his descendants.