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

Texaco

Texaco, Inc. ("The Texas Company") is an American oil retail brand. Its flagship product is its fuel "Texaco with Techron". It also owns the Havoline motor oil brand. Texaco was an independent company until its refining operations merged into Chevron Corporation in 2001, at which time most of its station franchises were divested to the Shell Oil Company. It began as the Texas Fuel Company, founded in 1901 in Beaumont, Texas, by Joseph S. Cullinan, Thomas J. Donoghue, Walter Benona Sharp, and Arnold Schlaet upon the discovery of oil at Spindletop.

For many years, Texaco was the only company selling gasoline under the same brand name in all 50 US states, as well as Canada, making it the most truly national brand among its competitors. It was also one of the Seven Sisters that dominated the global petroleum industry from the mid-1940s to the 1970s. Its current logo features a white star in a red circle (a reference to the lone star of Texas), leading to the long-running advertising jingles "You can trust your car to the man who wears the star" and "Star of the American Road." The company was headquartered in Harrison, New York, near White Plains, prior to the merger with Chevron.

Texaco (novel)

Texaco is a 1992 novel by Patrick Chamoiseau, a French author who was born and raised in Martinique. The book was awarded the Prix Goncourt in its year of publication. It was translated into English from the original French and Creole by Rose-Myriam Réjouis and Val Vinokurov and selected as a New York Times Notable Book of the Year in 1997.

Plot

The novel presents a historical and personal perspective of Texaco, a shantytown suburb just outside Martinique's capital Fort-de-France. The main narrative of the story derives from Marie-Sophie Laborieux, daughter of a freed slave, as she recounts her family history from the beginning of the 1820s through to the late 20th century. These recollections of her history draw both on her personal memory and the stories told to her by her father. The accounts begin after a man called Christ – an employee of the urban services bureau tasked to rationalize the shantytown of Texaco – is sent to Marie-Sophie. In describing his impact on her community, Marie-Sophie refers to Christ as: “riders of our apocalypse” and “angel of destruction”.

Podcasts:

  • Texaco Havoline Energy MS 5W30 Test olejów silnikowych Piotr Tester

    Wesprzyj kanał na Patronite: https://patronite.pl/PiotrTester Subskrybuj: https://www.youtube.com/c/PiotrTester?sub_confirmation=1 @PiotrTester Runda 4 Temperatura: normalna (bez podgrzewania) Texaco Havoline Energy MS 5W30 Co pokazuje test? Im więcej ciężarków uda się postawić na maszynie do momentu jej zatrzymania, tym testowany olej będzie charakteryzował się silniejszym filmem olejowym. Test bada odporność filmu olejowego na rozerwanie. Pomiar próbki dokonywany jest mikrometrem - im wynik z danym obciążeniem jest niższy (wyżłobienie w próbce jest mniejsze), tym olej da lepszą ochronę silnikowi. W tabeli podawany będzie wynik wyżłobienia próbki, ilość ciężarków postawionych na maszynie, temperaturę w momencie zatrzymania maszyny. #texaco #energy #5w30 Zestawienie Piotr Tester - wsz...

    published: 25 Aug 2023
  • HNN Spotlights Texaco in Hawaii's Safe & Easy Mobile Pay

    HI Now host Rachel Pacarro recently reported on Texaco in Hawai‘i's Mobile Pay app. The new mobile app allows drivers to pay for gas from the comfort of their own cars. It also helps create one less touchpoint during these COVID-times. Available for both iPhone and Android devices, Texaco in Hawaii's Mobile Pay app has become a staple in many locals digital wallets. “You can link all the main payments like Visa, Mastercard, American Express,” says Heather Namahoe, Brand Manager at Texaco in Hawai‘i. “You can even use Apple Pay or Venmo.” Namahoe adds that Texaco is proud to continue offering their top-tier fuel with the Techron local consumers demand. “We put our Techron additive in every grade of gas, whether you use regular, plus or supreme.” Not only does it give you proven unbeatabl...

    published: 01 Sep 2021
  • Trapalot - Texaco

    Subscribe & turn on post notifications to keep updated with all of Trapalot's releases Stream Trapalot: Spotify: https://trapalot.lnk.to/Spotify Apple Music: https://music.apple.com/us/artist/trapalot/1664494019 Follow Trapalot: Instagram - https://www.instagram.com/egbtrap/ / trapahlot Twitter - https://x.com/572trapalot

    published: 05 Jun 2024
  • Buddy L - Texaco 1950 - Camion Cisterna - Acero Prensado / Tanker Truck Pressed Steel

    Buddy L - Texaco 1950 - Camion Cisterna - Acero Prensado / Tanker Truck Pressed Steel #BuddyL #Texaco1950 #CamionCisterna #AceroPrensado #TankerTruckPressedSteel #Shorts #ViralShorts #JuguetesAntiguos #ColeccionJuguetes #ClasicosDeColeccion #JuguetesDePlastico#AutosMiniaturas #JuguetesVintage #ToysVintage #FigurasEscala #JuguetesClasicos #Antiguedades #AutosDeColeccion #ArticulosDeColeccion #FigurasDeAccion #JuegosAntiguos #AutosClasicos #AutosEscala #AutosPlastico #AutosDiecast #AutosMetalicos #ColeccionistaDeJuguetesAntiguos #ColeccionismoCAMU Redes sociales de Coleccionismo CAMU: 🪢 TIKTOK: www.tiktok.com/@coleccionismocamu 🌈 INSTAGRAM: https://instagram.com/coleccionismo_camu?utm_medium=copy_link 💥FACEBOOK:...

    published: 27 Jun 2023
  • Motul 6100 Synergie+ 10W40 kontra Texaco Havoline Extra 10W40 Test czystości oleju 400°C

    Subskrybuj: https://www.youtube.com/c/PiotrTester?sub_confirmation=1 @Piotr Tester Ekstremalny test czystości oleju silnikowego Motul 10W40 i Texaco 10W40 Oleje podgrzewane są do temperatury 400°C Czas: 35s Każda próbka zawiera 10ml oleju #motul10W40 #texaco10W40 #piotrtester Piotr Tester zestawienie: https://uszlachetniacze.blogspot.com/2018/10/piotr-tester-zestawienie-wszystkie.html

    published: 05 Dec 2022
  • Touch-Free Fueling with Texaco Mobile App

    Currently, customers who use the Texaco Mobile App to pay for fuel from the comfort of their vehicle are encouraged to take advantage of the free service aimed at preventing spread of the coronavirus. Additionally, beginning on April 22, 2020, Island Energy Services is testing a new program to offer customers touch-free fueling at select Texaco locations it operates on on O‘ahu and Hawai‘i Island . Fuel attendants will be stationed at dedicated lanes and will assist customers in completing their transaction by pumping their desired quantity and grade of fuel when customers complete their fuel purchase through the Texaco Mobile App. Participating Stations and hours for the touch-free fuel operation are: • Beretania Texaco, 1378 South Beretania St., Honolulu, Hawaii 96814 (Da...

    published: 20 Apr 2020
  • Chevron Texaco's Dirty History

    Abby Martin exposes Chevron Texaco's scandalous history—from supporting Nazis to backing war crimes—all while attacking its victims. Watch our full documentary about Chevron vs. the Amazon: https://www.youtube.com/watch?v=MssnB31PmZI

    published: 14 Sep 2016
  • HI Now Daily Spotlights Kapolei Texaco's New Car Wash

    HI Now Daily hosts Kainoa Carlson, Rachel Pacarro, and their team get all around the island to make stories happen. That means a lot of miles, and a lot of dirt. To help wash away that dirt, they head to Texaco in Kapolei to check out their state of the art car wash and to get the van looking brand new! Not only does Texaco in Kapolei provide great gas for your vehicle, it also has an amazing new car wash. You can choose between a touchless or brush wash, different packages to fit your needs, and enjoy an LED light show. With Texaco’s top package, your car will receive a wax and polish as well. With their new brush technology, your vehicle will receive a thorough cleaning from all angles. Texaco in Kapolei’s car wash uses minimal water and treats the run-off soap at a treatment center be...

    published: 12 Feb 2022
  • Texaco Lubricants Clarity® Synthetic Hydraulic Oils: Excavator Operator Testimonial

    Texaco Lubricants Can Help You Run Better Longer. Michael Smeltzer, excavator operator for over 20 years participated in a field trial comparing Caltex Clarity Synthetic Hydraulic Oil AW 46 with a traditional monograde hydraulic oil 46. With Clarity Synthetic Hydraulic Oil, he could feel the responsiveness of the equipment that included faster movement and overall better performance.

    published: 10 May 2018
  • The Texaco Fastfuel Card - 2022

    Our Texaco Fastfuel card offers your business great savings and great coverage. It can be used to purchase diesel, petrol, lubricant purchases, AdBlue, LPG and carwashes. Sites in the network include: Texaco, Esso, Morrisons, Shell, Sainsburys, Tesco, BP, and Jet. To find out more go to https://www.cambriancards.com/texaco-fastfuel-card/

    published: 10 Mar 2022
Texaco Havoline Energy MS 5W30 Test olejów silnikowych Piotr Tester
8:15

Texaco Havoline Energy MS 5W30 Test olejów silnikowych Piotr Tester

  • Order:
  • Duration: 8:15
  • Uploaded Date: 25 Aug 2023
  • views: 1631
Wesprzyj kanał na Patronite: https://patronite.pl/PiotrTester Subskrybuj: https://www.youtube.com/c/PiotrTester?sub_confirmation=1 @PiotrTester Runda 4 Temperatura: normalna (bez podgrzewania) Texaco Havoline Energy MS 5W30 Co pokazuje test? Im więcej ciężarków uda się postawić na maszynie do momentu jej zatrzymania, tym testowany olej będzie charakteryzował się silniejszym filmem olejowym. Test bada odporność filmu olejowego na rozerwanie. Pomiar próbki dokonywany jest mikrometrem - im wynik z danym obciążeniem jest niższy (wyżłobienie w próbce jest mniejsze), tym olej da lepszą ochronę silnikowi. W tabeli podawany będzie wynik wyżłobienia próbki, ilość ciężarków postawionych na maszynie, temperaturę w momencie zatrzymania maszyny. #texaco #energy #5w30 Zestawienie Piotr Tester - wszystkie tabele z wynikami: https://uszlachetniacze.blogspot.com/2018/10/piotr-tester-zestawienie-wszystkie.html Na zakup kolejnych olejów, dziękuje. https://www.paypal.com/paypalme/PiotrTester
https://wn.com/Texaco_Havoline_Energy_Ms_5W30_Test_Olejów_Silnikowych_Piotr_Tester
HNN Spotlights Texaco in Hawaii's Safe & Easy Mobile Pay
3:01

HNN Spotlights Texaco in Hawaii's Safe & Easy Mobile Pay

  • Order:
  • Duration: 3:01
  • Uploaded Date: 01 Sep 2021
  • views: 292
HI Now host Rachel Pacarro recently reported on Texaco in Hawai‘i's Mobile Pay app. The new mobile app allows drivers to pay for gas from the comfort of their own cars. It also helps create one less touchpoint during these COVID-times. Available for both iPhone and Android devices, Texaco in Hawaii's Mobile Pay app has become a staple in many locals digital wallets. “You can link all the main payments like Visa, Mastercard, American Express,” says Heather Namahoe, Brand Manager at Texaco in Hawai‘i. “You can even use Apple Pay or Venmo.” Namahoe adds that Texaco is proud to continue offering their top-tier fuel with the Techron local consumers demand. “We put our Techron additive in every grade of gas, whether you use regular, plus or supreme.” Not only does it give you proven unbeatable mileage, but Techron also helps your vehicle to perform its best. Island Energy, the locally-operated company behind Texaco in Hawai’i, puts the Hawai‘i community and environment first. Recently, they launched the state’s first vehicle carbon offset program called Ho‘āla. Every time someone fills up at Texaco, Ho‘āla makes an investment in certified carbon offset projects to help reduce vehicle emissions by up to 30%. The Ho‘āla program also supports local non-profit organizations like KUPU, Mālama Learning Center, and Hui o Ho‘ohonua amongst others. “Every time you choose Texaco, you’re making a better decision for the environment,” says Namahoe. For more information, please visit https://www.texacoinhawaii.com and https://hoalahi.com
https://wn.com/Hnn_Spotlights_Texaco_In_Hawaii's_Safe_Easy_Mobile_Pay
Trapalot - Texaco
3:26

Trapalot - Texaco

  • Order:
  • Duration: 3:26
  • Uploaded Date: 05 Jun 2024
  • views: 619050
Subscribe & turn on post notifications to keep updated with all of Trapalot's releases Stream Trapalot: Spotify: https://trapalot.lnk.to/Spotify Apple Music: https://music.apple.com/us/artist/trapalot/1664494019 Follow Trapalot: Instagram - https://www.instagram.com/egbtrap/ / trapahlot Twitter - https://x.com/572trapalot
https://wn.com/Trapalot_Texaco
Buddy L - Texaco 1950 - Camion Cisterna - Acero Prensado / Tanker Truck Pressed Steel
0:17

Buddy L - Texaco 1950 - Camion Cisterna - Acero Prensado / Tanker Truck Pressed Steel

  • Order:
  • Duration: 0:17
  • Uploaded Date: 27 Jun 2023
  • views: 229
Buddy L - Texaco 1950 - Camion Cisterna - Acero Prensado / Tanker Truck Pressed Steel #BuddyL #Texaco1950 #CamionCisterna #AceroPrensado #TankerTruckPressedSteel #Shorts #ViralShorts #JuguetesAntiguos #ColeccionJuguetes #ClasicosDeColeccion #JuguetesDePlastico#AutosMiniaturas #JuguetesVintage #ToysVintage #FigurasEscala #JuguetesClasicos #Antiguedades #AutosDeColeccion #ArticulosDeColeccion #FigurasDeAccion #JuegosAntiguos #AutosClasicos #AutosEscala #AutosPlastico #AutosDiecast #AutosMetalicos #ColeccionistaDeJuguetesAntiguos #ColeccionismoCAMU Redes sociales de Coleccionismo CAMU: 🪢 TIKTOK: www.tiktok.com/@coleccionismocamu 🌈 INSTAGRAM: https://instagram.com/coleccionismo_camu?utm_medium=copy_link 💥FACEBOOK: https://www.facebook.com/Coleccionismo-CAMU-101469064916847/
https://wn.com/Buddy_L_Texaco_1950_Camion_Cisterna_Acero_Prensado_Tanker_Truck_Pressed_Steel
Motul 6100 Synergie+ 10W40 kontra Texaco Havoline Extra 10W40 Test czystości oleju 400°C
1:01

Motul 6100 Synergie+ 10W40 kontra Texaco Havoline Extra 10W40 Test czystości oleju 400°C

  • Order:
  • Duration: 1:01
  • Uploaded Date: 05 Dec 2022
  • views: 5356
Subskrybuj: https://www.youtube.com/c/PiotrTester?sub_confirmation=1 @Piotr Tester Ekstremalny test czystości oleju silnikowego Motul 10W40 i Texaco 10W40 Oleje podgrzewane są do temperatury 400°C Czas: 35s Każda próbka zawiera 10ml oleju #motul10W40 #texaco10W40 #piotrtester Piotr Tester zestawienie: https://uszlachetniacze.blogspot.com/2018/10/piotr-tester-zestawienie-wszystkie.html
https://wn.com/Motul_6100_Synergie_10W40_Kontra_Texaco_Havoline_Extra_10W40_Test_Czystości_Oleju_400°C
Touch-Free Fueling with Texaco Mobile App
2:28

Touch-Free Fueling with Texaco Mobile App

  • Order:
  • Duration: 2:28
  • Uploaded Date: 20 Apr 2020
  • views: 1471
Currently, customers who use the Texaco Mobile App to pay for fuel from the comfort of their vehicle are encouraged to take advantage of the free service aimed at preventing spread of the coronavirus. Additionally, beginning on April 22, 2020, Island Energy Services is testing a new program to offer customers touch-free fueling at select Texaco locations it operates on on O‘ahu and Hawai‘i Island . Fuel attendants will be stationed at dedicated lanes and will assist customers in completing their transaction by pumping their desired quantity and grade of fuel when customers complete their fuel purchase through the Texaco Mobile App. Participating Stations and hours for the touch-free fuel operation are: • Beretania Texaco, 1378 South Beretania St., Honolulu, Hawaii 96814 (Daily: 7 am – noon and 1 - 5 pm) • Kapolei Texaco, 91-565 Farrington Highway, Kapolei, HI 96707 (Daily: 10 am – 3 pm) • Waiakea Texaco, 321 Maka’ala Street, Hilo, HI 96720 (Daily: 7 – 11 am and 2 – 6 pm)
https://wn.com/Touch_Free_Fueling_With_Texaco_Mobile_App
Chevron Texaco's Dirty History
6:56

Chevron Texaco's Dirty History

  • Order:
  • Duration: 6:56
  • Uploaded Date: 14 Sep 2016
  • views: 13270
Abby Martin exposes Chevron Texaco's scandalous history—from supporting Nazis to backing war crimes—all while attacking its victims. Watch our full documentary about Chevron vs. the Amazon: https://www.youtube.com/watch?v=MssnB31PmZI
https://wn.com/Chevron_Texaco's_Dirty_History
HI Now Daily Spotlights Kapolei Texaco's New Car Wash
3:02

HI Now Daily Spotlights Kapolei Texaco's New Car Wash

  • Order:
  • Duration: 3:02
  • Uploaded Date: 12 Feb 2022
  • views: 312
HI Now Daily hosts Kainoa Carlson, Rachel Pacarro, and their team get all around the island to make stories happen. That means a lot of miles, and a lot of dirt. To help wash away that dirt, they head to Texaco in Kapolei to check out their state of the art car wash and to get the van looking brand new! Not only does Texaco in Kapolei provide great gas for your vehicle, it also has an amazing new car wash. You can choose between a touchless or brush wash, different packages to fit your needs, and enjoy an LED light show. With Texaco’s top package, your car will receive a wax and polish as well. With their new brush technology, your vehicle will receive a thorough cleaning from all angles. Texaco in Kapolei’s car wash uses minimal water and treats the run-off soap at a treatment center before releasing it into the environment, allowing you to clean your vehicle and help the environment at the same time. To find out more about Texaco in Hawai‘i, be sure to follow us on Facebook and Instagram @texacoinhawaii or visit https://www.texacoinhawaii.com/, https://www.islandenergyservices.com/ or https://hoalahi.com/
https://wn.com/Hi_Now_Daily_Spotlights_Kapolei_Texaco's_New_Car_Wash
Texaco Lubricants Clarity®  Synthetic Hydraulic Oils: Excavator Operator Testimonial
1:25

Texaco Lubricants Clarity® Synthetic Hydraulic Oils: Excavator Operator Testimonial

  • Order:
  • Duration: 1:25
  • Uploaded Date: 10 May 2018
  • views: 105
Texaco Lubricants Can Help You Run Better Longer. Michael Smeltzer, excavator operator for over 20 years participated in a field trial comparing Caltex Clarity Synthetic Hydraulic Oil AW 46 with a traditional monograde hydraulic oil 46. With Clarity Synthetic Hydraulic Oil, he could feel the responsiveness of the equipment that included faster movement and overall better performance.
https://wn.com/Texaco_Lubricants_Clarity®_Synthetic_Hydraulic_Oils_Excavator_Operator_Testimonial
The Texaco Fastfuel Card - 2022
2:06

The Texaco Fastfuel Card - 2022

  • Order:
  • Duration: 2:06
  • Uploaded Date: 10 Mar 2022
  • views: 436
Our Texaco Fastfuel card offers your business great savings and great coverage. It can be used to purchase diesel, petrol, lubricant purchases, AdBlue, LPG and carwashes. Sites in the network include: Texaco, Esso, Morrisons, Shell, Sainsburys, Tesco, BP, and Jet. To find out more go to https://www.cambriancards.com/texaco-fastfuel-card/
https://wn.com/The_Texaco_Fastfuel_Card_2022
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 31:57

Texaco Havoline Energy MS 5W30 Test olejów silnikowych Piotr Tester

Wesprzyj kanał na Patronite: https://patronite.pl/PiotrTester Subskrybuj: https://www.youtube.com/c/PiotrTester?sub_confirmation=1 @PiotrTester Runda 4 Temperatura: normalna (bez podgrzewania) Texaco Havoline Energy MS 5W30 Co pokazuje test? Im więcej ciężarków uda się postawić na maszynie do momentu jej zatrzymania, tym testowany olej będzie charakteryzował się silniejszym filmem olejowym. Test bada odporność filmu olejowego na rozerwanie. Pomiar próbki dokonywany jest mikrometrem - im wynik z danym obciążeniem jest niższy (wyżłobienie w próbce jest mniejsze), tym olej da lepszą ochronę silnikowi. W tabeli podawany będzie wynik wyżłobienia próbki, ilość ciężarków postawionych na maszynie, temperaturę w momencie zatrzymania maszyny. #texaco #energy #5w30 Zestawienie Piotr Tester - wszystkie tabele z wynikami: https://uszlachetniacze.blogspot.com/2018/10/piotr-tester-zestawienie-wszystkie.html Na zakup kolejnych olejów, dziękuje. https://www.paypal.com/paypalme/PiotrTester
8:15
Texaco Havoline Energy MS 5W30 Test olejów silnikowych Piotr Tester
Wesprzyj kanał na Patronite: https://patronite.pl/PiotrTester Subskrybuj: https://www.you...
published: 25 Aug 2023
Play in Full Screen
3:01
HNN Spotlights Texaco in Hawaii's Safe & Easy Mobile Pay
HI Now host Rachel Pacarro recently reported on Texaco in Hawai‘i's Mobile Pay app. The ne...
published: 01 Sep 2021
Play in Full Screen
3:26
Trapalot - Texaco
Subscribe & turn on post notifications to keep updated with all of Trapalot's releases St...
published: 05 Jun 2024
Play in Full Screen
0:17
Buddy L - Texaco 1950 - Camion Cisterna - Acero Prensado / Tanker Truck Pressed Steel
Buddy L - Texaco 1950 - Camion Cisterna - Acero Prensado / Tanker Truck Pressed Steel #Bud...
published: 27 Jun 2023
Play in Full Screen
1:01
Motul 6100 Synergie+ 10W40 kontra Texaco Havoline Extra 10W40 Test czystości oleju 400°C
Subskrybuj: https://www.youtube.com/c/PiotrTester?sub_confirmation=1 @Piotr Tester Ekstr...
published: 05 Dec 2022
Play in Full Screen
2:28
Touch-Free Fueling with Texaco Mobile App
Currently, customers who use the Texaco Mobile App to pay for fuel from the comfort of the...
published: 20 Apr 2020
Play in Full Screen
6:56
Chevron Texaco's Dirty History
Abby Martin exposes Chevron Texaco's scandalous history—from supporting Nazis to backing w...
published: 14 Sep 2016
Play in Full Screen
3:02
HI Now Daily Spotlights Kapolei Texaco's New Car Wash
HI Now Daily hosts Kainoa Carlson, Rachel Pacarro, and their team get all around the islan...
published: 12 Feb 2022
Play in Full Screen
1:25
Texaco Lubricants Clarity® Synthetic Hydraulic Oils: Excavator Operator Testimonial
Texaco Lubricants Can Help You Run Better Longer. Michael Smeltzer, excavator operator for...
published: 10 May 2018
Play in Full Screen
2:06
The Texaco Fastfuel Card - 2022
Our Texaco Fastfuel card offers your business great savings and great coverage. It can be...
published: 10 Mar 2022
Play in Full Screen

Texaco

Texaco, Inc. ("The Texas Company") is an American oil retail brand. Its flagship product is its fuel "Texaco with Techron". It also owns the Havoline motor oil brand. Texaco was an independent company until its refining operations merged into Chevron Corporation in 2001, at which time most of its station franchises were divested to the Shell Oil Company. It began as the Texas Fuel Company, founded in 1901 in Beaumont, Texas, by Joseph S. Cullinan, Thomas J. Donoghue, Walter Benona Sharp, and Arnold Schlaet upon the discovery of oil at Spindletop.

For many years, Texaco was the only company selling gasoline under the same brand name in all 50 US states, as well as Canada, making it the most truly national brand among its competitors. It was also one of the Seven Sisters that dominated the global petroleum industry from the mid-1940s to the 1970s. Its current logo features a white star in a red circle (a reference to the lone star of Texas), leading to the long-running advertising jingles "You can trust your car to the man who wears the star" and "Star of the American Road." The company was headquartered in Harrison, New York, near White Plains, prior to the merger with Chevron.

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

Edit

Séan (6) scoops prize at Texaco Children’s Art Competition

Irish Independent 15 Apr 2025
Six-years old Seán Crowley has won a top prize in this year’s 71st Texaco Children’s Art Competition. .
Edit

Winners of the 71st Texaco Children’s Art Competition announced

The Irish Times 15 Apr 2025
Daniel Walsh — an 18-year old from Claremorris, Co Mayo — has been chosen as overall winner of the 71st Texaco Children's Art Competition, taking first prize in the senior 16-18 years age category. Photograph. Nick Bradshaw / The Irish Times ... ' ... .
  • 1
×