- published: 01 Aug 2020
- views: 3759658
'+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; })); }); -->
Tobias Enhus is a Swedish music composer living in the US. His work has appeared in films, such as Black Hawk Down. He has also created music for television commercials, including the haunting score (featuring female operatic singing) heard in a 2006 commercial for Mercedes-Benz S-Class vehicles (shown during PBS sponsor-appreciation segments). More recently, Enhus composed the majority of the track to The Matrix: Path of Neo, collaborating with other artists, such as Juno Reactor, Mark Killian, Todd Haberman and Rob Bennett, as well as composing the score for the Spider-Man 3 video game. Enhus has also composed for Machine Head. He also provided a track for Mondo Sex Head, a 2012 remix album by Rob Zombie.
Dante's Inferno is a 2010 action-adventure video game developed by Visceral Games and published by Electronic Arts for the Xbox 360 and PlayStation 3 consoles. The game was also released on the PlayStation Portable and was developed by Artificial Mind and Movement. The story is based on Inferno, the first canticle of Dante Alighieri's Divine Comedy, and shares many similarities with the poem. The game includes damned found in appropriate circles of hell and various other monsters from the poem. The game follows the exploits of Dante (reimagined as a Templar Knight) as he journeys through the nine circles of Hell to reclaim the soul of his beloved Beatrice from the hands of Lucifer.
Dante's Inferno is an action-adventure game. The player controls Dante, the game's protagonist, and engages in fast-paced combat, platforming and environment-based puzzles. In the game, Dante's primary weapon is Death's scythe that can be used in a series of combination attacks and finishing moves. His secondary weapon is a Holy Cross that fires a volley of energy as a projectile attack. In addition, Dante can use numerous magic based attacks and abilities channeled from a mana pool to help in combat, many of which are obtained as the game progresses. A quick time event system is used when attempting to discharge the demon of its master and during boss fights, where players must press the highlighted button on screen in order to continue the chain of attacks, or be countered and wounded otherwise.
Inferno (pronounced [imˈfɛrno]; Italian for "Hell") is the first part of Dante Alighieri's 14th-century epic poem Divine Comedy. It is followed by Purgatorio and Paradiso. It is an allegory telling of the journey of Dante through Hell, guided by the Roman poet Virgil. In the poem, Hell is depicted as nine circles of suffering located within the Earth. Allegorically, the Divine Comedy represents the journey of the soul toward God, with the Inferno describing the recognition and rejection of sin.
The poem starts on Maundy Thursday in the year 1300. The narrator, Dante himself, is thirty-five years old, and thus "halfway along our life's path" (Nel mezzo del cammin di nostra vita) – half of the Biblical lifespan of seventy (Psalm 89:10, Vulgate; Psalm 90:10, KJV). The poet finds himself lost in a dark wood (selva oscura) in front of a mountain, assailed by three beasts (a lion, a lonza [usually rendered as "leopard" or "leopon"], and a she-wolf) he cannot evade. Unable to find the "straight way" (diritta via, also translatable as "right way") to salvation, he is conscious that he is ruining himself and falling into a "deep place" (basso loco) where the sun is silent (l sol tace).
Inferno (Italian for "Hell") is the first part of Dante Alighieri's 14th-century epic poem Divine Comedy.
Dante's Inferno may also refer to:
Dante's is a nightclub and live music venue in Portland, Oregon, United States, that opened in February 2000. Since opening, the club has hosted numerous internationally-famous bands, solo-acts, troupes and performance artists.
Many now-famous performers honed their acts at Dante's including the "lounge-core/mash-up" band Storm & The Balls featuring Storm Large. The band had a regular Wednesday night show at the club for nearly five years. In addition, the SuicideGirls Burlesque Troupe and The Porcelain Twinz neo-burlesque act both performed regularly at Dante's well-known Sunday night "Sinferno Cabaret."
Dante's is popular locally, and has received numerous "people's choice" awards, such as Best Live Music from AOL.com, "Favorite House of Rock" from Willamette Week, and "Best Live Music Venue" from Portland Citysearch.com. Dante's located in downtown Portland near Old Town and is housed in one of Portland's many historic buildings.
Dante's opened in February 2000 by Frank Faillace, and is currently owned and managed by Frank Faillace and Paul S. Park.
Signup for your FREE trial to The Great Courses Plus here: http://ow.ly/D0Vw30qZrJe Today we take a look at the first part of the Divine Comedy... Dante's inferno. If you have enjoyed this video, please leave a like as it helps a lot. ►CHECK OUT THE PODCAST►https://podcasts.apple.com/podcast/mythology-fiction-explained/id1502765577 ►Listen on Spotfiy► https://open.spotify.com/show/0Iv0gj7bPz3Gi4TTvmM44Y ►Megaphone►https://cms.megaphone.fm/channel/MFF5263838626 ►BUY OUR NOVEL HERE►https://www.amazon.com/Greek-Mythology-Explained-Deeper-Classical/dp/1633538966/ ►SUBSCRIBE FOR MORE VIDEOS! ►►► https://goo.gl/j5qJPy ►CHECK OUT THE CHANNEL MERCH! ►► https://goo.gl/mcdDhJ FOR MORE VIDEOS CHECK OUT MY PLAYLISTS! ►COMPLETE PLAYLIST! ►► ►https://goo.gl/PNtLZT ►GREEK MYTHOLOGY PLAYLIST! ►►►h...
Explore Dante Alighieri’s epic poem, “Divine Comedy,” a 3-part narrative that follows Dante’s journey for salvation through Hell. -- “Abandon all hope, ye who enter here…” Inscribed above the Gate of Hell, this prophecy sets into motion an epic journey for salvation. Written over 10 years, Dante Alighieri’s three-part narrative poem “Divine Comedy” is both an allegorical imagining of the soul’s journey towards God and a scathing political commentary. Sheila Maria Orfano shares its timeless themes of love, sin and redemption. Lesson by Sheila Marie Orfano, directed by Tomás Pichardo-Espaillat. Animator's website: http://bit.ly/TomaticoNet Sign up for our newsletter: http://bit.ly/TEDEdNewsletter Support us on Patreon: http://bit.ly/TEDEdPatreon Follow us on Facebook: http://bit.ly/TEDEd...
Video sponsored by Ridge Wallet. Check them out here: https://ridge.com/WENDIGOON Use code “WENDIGOON” for 10% off your order Dante's Inferno OG Text: https://www.fulltextarchive.com/pdfs/Dante-s-Inferno.pdf Spark Note Guide (the analysis parts are kinda dumb but the Canto summary helps understand the original text): https://www.litcharts.com/lit/inferno/summary Once again, the illustrations are that of the late & great Gustave Dore Timestamps Dante Alighieri - 00:00 The Beginning - 7:16 Layer 1 - 14:53 Layer 2 - 19:17 Layer 3 - 22:10 Layer 4 - 26:18 Layer 5 - 27:53 Layer 6 - 33:18 Layer 7 - 40:15 Layer 8 - 55:53 Layer 9 - 1:15:03 Conclusions - 1:27:13 Thank you all so much for watching and please let me know what you think! My Links Gaming Channel/Wendigames: https:...
BREAKING NEWS: Overly Sarcastic Productions has a twitter now! Check it out: https://www.twitter.com/OSPyoutube/ PURGATORIO (part 2 of the Divine Comedy) HERE: http://youtu.be/8-ImAfevCOM I'm back, baby! For this week's venture into literature, we take a broad look at The Inferno. Hold onto your butts. PATREON: www.patreon.com/user?u=4664797 MERCH LINKS: Shirts - https://overlysarcasticproducts.threadless.com/designs All the other stuff - http://www.cafepress.com/OverlySarcasticProducts Find us on Twitter @OSPYouTube!
Dante's Inferno Gameplay Walkthrough PS3 Xbox 360 emulating the PS5 experience No Commentary 2160p 60fps HD let's play playthrough review guide Showcasing all cutscenes movie edition, all boss fights / boss fights, side missions, upgrades, outfits / costumes, all characters, best moments, final boss and true ending, secret ending. Subscribe for more! Shirrako Store: https://teespring.com/stores/shirrako-store Discord: https://discord.com/invite/shirrako Follow me on Facebook: https://www.facebook.com/ShirrakoGaming/ Follow me on Twitch: http://www.twitch.tv/shirrakogaming Follow me on Twitter: https://twitter.com/shirrakogaming
Dante's Inferno: (The 9 Circles of Hell) - The Divine Comedy - See U in History - Dante Alighieri Art: Paulo Vaccaro #Mythology #SeeUinHistory #History #MythologyExplained
Yo, check out my new audio series, "Thug Notes GET LIT," now available on Apple Podcasts, Stitcher, Google Play or wherever you get your podcasts. New episodes will be comin’ at you every week. ►► Subscribe and download now! iTunes: http://wscrk.com/ituGetLit Stitcher: http://wscrk.com/stiGetLit Google Play: http://wscrk.com/gpmGetLit Get the Thug Notes BOOK here! ►► http://bit.ly/1HLNbLN Join Wisecrack! ►► http://bit.ly/1y8Veir From plot debriefs to key motifs, Thug Notes’ Dante’s Inferno Summary & Analysis has you covered with themes, symbols, important quotes, and more. This week’s episode is Inferno by Dante Alighieri. Don't forget to hit up my boys at http://thugnotes.ting.com to start saving money on yo cell bill! Buy the book here on Amazon ►► http://amzn.to/1PtEA83 Buy the...
DANTE'S INFERNO – Full Gameplay Walkthrough / No Commentary 【Full Game】1440p 60FPS The story follows Dante, a Templar knight from the Crusade who (despite his faith) has committed numerous atrocities during the Third Crusade. At the city of Acre, Dante is entrusted to keep a group of Saracen prisoners safe so King Richard I could obtain a holy relic from Saladin. But once he brutally slaughters them, Dante is ordered to take the holy relic. During the attack, Dante is stabbed in the back by an Assassin, whereupon Death appears and condemns Dante to "everlasting damnation for [his] sins," despite being promised by a Bishop that his sins would be absolved. Dante refuses to accept his fate, vows to redeem himself, and defeats Death while taking his scythe. Dante leaves the Crusade, stitching...
Dante's Inferno Gameplay Walkthrough PS3 Xbox 360 emulating the PS5 experience No Commentary 2160p 60fps HD let's play playthrough review guide Showcasing all cutscenes movie edition, all boss fights / boss fights, side missions, upgrades, outfits / costumes, all characters, best moments, final boss and true ending, secret ending. Subscribe for more! Shirrako Store: https://teespring.com/stores/shirrako-store Discord: https://discord.com/invite/shirrako Follow me on Facebook: https://www.facebook.com/ShirrakoGaming/ Follow me on Twitch: http://www.twitch.tv/shirrakogaming Follow me on Twitter: https://twitter.com/shirrakogaming
Iscriviti al canale YouTube #ScuolaZoo Channel: http://bit.ly/2fxQy8b LA STORIA, LA CULTURA, LA VITA in NOCCIOLINE! Piccoli salatini pieni di conoscenza che ti salveranno dalle interrogazioni più orribili! Nella nocciolina di oggi vi raccontiamo l''Inferno di Dante, una storia così intensa, così pazzesca che nemmeno lui se la ricordava dopo averla scritta. Quel mattone spaventoso che tutti avevano paura di toccare. Nella cantina di ScuolaZoo abbiamo riunito centinaia di storici e di esperti guidati da Alberto Angela, desiderosi di riassumere uno racconti più famosi della storia. Dopo anni di tentativi, siamo giunti al riassunto definitivo. MA BADA BENE, persona che guarda questo video, la nocciolina della settimana si occuperà esclusivamente de L'INFERNO DI DANTE in 2 MINUTI. Prossimament...
Tobias Enhus is a Swedish music composer living in the US. His work has appeared in films, such as Black Hawk Down. He has also created music for television commercials, including the haunting score (featuring female operatic singing) heard in a 2006 commercial for Mercedes-Benz S-Class vehicles (shown during PBS sponsor-appreciation segments). More recently, Enhus composed the majority of the track to The Matrix: Path of Neo, collaborating with other artists, such as Juno Reactor, Mark Killian, Todd Haberman and Rob Bennett, as well as composing the score for the Spider-Man 3 video game. Enhus has also composed for Machine Head. He also provided a track for Mondo Sex Head, a 2012 remix album by Rob Zombie.