- published: 22 Jul 2013
- views: 27523
'+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; })); }); -->
Rob Hubbard (born 1955 in Kingston upon Hull,England) is a British composer best known for his composition of computer game theme music, especially for microcomputers of the 1980s such as the Commodore 64. His work showcased the potential of the Commodore 64's sound hardware and provided many examples of how appropriate music can improve the gaming experience.
He first started playing music aged 7. Whilst at school he played in bands. After leaving school he went to music college.
In the late seventies, before scoring games, he was a professional studio musician. He decided to teach himself BASIC and machine code for the Commodore 64.
Writing a few demos and some educational software for learning music, he approached Gremlin Graphics in 1985 with samples of his work, in an attempt to market his software. Gremlin was more interested in the tunes than the software, and he was asked to create the soundtrack for Thing on a Spring, a platform game.
The Last V8 is a video game published by Mastertronics on their M.A.D. label. It was released in 1985 for the Commodore 64, Atari 8-bit and Amstrad CPC. The title echoes a plot point from the Mad Max series of movies The design was done by Richard Darling and the programming by David Darling. The graphics by Jim Wilson and music by Rob Hubbard. It is one of the few commercial games to run in native mode on the Commodore 128. The 128 version contained more levels (three instead of only two levels). The first level, the one missing in the 64 version, has more complex mission objectives.
While the graphics and music were praised, the controls were difficult and the game was considered unplayable by the press.
Developed by David Darling and published by Mastertronic in 1985. Foreword: The first couple of minutes of the video is dedicated to Rob Hubbard's great music that he wrote for the game. You can skip to the actual longplay by clicking here: 2:27 The Last V8 back story involves some hokum with a nuclear war some time around the year 2008 and the fall-out has reached levels where it is almost acceptable to go outside again, or something like that... Whatever the story, I think it borrowed the concept from Mad Max, with "The Last V8" being a reference to the car Max drove as being "the last of the V8 interceptors". The game is split into 2 (very short) stages. The objective of the first is to navigate some very narrow, winding roads and to reach the end of the stage before an atomic bomb...
Original Australian Accents Version
The Last V8, for the Commodore 64 and by published by M.A.D. (Mastertronic's Added Dimension). Seven years have passed since world war III, and only now dare you leave your shelter in order to investigate what has become of the surface world You drive out in your specially-equipped vehicle, the Last V8, only to discover that the outside world is more hostile than you would have expected. Your task is now (as commended by a digitised voice at the beginning of each level) simply to get back to the base in as short time as possible in this C64 game More MASTERTRONIC games you might remember: https://youtu.be/lpPxZLGGthE https://youtu.be/zeFM_QrjiiA https://youtu.be/Q1_BVJ2ktLc https://youtu.be/ji51PHVM1Zg https://youtu.be/GtJ0eKlhZFw https://youtu.be/YbHAQcPXXps https://youtu.be/ztUnbvKXHQ...
100% vegetable juice Oscilloscope visuals created with Rolf R. Bakke and Rushjet1's SidWiz2 program.
Longplay from the C64 game "The Last V8". This videi is downloadable at http://www.archive.org/details/C64GVA244-TheLastV8
Provided to YouTube by CDBaby The Last V8 · Instant Remedy M1x3d Up ℗ 2020 Instant Remedy Released on: 2020-04-24 Auto-generated by YouTube.
Live remix of The Last V8 (Mastertronic, 1985) composed by a living legend Mr. Rob Hubbard. Game was released for the Commodore 64, Atari 8-bit and Amstrad CPC. In answer to the FAQ: This is C64 guts packed into C16 case. I have also customized the key set. Free audio download from bandcamp servers: http://lukhash.bandcamp.com/album/c64-remixed Support LukHash music by visiting these links 👇👇 MUSIC / MERCH / CONTACT: 🔗 https://music.lukhash.com ▼ 𝗠𝗨𝗦𝗜𝗖 ▼ 💾 https://lukhash.bandcamp.com/ 🎧 https://open.spotify.com/artist/3hvgLXeDFNiqDOVXl0xTge 🍏 https://music.apple.com/gb/artist/lukhash/563146689 ▼ 𝗦𝗢𝗖𝗜𝗔𝗟𝗦 ▼ 🌍 https://www.lukhash.com 👍 https://www.facebook.com/lukhashdotcom 📺 https://www.youtube.com/lukhashdotcom 🕊️ https://www.twitter.com/lukhash 📸 https://www.instagram.com/lukhashdo...
The Last V8 has a bit of a reputation being a difficult game, not so sure about that. Played this through as a kid no prob, even though the hit detection is kind of wonky and steering diabolical. 1:18 time is swift, but there is plenty of room for improvement. Not gonna play more though, not like there's much competition! LOL
In-depth walkaround of this 2015 Ferrari 458 Speciale with highlighted features & interior shots. Click here for an in-depth description and view of the car: https://www.romansinternational.com/used/cars/ferrari/458/speciale-3700 The Ferrari 458 Speciale is the high-performance variant of the already sensational 458 Italia. The Speciale receives a myriad of performance upgrades starting with increased power from the 4.5L V8 jumping to just under 600bhp at 9000rpm. Further distinctions in the body styling include a vented bonnet, finned side sills and front/rear active aerodynamic flaps, to balance downforce and cut drag when required. In addition to revised electronic driver aid systems there is the introduction of side slip angle control (SSC), a system which allows the driver to decid...
Driving the Ultimate Movie car - Mad Max 'Last of the V8 Interceptors'. The movie franchise of MadMax turning 45 this year, and bringing with it another film - Furiosa - Jonny Smith celebrates this Australian ultimate car and motorcycle movie that launched the career of Mel Gibson. Is this the original movie car? No, although that did live in the UK for many years. This is an almost perfect replica built by owner Mark Simpson in his sleepy Somerset village near Glastonbury. Thanks for stopping by The Late Brake Show. Why not join our Patreon gang for early access to episodes and a regular blog from Jonny? https://patreon.com/TheLateBrakeShow Smith & Sniff is the UK's #1 automotive podcast, where Jonny and ex Top Gear and Grand Tour script editor Richard Porter chat absolute rubbish fo...
Rob Hubbard (born 1955 in Kingston upon Hull,England) is a British composer best known for his composition of computer game theme music, especially for microcomputers of the 1980s such as the Commodore 64. His work showcased the potential of the Commodore 64's sound hardware and provided many examples of how appropriate music can improve the gaming experience.
He first started playing music aged 7. Whilst at school he played in bands. After leaving school he went to music college.
In the late seventies, before scoring games, he was a professional studio musician. He decided to teach himself BASIC and machine code for the Commodore 64.
Writing a few demos and some educational software for learning music, he approached Gremlin Graphics in 1985 with samples of his work, in an attempt to market his software. Gremlin was more interested in the tunes than the software, and he was asked to create the soundtrack for Thing on a Spring, a platform game.
Race Against Time
[Chorus: repeat 2X]
In my race against time I - can't stop
Runnin through the red light - livin my life
Even if I'm gettin too hot
I'ma keep runnin through the red light - livin my life
[Ja Rule:]
God, why the hell am I here
Is it a blessin', or a painful lesson
Of life and its directions
Date of conception two twenty nine
I was birthed and won't be denied
Lookin into these eyes
And witness lives' tragedies
The boy who made slaves out of men, that's me
For every lock there's a key
The only thing that ever made me click was Cash Money
So that I lust for
Be it one of my deadly sins
You know the seven
I got all of them deep within
Sometimes I slip, but you be there
Pick me up, now I'm on my knees like what's up
'Cause only in a world that's corruptin' the sick
Could you dare to look at my life and call it innocence
Got me to a better sense
Cause whats yours is mine
Hear me lord, I'm runnin' out of time
[Chorus: 2x]
In my race against time I can't stop
Runnin' through the red light
Livin' my life
Even if I'm gettin too high
I'ma keep runnin' through the red light
Livin' my life
[Ja Rule:]
Nobody cry for me
Cause I, wanna see you smile for me
When I die look through my windows, to the soul
Tell me if you see Ja livin' to grow old
Cause too many niggas done died for what I hold
The talented warmer world
Which is so cold
Take me
Save me
Before I'm crazy
The only reason I live
Is for my baby
Never did you tell me that
Life ain't a game
Maybe if you told me this
Shit might be changed
But now I'm just racin' against time
Tryin' to survive
And see why
Y'all niggas drive over nigga's vibe
If you gonna live, know you gonna die
If you gonna steal, know you gotta lie
Get drunk and stay high
Don't de-nigga-ny
Cause they'll never take me alive
Feel me lord
I'm runnin' out of time
[Chorus: 2x]
In my race against time I can't stop
Runnin' through the red light
Livin' my life
Even if I'm gettin too high
I'ma keep runnin' through the red light
Livin' my life
[Ja Rule:]
I fears no man
But when its time to go
I'm gone
Racin' through the darkness
Learnin' what's right from wrong
Lookin' for the light
But all I see is the night
When everything else is bright
What happened to my life
Is this what I am
Is this what I've become
A nigga that don't give a fuck about nothin and no one
Cold, even though I gotta burnin' desire within my soul
I must set this whole world on fire
If I control my destiny
Maybe one day I'll give this world the best of me
You know I never been one to judge right or wrong
I embraced and showed you love
Then I throw slugs
At the other side
Go get 'em in broad day light
What a nigga would give to live my life
You don't want it
Cause if you could get it you would try
Feel me lord
Ja has arrived
[Chorus: 4x]
In my race against time I can't stop
Runnin' through the red light
Livin' my life
Even if I'm gettin too high
I'ma keep runnin' through the red light
Livin' my life
[Ja Rule:]
My life...