'+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; })); }); -->

Gold (hieroglyph)

The ancient Egyptian Gold hieroglyph is a member of the crowns, dress, staves hieroglyphs. Its major importance is as one of the Fivefold Titulary names of the Egyptian pharaoh, the Horus of Gold name.

The gold hieroglyph is used as a determinative in the names of precious metals, and as an ideogram in nbw, "gold", ("nbu"). The hieroglyph is an Egyptian language biliteral with the value of nb.

The hieroglyph is a large gold and pearl necklace.Old Kingdom scenes show dwarfs metalworking the gold, and "stringing the pearls of gold".

Iconographic usage

Horus-of-Gold name

The meaning of this particular title has been disputed. One belief is that it represents the triumph of Horus over his uncle Seth, as the symbol for gold can be taken to mean that Horus was "superior to his foes". Gold also was strongly associated in the ancient Egyptian mind with eternity, so this may have been intended to convey the pharaoh's eternal Horus name.

Palermo Stone usage

In the 2392 BC (24th to 23rd century BC) Palermo Stone, one use of the gold hieroglyph is for the "first counting of gold". The sign is used for more than one year-event record.

Come Sail Away – The Styx Anthology

Come Sail Away – The Styx Anthology is a musical album by Styx, released on May 4, 2004. It is a compilation consisting of two compact discs and contains a thorough history of the band. The album encompasses many of the band's most popular and significant songs, ranging from the band's first single from their self-titled album, "Best Thing," through the song "One with Everything," a track included on Styx's most recent album at the time of release, Cyclorama.

The most notable omission from the compilation is "Don't Let It End," Dennis DeYoung's top-ten single from their 1983 album, Kilroy Was Here.

This is the only Styx compilation album to date to combine the original versions of songs from the band's early Wooden Nickel albums with their later material. Their Wooden Nickel breakout hit "Lady" was included on the 1995 Greatest Hits collection, but as a note-for-note re-recording, labelled "Lady '95." As such, this is the first truly career-spanning collection for the band ever compiled.

Sir Sly

Sir Sly is an American indie pop band, formerly known as "The Royal Sons", formed and based in Los Angeles, California, United States. The band is fronted by vocalist Landon Jacobs with instrumentalists Jason Suwito and Hayden Coplen accompanying him. While they originally operated together under the band name "The Royal Sons", the trio gradually built a steady following and managed to top The Hype Machine chart, eventually revealing their identities. Their original band gathered over $13,000 in a Kickstarter campaign, released an album, and then split up. Now they have come together under the new band name of "Sir Sly"

Their debut single, "Ghost", was released on March 4, 2013, on the National Anthem and Neon Gold labels followed by the single "Gold" on May 21, 2013. "Gold" peaked at No. 30 on the Billboard Alternative Songs chart and No. 45 on the Rock Airplay chart. "Gold" is also featured in the video game, MLB 14: The Show.

They gained international fame after the Assassin's Creed IV: Black Flag accolade trailer was released in which their song "Gold" was used.

Gold (2015 film)

Gold. is a German experimental short documentary film directed by Alexander Tuschinski. It intercuts abandoned 19th century gold-mining towns in the desert with sequoia trees in a forest. The film had its world premiere at Mykonos Biennale on July 3, 2015, where it was screened in competition and received the Biennale's Golden Pelican Award by Lydia Venieri. It had its German premiere at Berlin Short Film Festival on July 4, 2015.

Production

The film is set to the fourth movement of Beethoven's seventh symphony, which has been called "Apotheosis of Dance" by Richard Wagner. The director's intention was to intercut nature and human structures to show nature overtaking. It was filmed with a tight schedule and the crew travelled long distances in a short amount of time to get many different shots needed. Tuschinski edited the film from six hours of material from "countless camera-angles", as most shots are shown only very briefly due to the often rapid editing. Planning the film, he was inspired by the early works of his friend and mentor Hugo Niebeling that connect cinematoraphy and music in a very direct way.

Podcasts:

  • Come Sail Away: The Styx Anthology Commercial (2004)

    Come Sail Away: The Styx Anthology is owned by Razor & Tie. I do not own this commercial.

    published: 22 Sep 2024
  • Styx - Come Sail Away

    Music video by Styx performing Come Sail Away. YouTube view counts pre-VEVO: 1,893,702. (C) 1977 A&M Records

    published: 26 Dec 2009
  • Come Sail Away

    Provided to YouTube by Universal Music Group Come Sail Away · Styx Greatest Hits ℗ 1977 A&M Records Released on: 1995-01-01 Producer, Associated Performer, Recording Arranger: Styx Associated Performer, Keyboards, Vocalist, Synthesizer: Dennis DeYoung Associated Performer, Electric Guitar, Guitar, Synthesizer, Vocalist: Tommy Shaw Associated Performer, Vocalist, Guitar: James Oliver "Trummy" Young Associated Performer, Bass Guitar, Orchestra/ Member, Vocalist: Chuck Panozzo Associated Performer, Drums, Percussion, Vocalist: John Panozzo Composer Lyricist: Dennis DeYoung Auto-generated by YouTube.

    published: 24 Jul 2018
  • Styx - Come Sail Away

    Styx - Come Sail Away - The Styx Anthology Disc 1 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various

    published: 18 Aug 2024
  • Styx - Come Sail Away (Lyrics)

    Please visit my other channel guys. Thank You! https://www.youtube.com/channel/UC5gT8thrgiMVp7CXY7M7kOw Title: Come Sail Away Artist: Styx Album: The Grand Illusion Year: 1977 Lyrics: I'm sailing away Set an open course for the virgin sea 'Cause I've got to be free Free to face the life that's ahead of me On board, I'm the captain So climb aboard We'll search for tomorrow On every shore And I'll try, oh Lord, I'll try To carry on I look to the sea Reflections in the waves spark my memory Some happy, some sad I think of childhood friends and the dreams we had We lived happily forever So the story goes But somehow we missed out On the pot of gold But we'll try best that we can To carry on A gathering of angels Appeared above my head They sang to me this song of hope And this is what t...

    published: 18 Jul 2023
  • Styx - Prelude 12

    Styx - Come Sail Away - The Styx Anthology Disc 1 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various

    published: 18 Aug 2024
  • Styx - A.D. 1928

    Styx - Come Sail Away - The Styx Anthology Disc 2 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various

    published: 18 Aug 2024
  • Styx - Come Sail Away - Renegades & Juke Box Heroes Tour 2024 - Raleigh NC 8/21/2024 @styxtheband

    Styx - Come Sail Away - Renegades & Juke Box Heroes Tour 2024 - Raleigh NC 8/21/2024 Coastal Credit Union Music Park #Styx @styxtheband See the full Styx concert Playlist Raleigh NC 8/21/2024 here: https://www.youtube.com/playlist?list=PLs9ktFltq2NT4M3x4tRufg_4b9sVgFKnI 1) The Grand Illusion 2) Too Much Time on My Hands 3) Lady 4) Lorelei 5) Crash of the Crown 6) Miss America 7) Band Introductions 8) Rockin' the Paradise 9) Blue Collar Man (Long Nights) 10) The Best of Times 11) Fooling Yourself (The Angry Young Man) 12) Come Sail Away 13) Mr. Roboto 14) Renegade Website https://styxworld.com/ Facebook https://www.facebook.com/styxtheband X / Twitter https://x.com/STYXtheband YouTube https://www.youtube.com/styxtheband Instagram https://www.instagram.com/styxtheband/ Bandsintown...

    published: 01 Sep 2024
  • Styx - Winner Take All

    Styx - Come Sail Away - The Styx Anthology Disc 1 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various

    published: 18 Aug 2024
  • Styx - Light Up

    Styx - Come Sail Away - The Styx Anthology Disc 1 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various

    published: 18 Aug 2024
  • Styx - Dear John

    Styx - Come Sail Away - The Styx Anthology Disc 2 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various

    published: 18 Aug 2024
  • Styx - The Best of Times

    Styx - Come Sail Away - The Styx Anthology Disc 2 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various

    published: 18 Aug 2024
  • Styx - Boat on the River

    Styx - Come Sail Away - The Styx Anthology Disc 2 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various

    published: 18 Aug 2024
developed with YouTube
Come Sail Away: The Styx Anthology Commercial (2004)
1:00

Come Sail Away: The Styx Anthology Commercial (2004)

  • Order:
  • Duration: 1:00
  • Uploaded Date: 22 Sep 2024
  • views: 62
Come Sail Away: The Styx Anthology is owned by Razor & Tie. I do not own this commercial.
https://wn.com/Come_Sail_Away_The_Styx_Anthology_Commercial_(2004)
Styx - Come Sail Away
4:29

Styx - Come Sail Away

  • Order:
  • Duration: 4:29
  • Uploaded Date: 26 Dec 2009
  • views: 33063354
Music video by Styx performing Come Sail Away. YouTube view counts pre-VEVO: 1,893,702. (C) 1977 A&M Records
https://wn.com/Styx_Come_Sail_Away
Come Sail Away
6:06

Come Sail Away

  • Order:
  • Duration: 6:06
  • Uploaded Date: 24 Jul 2018
  • views: 6772758
Provided to YouTube by Universal Music Group Come Sail Away · Styx Greatest Hits ℗ 1977 A&M Records Released on: 1995-01-01 Producer, Associated Performer, Recording Arranger: Styx Associated Performer, Keyboards, Vocalist, Synthesizer: Dennis DeYoung Associated Performer, Electric Guitar, Guitar, Synthesizer, Vocalist: Tommy Shaw Associated Performer, Vocalist, Guitar: James Oliver "Trummy" Young Associated Performer, Bass Guitar, Orchestra/ Member, Vocalist: Chuck Panozzo Associated Performer, Drums, Percussion, Vocalist: John Panozzo Composer Lyricist: Dennis DeYoung Auto-generated by YouTube.
https://wn.com/Come_Sail_Away
Styx - Come Sail Away
6:06

Styx - Come Sail Away

  • Order:
  • Duration: 6:06
  • Uploaded Date: 18 Aug 2024
  • views: 14
Styx - Come Sail Away - The Styx Anthology Disc 1 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various
https://wn.com/Styx_Come_Sail_Away
Styx - Come Sail Away (Lyrics)
6:06

Styx - Come Sail Away (Lyrics)

  • Order:
  • Duration: 6:06
  • Uploaded Date: 18 Jul 2023
  • views: 144042
Please visit my other channel guys. Thank You! https://www.youtube.com/channel/UC5gT8thrgiMVp7CXY7M7kOw Title: Come Sail Away Artist: Styx Album: The Grand Illusion Year: 1977 Lyrics: I'm sailing away Set an open course for the virgin sea 'Cause I've got to be free Free to face the life that's ahead of me On board, I'm the captain So climb aboard We'll search for tomorrow On every shore And I'll try, oh Lord, I'll try To carry on I look to the sea Reflections in the waves spark my memory Some happy, some sad I think of childhood friends and the dreams we had We lived happily forever So the story goes But somehow we missed out On the pot of gold But we'll try best that we can To carry on A gathering of angels Appeared above my head They sang to me this song of hope And this is what they said, they said Come sail away, come sail away, come sail away with me, lads Come sail away, come sail away, come sail away with me Come sail away, come sail away, come sail away with me, baby Come sail away, come sail away, come sail away with me I thought that they were angels But to my surprise We climbed aboard their starship We headed for the skies, singing Come sail away, come sail away, come sail away with me, lads Come sail away, come sail away, come sail away with me Come sail away, come sail away, come sail away with me Come sail away, come sail away, come sail away with me Come sail away, come sail away, come sail away with me Come sail away, come sail away, come sail away with me Come sail away, come sail away, come sail away with me Come sail away, come sail away, come sail away with me Come sail away, come sail away, come sail away with me Come sail away, come sail away, come sail away with me #ComeSailAway #Styx #Lyrics #AllMixed #LyricsVideo #ComeSailAwayLyrics #StyxLyrics #ComeSailAwayStyx #ComeSailAwayStyxLyrics #StyxComeSailAway #StyxComeSailAwayLyrics #TheGrandIllusion #DennisDeyoung
https://wn.com/Styx_Come_Sail_Away_(Lyrics)
Styx - Prelude 12
1:21

Styx - Prelude 12

  • Order:
  • Duration: 1:21
  • Uploaded Date: 18 Aug 2024
  • views: 1
Styx - Come Sail Away - The Styx Anthology Disc 1 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various
https://wn.com/Styx_Prelude_12
Styx - A.D. 1928
1:08

Styx - A.D. 1928

  • Order:
  • Duration: 1:08
  • Uploaded Date: 18 Aug 2024
  • views: 8
Styx - Come Sail Away - The Styx Anthology Disc 2 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various
https://wn.com/Styx_A.D._1928
Styx - Come Sail Away - Renegades & Juke Box Heroes Tour 2024 - Raleigh NC 8/21/2024  @styxtheband
8:55

Styx - Come Sail Away - Renegades & Juke Box Heroes Tour 2024 - Raleigh NC 8/21/2024 @styxtheband

  • Order:
  • Duration: 8:55
  • Uploaded Date: 01 Sep 2024
  • views: 26
Styx - Come Sail Away - Renegades & Juke Box Heroes Tour 2024 - Raleigh NC 8/21/2024 Coastal Credit Union Music Park #Styx @styxtheband See the full Styx concert Playlist Raleigh NC 8/21/2024 here: https://www.youtube.com/playlist?list=PLs9ktFltq2NT4M3x4tRufg_4b9sVgFKnI 1) The Grand Illusion 2) Too Much Time on My Hands 3) Lady 4) Lorelei 5) Crash of the Crown 6) Miss America 7) Band Introductions 8) Rockin' the Paradise 9) Blue Collar Man (Long Nights) 10) The Best of Times 11) Fooling Yourself (The Angry Young Man) 12) Come Sail Away 13) Mr. Roboto 14) Renegade Website https://styxworld.com/ Facebook https://www.facebook.com/styxtheband X / Twitter https://x.com/STYXtheband YouTube https://www.youtube.com/styxtheband Instagram https://www.instagram.com/styxtheband/ Bandsintown bandsintown.com/Styx?came_from=234 #Styx #Vevo @styxtheband #styxtheband #StyxandForeignerRenegadesandJukeBoxHeroesTour2024 #Renegades #Jukeboxhero #tour2024 #RenegadesandJukeBoxHeroTour #Foreigner #Foreignerlive @foreignerlive #walnutcreek,#raleigh,#RaleighEvents,#concert,#concerts,#livenation,#music,#livemusic,#coastalcredituion,#coastalcreditunionmusicpark,#Styx #Vevo,@styxtheband,#styxtheband,#StyxandForeignerRenegadesandJukeBoxHeroesTour2024,#Renegades,#Jukeboxhero,#tour2024,#RenegadesandJukeBoxHeroTour,#rockconcert,#Rockmusic,#Rock , #comesailaway
https://wn.com/Styx_Come_Sail_Away_Renegades_Juke_Box_Heroes_Tour_2024_Raleigh_Nc_8_21_2024_Styxtheband
Styx - Winner Take All
3:05

Styx - Winner Take All

  • Order:
  • Duration: 3:05
  • Uploaded Date: 18 Aug 2024
  • views: 8
Styx - Come Sail Away - The Styx Anthology Disc 1 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various
https://wn.com/Styx_Winner_Take_All
Styx - Light Up
4:21

Styx - Light Up

  • Order:
  • Duration: 4:21
  • Uploaded Date: 18 Aug 2024
  • views: 8
Styx - Come Sail Away - The Styx Anthology Disc 1 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various
https://wn.com/Styx_Light_Up
Styx - Dear John
3:04

Styx - Dear John

  • Order:
  • Duration: 3:04
  • Uploaded Date: 18 Aug 2024
  • views: 12
Styx - Come Sail Away - The Styx Anthology Disc 2 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various
https://wn.com/Styx_Dear_John
Styx - The Best of Times
4:19

Styx - The Best of Times

  • Order:
  • Duration: 4:19
  • Uploaded Date: 18 Aug 2024
  • views: 3
Styx - Come Sail Away - The Styx Anthology Disc 2 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various
https://wn.com/Styx_The_Best_Of_Times
Styx - Boat on the River
3:12

Styx - Boat on the River

  • Order:
  • Duration: 3:12
  • Uploaded Date: 18 Aug 2024
  • views: 4
Styx - Come Sail Away - The Styx Anthology Disc 2 Released May 4, 2004 Recorded 1972–1997, 2003 Genre Rock Length 149:55 Label A&M Producer Various
https://wn.com/Styx_Boat_On_The_River
  • Sir Sly - High (Official Video)

    http://smarturl.it/SirSlyTour Hi! “High” is out now! http://smarturl.it/HighSirSly Director: Kevin Clark DP: Ben Mullen EP: Jeff Kopchia Producer: Tiffany Suh Prod: Freenjoy Commissioner: Chris Clavadetscher Production Design: Clayton Beisner Brain Squad: Amanda Yamashita / Michael Mauriello Styling: Yazz Alali Choreographer: Heather Coates VFX: Tanner Merrill Music video by Sir Sly performing High. (C) 2017 Interscope Records http://vevo.ly/qkqMAP #SirSly #High #Vevo #Alternative #Indie #OfficialMusicVideo

    published: 19 Apr 2017
  • Sir Sly - &Run (Official Video)

    http://smarturl.it/SirSlyTour "&Run" off of Sir Sly's album Don't You Worry Honey is available now! http://smarturl.it/DYWHSirSly Music video by Sir Sly performing &Run. (C) 2017 Interscope Records #SirSly #andRun #Vevo #Alternative #Indie #OfficialMusicVideo #&Run

    published: 07 Dec 2017
  • Sir Sly - Astronaut

    http://smarturl.it/SirSlyTour "Astronaut" is out now! http://smarturl.it/AstronautSS Music video by Sir Sly performing Astronaut. (C) 2017 Interscope Records http://vevo.ly/kCeP1M

    published: 16 Jun 2017
  • Sir Sly - High (Audio)

    Listen to the official audio for "High" performed by Sir Sly http://smarturl.it/SirSlyTour Sir Sly “High” is available now: http://smarturl.it/HighSirSly Music video by Sir Sly performing High. (C) 2017 Interscope Records http://vevo.ly/uPrXSm #SirSly #High #Vevo #Alternative #Indie #OfficialAudio

    published: 24 Mar 2017
  • Fun

    Provided to YouTube by Universal Music Group Fun · Sir Sly Don't You Worry, Honey ℗ 2017 Interscope Records Released on: 2017-06-30 Producer: Jason Suwito Producer, Additional Producer: Landon Jacobs Producer, Additional Producer: Hayden Coplen Composer Lyricist: Landon Jacobs Composer Lyricist: Jason Suwito Composer Lyricist: Hayden Coplen Composer Lyricist: Andrew Robert Hernandez Auto-generated by YouTube.

    published: 11 Oct 2018
  • Sir Sly - Gold

    http://smarturl.it/SirSlyTour Music video by Sir Sly performing Gold. (C) 2013 Interscope Records https://www.facebook.com/#!/sirslymusic https://soundcloud.com/#sirsly https://twitter.com/SirSly http://sir-sly.com/ https://itunes.apple.com/us/artist/sir-sly/id592569057 FREE DOWNLOAD of Sir Sly - "Miracle": http://smarturl.it/SirSlyMiracle?IQid=youtube Director: Elis Bahl Video Producer: Jeremy Hill

    published: 23 Oct 2013
  • Sir Sly - Material Boy

    Listen to "Material Boy," out now: https://smarturl.it/MaterialBoy Director — Kevin Clark Executive Producer — Ryland Burns Production Co — Stink Films & Burning Film Line Producer — Brendan Garrett Cinematographer — Adrian Nieto Production Designer — Rudy Grazziani Editor — Kevin Clark Colorist — Kath Raisch Commissioner — Shannon Leskowitz Label — Interscope Records Follow Sir Sly: Instagram: https://www.instagram.com/sirsly/ Facebook: https://www.facebook.com/sirslymusic/ Twitter: https://twitter.com/SirSly/

    published: 28 Sep 2020
  • Sir Sly - &Run (Audio)

    Listen to the official audio for "&Run" performed by Sir Sly Music video by Sir Sly performing &Run. (C) 2017 Interscope Records http://vevo.ly/1Y2vBg #SirSly #andRun #Vevo #Alternative #Indie #OfficialAudio

    published: 30 Jun 2017
  • Sir Sly - Ghost

    Debut Album You Haunt Me available now. Download on iTunes: http://smarturl.it/YouHauntMe Vinyl available now. Includes a free digital download of the entire album: http://smarturl.it/YouHauntMeVinyl

    published: 05 Jan 2013
  • Sir Sly - Welcomes The Pressure (Official Video)

    Listen to our new album "The Rise & Fall of Loverboy", out now: https://smarturl.it/LoverboySirSly Limited shirts from the video available here: https://store.sir-sly.com Follow Sir Sly: Instagram: https://www.instagram.com/sirsly/ Facebook: https://www.facebook.com/sirslymusic/ Twitter: https://twitter.com/SirSly/ #SirSly #WelcomesThePressure #TheRiseandFallofLoverboy

    published: 01 Jul 2021
  • Sir Sly - You Haunt Me

    Buy on iTunes: http://smarturl.it/YouHauntMe?IQid=YHMvid Buy on Google Play: http://smarturl.it/YouHauntMeGP?IQid=YHMvid Buy on Amazon: http://smarturl.it/YouHauntMeAmz?IQid=YHMvid http://sir-sly.com/ http://www.facebook.com/sirslymusic http://twitter.com/sirsly http://instagram.com/sirsly http://smarturl.it/SirSlyTour Music video by Sir Sly performing You Haunt Me. (C) 2014 Interscope Records

    published: 12 Sep 2014
  • Sir Sly - Where I'm Going

    Debut Album You Haunt Me available now. Download on iTunes: http://smarturl.it/YouHauntMe Vinyl available now. Includes a free digital download of the entire album: http://smarturl.it/YouHauntMeVinyl

    published: 14 Jan 2013
  • Sir Sly - Little Deaths (Official Video)

    Listen to our new album "The Rise & Fall of Loverboy", out now: https://smarturl.it/LoverboySirSly Directed by Josh Beck, Produced by Josh Beck Follow Sir Sly: Instagram: https://www.instagram.com/sirsly/ Facebook: https://www.facebook.com/sirslymusic/ Twitter: https://twitter.com/SirSly/ TikTok: https://tiktok.com/@sirsly

    published: 17 Dec 2020
  • Too Far Gone

    Provided to YouTube by Universal Music Group Too Far Gone · Sir Sly You Haunt Me ℗ 2014 Interscope Records Released on: 2014-09-16 Producer: Landon Jacobs Producer: Jason Suwito Producer: Hayden Coplen Composer Lyricist: Landon Jacobs Composer Lyricist: Jason Suwito Composer Lyricist: Hayden Coplen Auto-generated by YouTube.

    published: 11 Oct 2018
developed with YouTube
Sir Sly - High (Official Video)
3:55

Sir Sly - High (Official Video)

  • Order:
  • Duration: 3:55
  • Uploaded Date: 19 Apr 2017
  • views: 18104699
http://smarturl.it/SirSlyTour Hi! “High” is out now! http://smarturl.it/HighSirSly Director: Kevin Clark DP: Ben Mullen EP: Jeff Kopchia Producer: Tiffany Suh Prod: Freenjoy Commissioner: Chris Clavadetscher Production Design: Clayton Beisner Brain Squad: Amanda Yamashita / Michael Mauriello Styling: Yazz Alali Choreographer: Heather Coates VFX: Tanner Merrill Music video by Sir Sly performing High. (C) 2017 Interscope Records http://vevo.ly/qkqMAP #SirSly #High #Vevo #Alternative #Indie #OfficialMusicVideo
https://wn.com/Sir_Sly_High_(Official_Video)
Sir Sly - &Run (Official Video)
3:53

Sir Sly - &Run (Official Video)

  • Order:
  • Duration: 3:53
  • Uploaded Date: 07 Dec 2017
  • views: 10977879
http://smarturl.it/SirSlyTour "&Run" off of Sir Sly's album Don't You Worry Honey is available now! http://smarturl.it/DYWHSirSly Music video by Sir Sly performing &Run. (C) 2017 Interscope Records #SirSly #andRun #Vevo #Alternative #Indie #OfficialMusicVideo #&Run
https://wn.com/Sir_Sly_Run_(Official_Video)
Sir Sly - Astronaut
3:45

Sir Sly - Astronaut

  • Order:
  • Duration: 3:45
  • Uploaded Date: 16 Jun 2017
  • views: 1733920
http://smarturl.it/SirSlyTour "Astronaut" is out now! http://smarturl.it/AstronautSS Music video by Sir Sly performing Astronaut. (C) 2017 Interscope Records http://vevo.ly/kCeP1M
https://wn.com/Sir_Sly_Astronaut
Sir Sly - High (Audio)
3:52

Sir Sly - High (Audio)

  • Order:
  • Duration: 3:52
  • Uploaded Date: 24 Mar 2017
  • views: 2454179
Listen to the official audio for "High" performed by Sir Sly http://smarturl.it/SirSlyTour Sir Sly “High” is available now: http://smarturl.it/HighSirSly Music video by Sir Sly performing High. (C) 2017 Interscope Records http://vevo.ly/uPrXSm #SirSly #High #Vevo #Alternative #Indie #OfficialAudio
https://wn.com/Sir_Sly_High_(Audio)
Fun
3:53

Fun

  • Order:
  • Duration: 3:53
  • Uploaded Date: 11 Oct 2018
  • views: 972664
Provided to YouTube by Universal Music Group Fun · Sir Sly Don't You Worry, Honey ℗ 2017 Interscope Records Released on: 2017-06-30 Producer: Jason Suwito Producer, Additional Producer: Landon Jacobs Producer, Additional Producer: Hayden Coplen Composer Lyricist: Landon Jacobs Composer Lyricist: Jason Suwito Composer Lyricist: Hayden Coplen Composer Lyricist: Andrew Robert Hernandez Auto-generated by YouTube.
https://wn.com/Fun
Sir Sly - Gold
3:49

Sir Sly - Gold

  • Order:
  • Duration: 3:49
  • Uploaded Date: 23 Oct 2013
  • views: 2778047
http://smarturl.it/SirSlyTour Music video by Sir Sly performing Gold. (C) 2013 Interscope Records https://www.facebook.com/#!/sirslymusic https://soundcloud.com/#sirsly https://twitter.com/SirSly http://sir-sly.com/ https://itunes.apple.com/us/artist/sir-sly/id592569057 FREE DOWNLOAD of Sir Sly - "Miracle": http://smarturl.it/SirSlyMiracle?IQid=youtube Director: Elis Bahl Video Producer: Jeremy Hill
https://wn.com/Sir_Sly_Gold
Sir Sly - Material Boy
4:44

Sir Sly - Material Boy

  • Order:
  • Duration: 4:44
  • Uploaded Date: 28 Sep 2020
  • views: 484270
Listen to "Material Boy," out now: https://smarturl.it/MaterialBoy Director — Kevin Clark Executive Producer — Ryland Burns Production Co — Stink Films & Burning Film Line Producer — Brendan Garrett Cinematographer — Adrian Nieto Production Designer — Rudy Grazziani Editor — Kevin Clark Colorist — Kath Raisch Commissioner — Shannon Leskowitz Label — Interscope Records Follow Sir Sly: Instagram: https://www.instagram.com/sirsly/ Facebook: https://www.facebook.com/sirslymusic/ Twitter: https://twitter.com/SirSly/
https://wn.com/Sir_Sly_Material_Boy
Sir Sly - &Run (Audio)
3:46

Sir Sly - &Run (Audio)

  • Order:
  • Duration: 3:46
  • Uploaded Date: 30 Jun 2017
  • views: 3925441
Listen to the official audio for "&Run" performed by Sir Sly Music video by Sir Sly performing &Run. (C) 2017 Interscope Records http://vevo.ly/1Y2vBg #SirSly #andRun #Vevo #Alternative #Indie #OfficialAudio
https://wn.com/Sir_Sly_Run_(Audio)
Sir Sly - Ghost
3:47

Sir Sly - Ghost

  • Order:
  • Duration: 3:47
  • Uploaded Date: 05 Jan 2013
  • views: 1699400
Debut Album You Haunt Me available now. Download on iTunes: http://smarturl.it/YouHauntMe Vinyl available now. Includes a free digital download of the entire album: http://smarturl.it/YouHauntMeVinyl
https://wn.com/Sir_Sly_Ghost
Sir Sly - Welcomes The Pressure (Official Video)
3:18

Sir Sly - Welcomes The Pressure (Official Video)

  • Order:
  • Duration: 3:18
  • Uploaded Date: 01 Jul 2021
  • views: 268708
Listen to our new album "The Rise & Fall of Loverboy", out now: https://smarturl.it/LoverboySirSly Limited shirts from the video available here: https://store.sir-sly.com Follow Sir Sly: Instagram: https://www.instagram.com/sirsly/ Facebook: https://www.facebook.com/sirslymusic/ Twitter: https://twitter.com/SirSly/ #SirSly #WelcomesThePressure #TheRiseandFallofLoverboy
https://wn.com/Sir_Sly_Welcomes_The_Pressure_(Official_Video)
Sir Sly - You Haunt Me
3:42

Sir Sly - You Haunt Me

  • Order:
  • Duration: 3:42
  • Uploaded Date: 12 Sep 2014
  • views: 1343767
Buy on iTunes: http://smarturl.it/YouHauntMe?IQid=YHMvid Buy on Google Play: http://smarturl.it/YouHauntMeGP?IQid=YHMvid Buy on Amazon: http://smarturl.it/YouHauntMeAmz?IQid=YHMvid http://sir-sly.com/ http://www.facebook.com/sirslymusic http://twitter.com/sirsly http://instagram.com/sirsly http://smarturl.it/SirSlyTour Music video by Sir Sly performing You Haunt Me. (C) 2014 Interscope Records
https://wn.com/Sir_Sly_You_Haunt_Me
Sir Sly - Where I'm Going
3:27

Sir Sly - Where I'm Going

  • Order:
  • Duration: 3:27
  • Uploaded Date: 14 Jan 2013
  • views: 857929
Debut Album You Haunt Me available now. Download on iTunes: http://smarturl.it/YouHauntMe Vinyl available now. Includes a free digital download of the entire album: http://smarturl.it/YouHauntMeVinyl
https://wn.com/Sir_Sly_Where_I'm_Going
Sir Sly - Little Deaths (Official Video)
4:11

Sir Sly - Little Deaths (Official Video)

  • Order:
  • Duration: 4:11
  • Uploaded Date: 17 Dec 2020
  • views: 141051
Listen to our new album "The Rise & Fall of Loverboy", out now: https://smarturl.it/LoverboySirSly Directed by Josh Beck, Produced by Josh Beck Follow Sir Sly: Instagram: https://www.instagram.com/sirsly/ Facebook: https://www.facebook.com/sirslymusic/ Twitter: https://twitter.com/SirSly/ TikTok: https://tiktok.com/@sirsly
https://wn.com/Sir_Sly_Little_Deaths_(Official_Video)
Too Far Gone
3:27

Too Far Gone

  • Order:
  • Duration: 3:27
  • Uploaded Date: 11 Oct 2018
  • views: 493288
Provided to YouTube by Universal Music Group Too Far Gone · Sir Sly You Haunt Me ℗ 2014 Interscope Records Released on: 2014-09-16 Producer: Landon Jacobs Producer: Jason Suwito Producer: Hayden Coplen Composer Lyricist: Landon Jacobs Composer Lyricist: Jason Suwito Composer Lyricist: Hayden Coplen Auto-generated by YouTube.
https://wn.com/Too_Far_Gone
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

Come Sail Away: The Styx Anthology Commercial (2004)

Come Sail Away: The Styx Anthology is owned by Razor & Tie. I do not own this commercial.
1:00
Come Sail Away: The Styx Anthology Commercial (2004)
Come Sail Away: The Styx Anthology is owned by Razor & Tie. I do not own this commercial.
published: 22 Sep 2024
Play in Full Screen
4:29
Styx - Come Sail Away
Music video by Styx performing Come Sail Away. YouTube view counts pre-VEVO: 1,893,702. (C...
published: 26 Dec 2009
Play in Full Screen
6:06
Come Sail Away
Provided to YouTube by Universal Music Group Come Sail Away · Styx Greatest Hits ℗ 1977...
published: 24 Jul 2018
Play in Full Screen
6:06
Styx - Come Sail Away
Styx - Come Sail Away - The Styx Anthology Disc 1 Released May 4, 2004 Recorded 1972–1...
published: 18 Aug 2024
Play in Full Screen
6:06
Styx - Come Sail Away (Lyrics)
Please visit my other channel guys. Thank You! https://www.youtube.com/channel/UC5gT8thrgi...
published: 18 Jul 2023
Play in Full Screen
1:21
Styx - Prelude 12
Styx - Come Sail Away - The Styx Anthology Disc 1 Released May 4, 2004 Recorded 1972–1...
published: 18 Aug 2024
Play in Full Screen
1:08
Styx - A.D. 1928
Styx - Come Sail Away - The Styx Anthology Disc 2 Released May 4, 2004 Recorded 1972–1...
published: 18 Aug 2024
Play in Full Screen
8:55
Styx - Come Sail Away - Renegades & Juke Box Heroes Tour 2024 - Raleigh NC 8/21/2024 @styxtheband
Styx - Come Sail Away - Renegades & Juke Box Heroes Tour 2024 - Raleigh NC 8/21/2024 Coast...
published: 01 Sep 2024
Play in Full Screen
3:05
Styx - Winner Take All
Styx - Come Sail Away - The Styx Anthology Disc 1 Released May 4, 2004 Recorded 1972–1...
published: 18 Aug 2024
Play in Full Screen
4:21
Styx - Light Up
Styx - Come Sail Away - The Styx Anthology Disc 1 Released May 4, 2004 Recorded 1972–1...
published: 18 Aug 2024
Play in Full Screen
3:04
Styx - Dear John
Styx - Come Sail Away - The Styx Anthology Disc 2 Released May 4, 2004 Recorded 1972–1...
published: 18 Aug 2024
Play in Full Screen
4:19
Styx - The Best of Times
Styx - Come Sail Away - The Styx Anthology Disc 2 Released May 4, 2004 Recorded 1972–1...
published: 18 Aug 2024
Play in Full Screen
3:12
Styx - Boat on the River
Styx - Come Sail Away - The Styx Anthology Disc 2 Released May 4, 2004 Recorded 1972–1...
published: 18 Aug 2024
Play in Full Screen

Gold (hieroglyph)

The ancient Egyptian Gold hieroglyph is a member of the crowns, dress, staves hieroglyphs. Its major importance is as one of the Fivefold Titulary names of the Egyptian pharaoh, the Horus of Gold name.

The gold hieroglyph is used as a determinative in the names of precious metals, and as an ideogram in nbw, "gold", ("nbu"). The hieroglyph is an Egyptian language biliteral with the value of nb.

The hieroglyph is a large gold and pearl necklace.Old Kingdom scenes show dwarfs metalworking the gold, and "stringing the pearls of gold".

Iconographic usage

Horus-of-Gold name

The meaning of this particular title has been disputed. One belief is that it represents the triumph of Horus over his uncle Seth, as the symbol for gold can be taken to mean that Horus was "superior to his foes". Gold also was strongly associated in the ancient Egyptian mind with eternity, so this may have been intended to convey the pharaoh's eternal Horus name.

Palermo Stone usage

In the 2392 BC (24th to 23rd century BC) Palermo Stone, one use of the gold hieroglyph is for the "first counting of gold". The sign is used for more than one year-event record.

  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

Sir Sly - High (Official Video)

http://smarturl.it/SirSlyTour Hi! “High” is out now! http://smarturl.it/HighSirSly Director: Kevin Clark DP: Ben Mullen EP: Jeff Kopchia Producer: Tiffany Suh Prod: Freenjoy Commissioner: Chris Clavadetscher Production Design: Clayton Beisner Brain Squad: Amanda Yamashita / Michael Mauriello Styling: Yazz Alali Choreographer: Heather Coates VFX: Tanner Merrill Music video by Sir Sly performing High. (C) 2017 Interscope Records http://vevo.ly/qkqMAP #SirSly #High #Vevo #Alternative #Indie #OfficialMusicVideo
3:55
Sir Sly - High (Official Video)
http://smarturl.it/SirSlyTour Hi! “High” is out now! http://smarturl.it/HighSirSly Dire...
published: 19 Apr 2017
Play in Full Screen
3:53
Sir Sly - &Run (Official Video)
http://smarturl.it/SirSlyTour "&Run" off of Sir Sly's album Don't You Worry Honey is avai...
published: 07 Dec 2017
Play in Full Screen
3:45
Sir Sly - Astronaut
http://smarturl.it/SirSlyTour "Astronaut" is out now! http://smarturl.it/AstronautSS M...
published: 16 Jun 2017
Play in Full Screen
3:52
Sir Sly - High (Audio)
Listen to the official audio for "High" performed by Sir Sly http://smarturl.it/SirSlyTou...
published: 24 Mar 2017
Play in Full Screen
3:53
Fun
Provided to YouTube by Universal Music Group Fun · Sir Sly Don't You Worry, Honey ℗ 201...
published: 11 Oct 2018
Play in Full Screen
3:49
Sir Sly - Gold
http://smarturl.it/SirSlyTour Music video by Sir Sly performing Gold. (C) 2013 Interscope...
published: 23 Oct 2013
Play in Full Screen
4:44
Sir Sly - Material Boy
Listen to "Material Boy," out now: https://smarturl.it/MaterialBoy Director — Kevin Clark...
published: 28 Sep 2020
Play in Full Screen
3:46
Sir Sly - &Run (Audio)
Listen to the official audio for "&Run" performed by Sir Sly Music video by Sir Sly perfo...
published: 30 Jun 2017
Play in Full Screen
3:47
Sir Sly - Ghost
Debut Album You Haunt Me available now. Download on iTunes: http://smarturl.it/YouHauntMe ...
published: 05 Jan 2013
Play in Full Screen
3:18
Sir Sly - Welcomes The Pressure (Official Video)
Listen to our new album "The Rise & Fall of Loverboy", out now: https://smarturl.it/Loverb...
published: 01 Jul 2021
Play in Full Screen
3:42
Sir Sly - You Haunt Me
Buy on iTunes: http://smarturl.it/YouHauntMe?IQid=YHMvid Buy on Google Play: http://smartu...
published: 12 Sep 2014
Play in Full Screen
3:27
Sir Sly - Where I'm Going
Debut Album You Haunt Me available now. Download on iTunes: http://smarturl.it/YouHauntMe ...
published: 14 Jan 2013
Play in Full Screen
4:11
Sir Sly - Little Deaths (Official Video)
Listen to our new album "The Rise & Fall of Loverboy", out now: https://smarturl.it/Loverb...
published: 17 Dec 2020
Play in Full Screen
3:27
Too Far Gone
Provided to YouTube by Universal Music Group Too Far Gone · Sir Sly You Haunt Me ℗ 2014...
published: 11 Oct 2018
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: gold (hieroglyph)

Edit

Qatar ‘strengthens status as luxury destination with DJWE’

Gulf-Times 09 Jan 2025
... hieroglyphics and majestic symbols crafted in 18K gold.She lauded the event as it offers an amazing display of luxury, featuring some of the most prestigious jewellery and watch brands worldwide.
Edit

Hieroglyph Gold Chosen As Symbol Of 2024 In Japan

MENA FN 13 Dec 2024
(MENAFN - AzerNews). By Alimat Aliyeva The hieroglyph "kin" ("gold") has been chosen as the symbol for the outgoing year 2024 in Japan, according to Azernews reports. Solemn ceremony ... .
Edit

Black Label Collective creates a space of its own in West Duluth

Duluth News Tribune 07 Oct 2024
24 ... 1 ... 59th Ave ... The textured walls of Davis’ room give the feeling of entering a cave with gold and silver replicas of hieroglyphics from France — opposite more modern cultural symbols from "The Lord of the Rings" — merging both past and present.
Edit

Dynamics of gold as precious metal

B & FT Online 25 Jun 2024
Gold comes in varieties ... Pure gold is noted for its unique features ... The map depicted the plan of a gold mine; the first gold jewellery was seen during this period; and Egyptian hieroglyphs described gold as being more in terms of quantity than dirt.
Edit

What can shipwrecks tell us? New book says pretty much everything

Republican American 30 Apr 2024
... as well as, from Egypt, “a gold scarab with hieroglyphics that secures a date for the wreck in the final quarter of the 14th century B.C., at the very apex of Bronze Age civilization.”.
Edit

A chance to sharpen your knowledge of Japanese swords

Asahi News 01 Feb 2024
Many of them are national treasures ... Its silver-plated sheath painted with gold and also the hilt of the sword are written with what appear to be the “kao” hieroglyphic signatures of the Ashikaga family ... .
Edit

Ramses exhibition to continue in Germany from July 2024 to January 2025

Egypt Independent 19 Jan 2024
Egypt has approved extending the “Ramses and the Gold of the Pharaohs” exhibition tour to Cologne, Germany, from July 13, 2024 to January 6, 2025 ... The “Ramses and the Gold of the ...
Edit

How Museums Acquire Antiquities Is Changing

New York Observer 09 Jan 2024
In 2019, the Metropolitan Museum of Art returned to Egypt a 2,000-year-old wooden coffin with gold casings carrying hieroglyphic inscriptions and embedded with black crystal, ivory and lapis lazuli ...
Edit

The Egyptian Beer Recipe Is the Oldest In the World (Video)

Ancient Origins 15 Dec 2023
Amidst the grandeur of Egyptian history lies an enduring legacy—the art of brewing beer. Hieroglyphs within Pharaohs' chambers unveil a civilization sustained by this liquid gold ... Top image ... Source. Journal of Anthropological Archaeology ... &nbsp;. .
Edit

There’s a Dead Cat That You Really Should See

The Epoch Times 27 Nov 2023
Hold on to your hieroglyphics, because there’s a rather peculiar feline affair unfolding at the Ramses and the Gold ...
Edit

The Archaeologist Who "Found" Ancient Egyptian Hieroglyphs In The Grand Canyon

IFL Science 22 Jun 2023
There are, in certain corners of the Internet, people out there who believe that the Smithsonian Museum are covering up evidence that Ancient Egyptians came over to the Grand Canyon, leaving hieroglyphs and mummies hidden for thousands of years.
Edit

Archaeologists discover RARE and possibly the OLDEST gold-covered Egyptian mummy

Natural News 03 Feb 2023
... discovered what could possibly be the oldest gold-coverered Egyptian mummy.
Edit

“Green coffin” repatriated in Egypt from US

Watani 03 Jan 2023
It is of exceptional size, more than three metres long, and is made of wood covered with hieroglyphic inscriptions ... The over three-metre-long wooden relic is decorated with columns of hieroglyphic texts coloured in gold ... Watani International ... ....
Edit

Egypt recovers ‘Green Coffin’ and other relics from US museum

La Prensa Latina 02 Jan 2023
The minister said Egyptian authorities recovered more than 5,000 antiquities in 2021 ... The coffin’s lid is made of carved wood and decorated with columns of hieroglyphic texts in gold and the portrait of the priest’s face is painted in emerald green.
Edit

Cache Of Gold Jewelry Found In Ancient Egyptian "Heretic" Burial

IFL Science 16 Dec 2022
Proving once again that nobody in the ancient world got blinged up quite like the Egyptians, an archeological dig in the Eighteenth Dynasty necropolis of Tell El-Amarna has turned up a treasure trove of ornate gold jewelry.

Most Viewed

×