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

Blundstone Footwear

Blundstone Footwear (/ˈblʌndstən/ BLUND-stən) is an Australian footwear manufacturer, based in Hobart, Tasmania. The company's best-known product is its line of laceless, elastic-sided, ankle-length boots. The official name for this product line is "The Original", although the boots are colloquially known as "Blunnies" in Australia.

History

The Blundstone company originated from companies set up by several free settlers, who emigrated from England to Tasmania.

John and Eliza Blundstone arrived in Hobart Town from Derbyshire, England on 14 October 1855. John Blundstone worked as a coachbuilder until 1870, when he began importing footwear from England later manufacturing boots in Hobart's Liverpool Street.

By 1892, Blundstone's eldest son, Sylvanus, had joined him in business, and the pair formed J. Blundstone & Son, manufacturing boots in two outlets on Collins Street, later buying a purpose-built two story factory on Campbell Street. The company's importation arm was run by John's other son, William, as W.H. Blundstone & Co.

Podcasts:

  • my Blundstones 8 years later. Here are 3 good things about them

    Purchase link: https://amzn.to/3uoMbDe I finally got amazon affiliation, if you're interested in helping this channel grow, support me by purchasing through my link! Also I got the model wrong here y'all. I've owned the #585 classic boot for 8 years. Not the #500 model. oops! Up here in the north, winters are brutal. Sneakers boots don't cut it. To help you with daily nuances of commuting and running errands in the crisp cold you gotta get yourself a pair of reliable boots. Here is my video on "my Blundstones 8 years later. Here are 3 good things about them" Keep updated with me: Instagram: @billyvisuals Watch These Other Videos! ------------------------------------------------------- Adidas NMD R2 is SIGNIFICANTLY better than the NMD R1 Here's Why https://www.youtube.com/watch?v=4njN8n...

    published: 16 Nov 2023
  • The TRUTH about Blundstone boots (Blundstone 500)

    The Rose Anvil shop has belts, wallets, and more. Check it out here - https://bit.ly/44jXLNu Blundstone boots review. The Blundstone 500 Chelsea boots reviewed and cut in half to see whats inside and if Blundstone lives up to all the hype. Blundstone boots are made in Australia and have been popular recently. Are Blundstone boots any good is one of the most common questions i get asked and this video answers that question. BLUNDSTONE BOOTS - https://amzn.to/38alp10 MY WEBSITE https://roseanvil.com/?aff=17 INSTAGRAM https://www.instagram.com/rose_anvil/ MUSIC https://soundcloud.com/eric-godlow/relax https://soundcloud.com/spikes-vibes/banana #blundstone #workboots #leatherboots

    published: 10 Jan 2020
  • 4 Blundstone Alternatives that are WAY BETTER

    Watch my full guide on Blundstone alternatives → https://youtu.be/mI14xiyVWho Read my roundup of the best boots like Blundstone but better → https://bootspy.com/blundstone-alternatives/

    published: 10 Nov 2023
  • How to fit a Blundstone boot.

    How to Fit a Blundstone Boot, presented by Blundstone Canada. If you are asking what size Blundstone to buy, how should a Blundstone boot fit or will a Blundstone boot stretch? How to fit your Blundstone boot will help answer these questions and guide you to finding your Australian (UK) size. Have more questions? Find your perfect fit: https://www.blundstone.ca/pages/sizing-and-fitting Phone: 1-844-427-4060 Email: service@blundstone.ca Book a Free Virtual Fitting call: https://outlook.office365.com/owa/calendar/BlundstoneCanadaVirtualBooking@tinshack.ca/bookings/ Shop at https://www.blundstone.ca/

    published: 02 Dec 2022
  • Why Does Everybody Own Blundstones?

    Blundstones have somehow managed to stay popular, even after 150+ years of being in the shoe industry. Will they last another 150 considering they’re really just… brown boots? Subscribe to Future Proof! https://www.youtube.com/channel/UC-OJ-24roEfQ_-PCnLJSckg?sub_confirmation=1 Stay updated on our socials Instagram: https://www.instagram.com/futureprooftv/ Facebook: https://www.facebook.com/futureprooftv TikTok: https://www.tiktok.com/@futureprooftv Reddit: https://www.reddit.com/r/futureproof/ For further reading, check out the sources for this video here: https://docs.google.com/document/d/e/2PACX-1vRa1jUvEuVd1AOdNNaVgGVEbjbPIVL8WMWwn4wNlwmri7Nm5LOGNd_t_EOeBO0_EeQhwKoNFlq0EzLi/pub Script: Holly Conklin Animator: Zachary Kastrukoff Editor: Reid Valaitis Project Manager: Lurana Mc...

    published: 17 Nov 2021
  • Don't Buy Blundstones! These 5 Alternatives are WAY Better

    These are the best Blundstone alternatives. Get the Thursday Legend → https://manly.link/thursday-legend My favorite USA made boot socks → https://manly.link/camel-city-light Buy the Redback Easy Escape at Amazon → https://amzn.to/3aSn2Yj Buy the Jim Green Stockman at Amazon → https://amzn.to/3OnvvjU Watch my comparison of the Blundstone 500 and 550 → https://youtu.be/U836VafuIgw Are Blundstones really worth it? If you ask me: no. That’s why I put together this list of the best Blundstone alternatives available right now. These are boots like Blundstones, but better. Read my full guide on the best Blundstone alternatives out there → https://bootspy.com/blundstone-alternatives/ Read my Blundstone sizing guide → https://bootspy.com/blundstone-sizing-guide/ Read my Blundstone 500 revie...

    published: 23 Jul 2022
  • Top Five Blundstone Lifestyle Boots

    Today, we've got Jason from Everything Australian ready to introduce you to our top 5 Blundstone boots. Jason will be talking us through the 1911 in Tobacco Suede, the 1609 in Antique Brown, the 585 in Rustic Brown, the 1910 in Steel Grey and ending with the women’s 1671 in Black. Intrigued? You should be! These Blundstone boots are more than just footwear; they're a statement. Stay tuned for Jason’s in-depth video review as he walks you through the finer details of each boot. Whether you're seeking style, durability, or a bit of both, we've got a boot that suits your taste. Shop the collection here: https://everythingaustralian.com.au/blundstone-1911-boot-tobacco.html https://everythingaustralian.com.au/blundstone-1609-boot-antique-brown.html https://everythingaustralian.com.au/585-rusti...

    published: 28 Dec 2023
  • Are Blundstone Boots Worth the Hype? Review + Waterproof Test

    Get your OTTERWAX here! (use the code THEIRONSNAIL to get 15% off): https://carrot.link/theironsnail/how-to-re-wax-your-leather-and-canvas-discount-code?ref=quick-copy The Blundstone 550's in rustic brown is certainly an attractive boot, but does it live up to the hype? This specific style is a 585 and *appears* to be a nubuck leather which to be 100% I didn't even notice right away because I impulse bought them and then tossed them on my feet. MY FAVE PRODUCTS (affiliate links - help support the channel!): - My EDC & Favorite Clothing Pieces: https://carrot.link/theironsnail/my-edc-and-favorite-clothing-pieces - Men’s Fall & Winter Outfits: https://carrot.link/theironsnail/mens-fall-and-winter-outfits - 12 Best Men’s T-Shirts: https://carrot.link/theironsnail/12-of-the-best-t-shirts-ran...

    published: 10 May 2019
  • Caring for your Blundstone boots

    published: 11 Nov 2021
  • Adam Savage's Favorite Tools: Blundstone Work Boots!

    Over the course of filming MythBusters and Tested, Adam has worn one style of work boot that is suited for almost every environment production takes him: Blundstones. Today's tool tip -- which was requested by Tested member Christopher Fong -- is about why Adam loves these boots, and what the last pair he wore while filming MythBusters looks like! Blundstone 587 Boot: https://amzn.to/2LZl5we (Note: This video is not sponsored.) Disclaimer: Tested may earn an affiliate commission when you buy through the links here. Shot by Adam Savage Join this channel to support Tested and get access to perks: https://www.youtube.com/channel/UCiDJtJKMICpb9B1qf7qjEOA/join Subscribe for more videos (and click the bell for notifications): http://www.youtube.com/subscription_center?add_user=testedcom ...

    published: 19 Jan 2021
developed with YouTube
my Blundstones 8 years later. Here are 3 good things about them
0:42

my Blundstones 8 years later. Here are 3 good things about them

  • Order:
  • Duration: 0:42
  • Uploaded Date: 16 Nov 2023
  • views: 42802
Purchase link: https://amzn.to/3uoMbDe I finally got amazon affiliation, if you're interested in helping this channel grow, support me by purchasing through my link! Also I got the model wrong here y'all. I've owned the #585 classic boot for 8 years. Not the #500 model. oops! Up here in the north, winters are brutal. Sneakers boots don't cut it. To help you with daily nuances of commuting and running errands in the crisp cold you gotta get yourself a pair of reliable boots. Here is my video on "my Blundstones 8 years later. Here are 3 good things about them" Keep updated with me: Instagram: @billyvisuals Watch These Other Videos! ------------------------------------------------------- Adidas NMD R2 is SIGNIFICANTLY better than the NMD R1 Here's Why https://www.youtube.com/watch?v=4njN8nei8tI Do not go to the Sneaker Street to shop in Hong Kong https://www.youtube.com/watch?v=eMduwEnx31c New PureBOOST 4.0 On Feet - 5 Things you NEED to KNOW Before you buy https://www.youtube.com/watch?v=JXm6-D7yuwQ Does the UltraBoost Washing Machine Method Actually work? https://www.youtube.com/watch?v=2sMPbF7bPZA 500 Miles Test: Adidas ALPHABOUNCE is better than ULTRABOOST 1.0? https://www.youtube.com/watch?v=-xJfo-0wPzE my Blundstones 8 years later. Here are 3 good things about them my Blundstones 8 years later. Here are 3 good things about them #blundstones #blundstone #billyvisuals
https://wn.com/My_Blundstones_8_Years_Later._Here_Are_3_Good_Things_About_Them
The TRUTH about Blundstone boots (Blundstone 500)
11:08

The TRUTH about Blundstone boots (Blundstone 500)

  • Order:
  • Duration: 11:08
  • Uploaded Date: 10 Jan 2020
  • views: 607565
The Rose Anvil shop has belts, wallets, and more. Check it out here - https://bit.ly/44jXLNu Blundstone boots review. The Blundstone 500 Chelsea boots reviewed and cut in half to see whats inside and if Blundstone lives up to all the hype. Blundstone boots are made in Australia and have been popular recently. Are Blundstone boots any good is one of the most common questions i get asked and this video answers that question. BLUNDSTONE BOOTS - https://amzn.to/38alp10 MY WEBSITE https://roseanvil.com/?aff=17 INSTAGRAM https://www.instagram.com/rose_anvil/ MUSIC https://soundcloud.com/eric-godlow/relax https://soundcloud.com/spikes-vibes/banana #blundstone #workboots #leatherboots
https://wn.com/The_Truth_About_Blundstone_Boots_(Blundstone_500)
4 Blundstone Alternatives that are WAY BETTER
0:46

4 Blundstone Alternatives that are WAY BETTER

  • Order:
  • Duration: 0:46
  • Uploaded Date: 10 Nov 2023
  • views: 93213
Watch my full guide on Blundstone alternatives → https://youtu.be/mI14xiyVWho Read my roundup of the best boots like Blundstone but better → https://bootspy.com/blundstone-alternatives/
https://wn.com/4_Blundstone_Alternatives_That_Are_Way_Better
How to fit a Blundstone boot.
5:50

How to fit a Blundstone boot.

  • Order:
  • Duration: 5:50
  • Uploaded Date: 02 Dec 2022
  • views: 117470
How to Fit a Blundstone Boot, presented by Blundstone Canada. If you are asking what size Blundstone to buy, how should a Blundstone boot fit or will a Blundstone boot stretch? How to fit your Blundstone boot will help answer these questions and guide you to finding your Australian (UK) size. Have more questions? Find your perfect fit: https://www.blundstone.ca/pages/sizing-and-fitting Phone: 1-844-427-4060 Email: service@blundstone.ca Book a Free Virtual Fitting call: https://outlook.office365.com/owa/calendar/BlundstoneCanadaVirtualBooking@tinshack.ca/bookings/ Shop at https://www.blundstone.ca/
https://wn.com/How_To_Fit_A_Blundstone_Boot.
Why Does Everybody Own Blundstones?
9:13

Why Does Everybody Own Blundstones?

  • Order:
  • Duration: 9:13
  • Uploaded Date: 17 Nov 2021
  • views: 484150
Blundstones have somehow managed to stay popular, even after 150+ years of being in the shoe industry. Will they last another 150 considering they’re really just… brown boots? Subscribe to Future Proof! https://www.youtube.com/channel/UC-OJ-24roEfQ_-PCnLJSckg?sub_confirmation=1 Stay updated on our socials Instagram: https://www.instagram.com/futureprooftv/ Facebook: https://www.facebook.com/futureprooftv TikTok: https://www.tiktok.com/@futureprooftv Reddit: https://www.reddit.com/r/futureproof/ For further reading, check out the sources for this video here: https://docs.google.com/document/d/e/2PACX-1vRa1jUvEuVd1AOdNNaVgGVEbjbPIVL8WMWwn4wNlwmri7Nm5LOGNd_t_EOeBO0_EeQhwKoNFlq0EzLi/pub Script: Holly Conklin Animator: Zachary Kastrukoff Editor: Reid Valaitis Project Manager: Lurana McClure Rodríguez Want to work with Future Proof? Get in touch: contact@befutureproof.ca
https://wn.com/Why_Does_Everybody_Own_Blundstones
Don't Buy Blundstones! These 5 Alternatives are WAY Better
7:39

Don't Buy Blundstones! These 5 Alternatives are WAY Better

  • Order:
  • Duration: 7:39
  • Uploaded Date: 23 Jul 2022
  • views: 150331
These are the best Blundstone alternatives. Get the Thursday Legend → https://manly.link/thursday-legend My favorite USA made boot socks → https://manly.link/camel-city-light Buy the Redback Easy Escape at Amazon → https://amzn.to/3aSn2Yj Buy the Jim Green Stockman at Amazon → https://amzn.to/3OnvvjU Watch my comparison of the Blundstone 500 and 550 → https://youtu.be/U836VafuIgw Are Blundstones really worth it? If you ask me: no. That’s why I put together this list of the best Blundstone alternatives available right now. These are boots like Blundstones, but better. Read my full guide on the best Blundstone alternatives out there → https://bootspy.com/blundstone-alternatives/ Read my Blundstone sizing guide → https://bootspy.com/blundstone-sizing-guide/ Read my Blundstone 500 review → https://bootspy.com/blundstone-500-review/ Read my Blundstone 550 review → https://bootspy.com/blundstone-550-review/ Read my comparison of the Blundstone 500 and 550 → https://bootspy.com/blundstone-500-vs-550/ 0:00 Overview 0:11 Thursday Legend 3:05 Red Wing Classic Chelsea 4:17 Redback Easy Escape 5:19 Jim Green Stockman 7:07 Dr. Martens Felix (Vegan) #blundstones #mensboots #boots Disclosure: The links above are affiliate links. If you click it and make a purchase, we make a small commission at no additional cost to you. All opinions are our own. We are a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.
https://wn.com/Don't_Buy_Blundstones_These_5_Alternatives_Are_Way_Better
Top Five Blundstone Lifestyle Boots
2:45

Top Five Blundstone Lifestyle Boots

  • Order:
  • Duration: 2:45
  • Uploaded Date: 28 Dec 2023
  • views: 25477
Today, we've got Jason from Everything Australian ready to introduce you to our top 5 Blundstone boots. Jason will be talking us through the 1911 in Tobacco Suede, the 1609 in Antique Brown, the 585 in Rustic Brown, the 1910 in Steel Grey and ending with the women’s 1671 in Black. Intrigued? You should be! These Blundstone boots are more than just footwear; they're a statement. Stay tuned for Jason’s in-depth video review as he walks you through the finer details of each boot. Whether you're seeking style, durability, or a bit of both, we've got a boot that suits your taste. Shop the collection here: https://everythingaustralian.com.au/blundstone-1911-boot-tobacco.html https://everythingaustralian.com.au/blundstone-1609-boot-antique-brown.html https://everythingaustralian.com.au/585-rustic-brown.html https://everythingaustralian.com.au/blundstone-1910-steel-grey-suede.html https://everythingaustralian.com.au/blundstone-1671-women-s-boot-black.html
https://wn.com/Top_Five_Blundstone_Lifestyle_Boots
Are Blundstone Boots Worth the Hype? Review + Waterproof Test
10:14

Are Blundstone Boots Worth the Hype? Review + Waterproof Test

  • Order:
  • Duration: 10:14
  • Uploaded Date: 10 May 2019
  • views: 256894
Get your OTTERWAX here! (use the code THEIRONSNAIL to get 15% off): https://carrot.link/theironsnail/how-to-re-wax-your-leather-and-canvas-discount-code?ref=quick-copy The Blundstone 550's in rustic brown is certainly an attractive boot, but does it live up to the hype? This specific style is a 585 and *appears* to be a nubuck leather which to be 100% I didn't even notice right away because I impulse bought them and then tossed them on my feet. MY FAVE PRODUCTS (affiliate links - help support the channel!): - My EDC & Favorite Clothing Pieces: https://carrot.link/theironsnail/my-edc-and-favorite-clothing-pieces - Men’s Fall & Winter Outfits: https://carrot.link/theironsnail/mens-fall-and-winter-outfits - 12 Best Men’s T-Shirts: https://carrot.link/theironsnail/12-of-the-best-t-shirts-ranked - The Snail Community’s Fave Pieces (ADD YOURS!): https://carrot.link/theironsnail/the-snail-communitys-fav-pieces-add-yours-M_UG - What I film with: https://carrot.link/theironsnail/what-i-film-with Can I interest you in a hot bowl of following ME and The Snail in other places?? - The Iron Snail Clothing Website: https://theironsnail.us - The Iron Snail Clothing Instagram: https://www.instagram.com/theironsnail - My Instagram: https://www.instagram.com/michaelkristy_ - My Other Channel: https://www.youtube.com/channel/UC-0x_gNhWjtKTq7EuM2ZwMg - Need to reach out to me outside of Youtube? michaelrkristy@gmail.com #theironsnail The Iron Snail is a men’s fashion vlog starring a young man named Michael and featuring a snail no bigger than a quarter. The two are set on taking over the world of fashion by creating a clothing line to end all clothing lines. Until then, we’re here to tell you EVERYTHING you need to know about the best clothing out there, from the highest quality raw denim jeans to the warmest jacket to the sturdiest boots…the Iron Snail has got you covered. (written by Taylor, though Michael is sometimes known to talk about himself in the third person… xoxo)
https://wn.com/Are_Blundstone_Boots_Worth_The_Hype_Review_Waterproof_Test
Caring for your Blundstone boots
0:22

Caring for your Blundstone boots

  • Order:
  • Duration: 0:22
  • Uploaded Date: 11 Nov 2021
  • views: 24279
https://wn.com/Caring_For_Your_Blundstone_Boots
Adam Savage's Favorite Tools: Blundstone Work Boots!
6:27

Adam Savage's Favorite Tools: Blundstone Work Boots!

  • Order:
  • Duration: 6:27
  • Uploaded Date: 19 Jan 2021
  • views: 530814
Over the course of filming MythBusters and Tested, Adam has worn one style of work boot that is suited for almost every environment production takes him: Blundstones. Today's tool tip -- which was requested by Tested member Christopher Fong -- is about why Adam loves these boots, and what the last pair he wore while filming MythBusters looks like! Blundstone 587 Boot: https://amzn.to/2LZl5we (Note: This video is not sponsored.) Disclaimer: Tested may earn an affiliate commission when you buy through the links here. Shot by Adam Savage Join this channel to support Tested and get access to perks: https://www.youtube.com/channel/UCiDJtJKMICpb9B1qf7qjEOA/join Subscribe for more videos (and click the bell for notifications): http://www.youtube.com/subscription_center?add_user=testedcom Tested shirts and more: https://teespring.com/stores/adam-savages-tested Twitter: http://www.twitter.com/testedcom Facebook: http://www.facebook.com/testedcom Instagram: https://www.instagram.com/testedcom/ Discord: https://www.discord.gg/tested Tested is: Adam Savage http://www.twitter.com/donttrythis Norman Chan http://www.twitter.com/nchan Joey Fameli http://www.joeyfameli.com Gunther Kirsch https://guntherkirsch.com Ryan Kiser https://www.instagram.com/ryan.kiser Jen Schachter http://www.jenschachter.com Kishore Hari http://www.twitter.com/sciencequiche Sean Charlesworth http://www.twitter.com/cworthdynamics Jeremy Williams http://www.twitter.com/jerware Kayte Sabicer https://www.instagram.com/kaytesabicer Bill Doran https://twitter.com/chinbeard Ariel Waldman https://youtube.com/arielwaldman Darrell Maloney https://www.youtube.com/brokennerd Kristen Lomasney https://twitter.com/krystynlo Intro bumper by Abe Dieckman Set design by Danica Johnson http://www.twitter.com/saysdanica Set build by Asa Hillis http://www.asahillis.com Thanks for watching! #AdamSavage #favoritetools
https://wn.com/Adam_Savage's_Favorite_Tools_Blundstone_Work_Boots
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • my Blundstones 8 years later. Here are 3 good things about them
    0:42
    my Blundstones 8 years later. Here are 3 good things about themremove from playlist
  • The TRUTH about Blundstone boots (Blundstone 500)
    11:08
    The TRUTH about Blundstone boots (Blundstone 500)remove from playlist
  • 4 Blundstone Alternatives that are WAY BETTER
    0:46
    4 Blundstone Alternatives that are WAY BETTERremove from playlist
  • How to fit a Blundstone boot.
    5:50
    How to fit a Blundstone boot.remove from playlist
  • Why Does Everybody Own Blundstones?
    9:13
    Why Does Everybody Own Blundstones?remove from playlist
  • Don't Buy Blundstones! These 5 Alternatives are WAY Better
    7:39
    Don't Buy Blundstones! These 5 Alternatives are WAY Betterremove from playlist
  • Top Five Blundstone Lifestyle Boots
    2:45
    Top Five Blundstone Lifestyle Bootsremove from playlist
  • Are Blundstone Boots Worth the Hype? Review + Waterproof Test
    10:14
    Are Blundstone Boots Worth the Hype? Review + Waterproof Testremove from playlist
  • Adam Savage's Favorite Tools: Blundstone Work Boots!
    6:27
    Adam Savage's Favorite Tools: Blundstone Work Boots!remove from playlist
developed with YouTube
PLAYLIST TIME:

my Blundstones 8 years later. Here are 3 good things about them

Purchase link: https://amzn.to/3uoMbDe I finally got amazon affiliation, if you're interested in helping this channel grow, support me by purchasing through my link! Also I got the model wrong here y'all. I've owned the #585 classic boot for 8 years. Not the #500 model. oops! Up here in the north, winters are brutal. Sneakers boots don't cut it. To help you with daily nuances of commuting and running errands in the crisp cold you gotta get yourself a pair of reliable boots. Here is my video on "my Blundstones 8 years later. Here are 3 good things about them" Keep updated with me: Instagram: @billyvisuals Watch These Other Videos! ------------------------------------------------------- Adidas NMD R2 is SIGNIFICANTLY better than the NMD R1 Here's Why https://www.youtube.com/watch?v=4njN8nei8tI Do not go to the Sneaker Street to shop in Hong Kong https://www.youtube.com/watch?v=eMduwEnx31c New PureBOOST 4.0 On Feet - 5 Things you NEED to KNOW Before you buy https://www.youtube.com/watch?v=JXm6-D7yuwQ Does the UltraBoost Washing Machine Method Actually work? https://www.youtube.com/watch?v=2sMPbF7bPZA 500 Miles Test: Adidas ALPHABOUNCE is better than ULTRABOOST 1.0? https://www.youtube.com/watch?v=-xJfo-0wPzE my Blundstones 8 years later. Here are 3 good things about them my Blundstones 8 years later. Here are 3 good things about them #blundstones #blundstone #billyvisuals
0:42
my Blundstones 8 years later. Here are 3 good things about them
Purchase link: https://amzn.to/3uoMbDe I finally got amazon affiliation, if you're interes...
published: 16 Nov 2023
Play in Full Screen
11:08
The TRUTH about Blundstone boots (Blundstone 500)
The Rose Anvil shop has belts, wallets, and more. Check it out here - https://bit.ly/44jXL...
published: 10 Jan 2020
Play in Full Screen
0:46
4 Blundstone Alternatives that are WAY BETTER
Watch my full guide on Blundstone alternatives → https://youtu.be/mI14xiyVWho Read my rou...
published: 10 Nov 2023
Play in Full Screen
5:50
How to fit a Blundstone boot.
How to Fit a Blundstone Boot, presented by Blundstone Canada. If you are asking what size ...
published: 02 Dec 2022
Play in Full Screen
9:13
Why Does Everybody Own Blundstones?
Blundstones have somehow managed to stay popular, even after 150+ years of being in the sh...
published: 17 Nov 2021
Play in Full Screen
7:39
Don't Buy Blundstones! These 5 Alternatives are WAY Better
These are the best Blundstone alternatives. Get the Thursday Legend → https://manly.link/t...
published: 23 Jul 2022
Play in Full Screen
2:45
Top Five Blundstone Lifestyle Boots
Today, we've got Jason from Everything Australian ready to introduce you to our top 5 Blun...
published: 28 Dec 2023
Play in Full Screen
10:14
Are Blundstone Boots Worth the Hype? Review + Waterproof Test
Get your OTTERWAX here! (use the code THEIRONSNAIL to get 15% off): https://carrot.link/th...
published: 10 May 2019
Play in Full Screen
0:22
Caring for your Blundstone boots
published: 11 Nov 2021
Play in Full Screen
6:27
Adam Savage's Favorite Tools: Blundstone Work Boots!
Over the course of filming MythBusters and Tested, Adam has worn one style of work boot th...
published: 19 Jan 2021
Play in Full Screen

Blundstone Footwear

Blundstone Footwear (/ˈblʌndstən/ BLUND-stən) is an Australian footwear manufacturer, based in Hobart, Tasmania. The company's best-known product is its line of laceless, elastic-sided, ankle-length boots. The official name for this product line is "The Original", although the boots are colloquially known as "Blunnies" in Australia.

History

The Blundstone company originated from companies set up by several free settlers, who emigrated from England to Tasmania.

John and Eliza Blundstone arrived in Hobart Town from Derbyshire, England on 14 October 1855. John Blundstone worked as a coachbuilder until 1870, when he began importing footwear from England later manufacturing boots in Hobart's Liverpool Street.

By 1892, Blundstone's eldest son, Sylvanus, had joined him in business, and the pair formed J. Blundstone & Son, manufacturing boots in two outlets on Collins Street, later buying a purpose-built two story factory on Campbell Street. The company's importation arm was run by John's other son, William, as W.H. Blundstone & Co.

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

Edit

Blundstone has a dressier version of its classic Chelsea boots — I've been wearing them ...

Business Insider 24 Dec 2024
It's a handsome boot that manages to achieve an upscale feel while still looking like a Blundstone.Putting the Blundstone Dress Chelsea Boot to the test ... Here's a good Reddit thread about customers' experiences with how long their Blundstones lasted.
Edit

Blundstone makes some of the best Chelsea boots money can buy

Business Insider 23 Dec 2024
Founded in 1870 in Tasmania, Australia, Blundstone is easily one of the most well-regarded footwear brands in the Southern Hemisphere ... Chelsea boots were typically known as sleek and even a little dressy, but Blundstone's version was a bit different.
Edit

Sole Survivors: The Only Men’s Boots You’ll Need This Season

New York Observer 08 Oct 2024
Blundstone Chelsea Boots. Blundstones are a versatile powerhouse, seamlessly transitioning from the rugged wilderness of Tasmania to the avenues of Manhattan ... Blundstone. Blundstone.
Edit

21 Things on Sale: Including Blundstones for Summer and Spicy Chile Crisp

New York Magazine 10 May 2024
21 items in this article 21 items on sale!. Photo-Illustration. The Strategist; Photos. Retailers ... First, I suggest you check out Dôen’s sale — the brand rarely offers discounts, and the cuter stuff is starting to sell out ... $28 ... ....
Edit

A Pair of Blundstone's Iconic Chelsea Boots That 'Look Great Dressed Up or Down' Is ...

The Capital Journal 05 Apr 2024
“I wear them walking the dog, to the office, as well as to restaurants/bars—work great in all settings." ....
Edit

Let’s talk about why you wear your Blundstones

Mustang News 07 Mar 2024
The aesthetic often involves sporting brands such as ...
Edit

Score a rare 25% discount on boots from Kate Middleton favorite Blundstone

New York Post 26 Feb 2024
Kate Middleton’s a longtime fan of Blundstone’s weatherpoof footwear, having stepped out in its fashionable-yet-functional Classic 550 Chelsea Boots ($230) on numerous occasions ... Blundstone ... Blundstone ... Blundstone ... Blundstone ... Blundstone.
Edit

Blundstone's Iconic Chelsea Boots Are 25% Off for Presidents Day—These Are Our Top 4 Picks

The Capital Journal 17 Feb 2024
The rising popularity of Blundstone Chelsea boots has become a large part of why crunchy style is so cool right now ... Blundstone #1469 Classic Chelsea Boots in Steel Gray, $172 (was $230) at Blundstone ... Courtesy of Blundstone ... Courtesy of Blundstone.
Edit

The 12 Best Men's Chelsea Boots: Blundstone, Thursday Boot Co. and More

The Capital Journal 11 Jan 2024
At the same time in Australia, a brand called Blundstone had put a workwear spin on it, creating what would become known as the #500 that's still one of the best Chelsea boots for men today ... Blundstone #550 Chelsea Boots, $210 at Blundstone.
Edit

Step Ahead: The Definitive Guide to This Season’s Best Boots for Men

New York Observer 04 Dec 2023
John Lobb Alder Leather Boots Todd Snyder Nomad Suede Chelsea Boot Red Wing Shoes Classic Moc Boots Blundstone Chelsea Boots Yuketen Salvia Suede Boots Tod’s Suede W.G ... Blundstone Chelsea Boots ... Blundstone. Blundstone.
Edit

The 10 Best Men’s Chelsea Boots: Blundstone, Thursday Boot Co. and More

The Charlotte Observer 30 Nov 2023
Today's best men's Chelsea boots are the perfect balance of rugged and refined. They create a unique aesthetic that falls somewhere between chic and badass and can look just as ... .

Most Viewed

×