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

South Bend, Indiana

The city of South Bend is the county seat of St. Joseph County, Indiana, United States, on the St. Joseph River near its southernmost bend, from which it derives its name. As of the 2010 census, the city had a total of 101,168 residents; its Metropolitan Statistical Area had a population of 318,586 and Combined Statistical Area of 721,296. It is the fourth-largest city in Indiana, serving as the economic and cultural hub of Northern Indiana. The highly ranked University of Notre Dame is located just to the north in unincorporated Notre Dame, Indiana and is an integral contributor to the region's economy.

The area was originally settled in the early 19th century by fur traders and was established as a city in 1865. The St. Joseph River shaped South Bend's economy through the mid-20th century. River access assisted heavy industrial development such as that of the Studebaker Corporation, the Oliver Chilled Plow Company, and other large corporations.

The population of South Bend declined after 1960, when it had a peak population of 132,445. This was chiefly due to migration to suburban areas as well as the demise of Studebaker and other heavy industry. Today, the largest industries in South Bend are health care, education, small business, and tourism. Remaining large corporations include Crowe Horwath, Honeywell, and AM General.

South Bend International Airport

South Bend International Airport (IATA: SBN, ICAO: KSBN, FAA LID: SBN) is three miles northwest of South Bend, in St. Joseph County, Indiana, United States. Formerly South Bend Airport and South Bend Regional Airport, it is the state's third busiest airport in terms of passenger traffic after Indianapolis International Airport and Fort Wayne International Airport.

The National Plan of Integrated Airport Systems for 2011–2015 called it a primary commercial service facility.

Federal Aviation Administration records show the airport had 299,592 passenger enplanements in 2012, 328,992 in 2013, and 311,158 in 2014.

History

In the early days South Bend's main airport was Cadet Field in present-day Granger. Vincent Hugo Bendix, founder of Bendix Aviation, bought land northwest of South Bend to provide air service closer to the city. Bendix Field opened in 1933.

Bendix Field was later called St. Joseph County Airport, then Michiana Regional Transportation Center. The airport was renamed South Bend Regional Airport on January 1, 2000, to help identify the airport, many travelers not knowing the meaning of Michiana (taken from Michigan and Indiana).

South Bend station (South Shore Line)

South Bend was the eastern terminus of the South Shore Line located at the corner of LaSalle Avenue and Michigan Street in downtown South Bend, Indiana. This station, situated on the site of a former Masonic Temple, was the South Shore's third South Bend station and opened on August 3, 1921. In 1928, the station was remodeled to resemble the 11th Street station in Michigan City. The redesigned station featured restrooms, waiting rooms, food concessions, and was staffed by a ticket agent. The South Bend terminal remained in service until 1970, when the Chicago, South Shore and South Bend Railroad eliminated street running in South Bend by truncating the line. It was replaced by a new station at Washington Street.

References


South Bend station

South Bend is a train station in South Bend, Indiana. It is served by Amtrak's Lake Shore Limited between Chicago, Boston and New York, and Capitol Limited between Chicago and Washington D.C.. The station was built by the Chicago South Shore and South Bend Railroad in 1970; South Shore Line trains continued to use it until 1992.

History

Until 1970 South Shore Line interurbans served downtown South Bend at LaSalle and Michigan. The city had long wanted to eliminate street running, while the South Shore was looking to reduce costs as passenger traffic declined. The South Shore embarked on a program to consolidate its operations in South Bend. This included constructing the current station building at Meade and Washington and selling the old downtown station, which had opened in 1921. When Amtrak began serving South Bend in 1971 it used this station instead of the larger Union Station. The South Shore Line moved its terminus to a new terminal at the South Bend Regional Airport in November 1992.

South Bend station (disambiguation)

South Bend station is a train station in South Bend, Indiana, serving Amtrak.

South Bend station may also refer to:

  • South Bend station (South Shore Line), a former South Shore Line station
  • South Bend Airport station, a current South Shore Line station
  • See also

  • South Bend (disambiguation)
  • Podcasts:

    • Best Things To Do in South Bend, Indiana

      Welcome to South Bend, Indiana, a city brimming with excitement and diverse attractions. Join us as we explore the Best Things To Do in this vibrant Midwestern gem. University of Notre Dame: Begin your journey at the iconic University of Notre Dame. Stroll through the picturesque campus and don't miss the breathtaking Basilica of the Sacred Heart. Studebaker National Museum: Immerse yourself in automotive history at the Studebaker National Museum, featuring an impressive collection of vintage cars. Potawatomi Zoo: Enjoy a family-friendly day at the Potawatomi Zoo, home to a wide variety of animals from around the world. East Race Waterway: For thrill-seekers, the East Race Waterway offers exciting white-water rafting adventures right in the heart of the city. South Bend River Lights: ...

      published: 17 Oct 2023
    • What the Hell Happened to Indiana? Episode 1 - South Bend

      South Bend might be the worst place you've never heard of before. South Bend. If you haven’t heard of this place, you’re not out of the loop. It’s a small place located way up in the northeast corner of the state, kinda by Michigan. And for this dashboard tour, we’re gonna go there and see what it’s like first hand and talk about what happened here and how this place is just a smaller version of what’s happening in America on a much bigger scale in many of our larger cities. It’s kind of a down home run down crumbling postindustrial town with a bunch of Catholics. It’s country and urban, dangerous but quaint. A college town with high poverty and corn fields everywhere. Many would call it a struggling post industrial city They lost 50,000 people in 50 years. #indiana #moving Yo...

      published: 28 Sep 2021
    • Top 10 Best Things to Do in South Bend, Indiana - Travel Guide 2024

      Welcome to our comprehensive "Things to Do in South Bend" guide! South Bend is a vibrant city in Northern Indiana with a rich history, cultural landmarks, and outdoor adventures. In this video, we'll explore some of the most wonderful attractions, activities, and hidden gems that South Bend has to offer. From the iconic University of Notre Dame, known for its stunning architecture and lively campus life, to the beautiful St. Joseph River that provides scenic views and fun recreational options like kayaking and fishing, South Bend has something for everyone. We'll take you on a journey through the lush parks, exciting local eateries, and unique museums that showcase the area's heritage. Discover entertainment options for all ages at the South Bend Civic Theatre and the energizing atmosphe...

      published: 16 Aug 2024
    • 2 Days in South Bend, Indiana: The BEST things to DO and EAT in The Bend

      South Bend, Indiana is one of those places that you may easily miss when exploring places to visit in the Midwest, USA - but you shouldn't! South Bend is so much more than Notre Dame football. It's full of great places to eat and drink, water activities, fun parks and trails, and great art. If you're ready to learn about all the best things to do in South Bend, watch on! If you have 48 hours in the Bend, these are the places that you don't want to miss in South Bend and Mishawaka. Thank you Visit South Bend Mishawaka for hosting me! RELEVANT LINKS: My latest video: https://www.youtube.com/watch?v=W7lyq2azoVo&t=61s My Instagram: https://www.instagram.com/stumblinguponserendipity/ Please like and subscribe if you are enjoying my content!! 🤗 TIME STAMPS: 0:00-1:02: Introduction to my S...

      published: 11 Sep 2024
    • Full Episode: South Bend, Indiana | Main Streets

      The history of this midwestern city is rooted in the river it sits on -and how it’s had to evolve with industry’s past and present...Oh, and also a very famous University that’s next door. Established in 1865, South Bend saw a business boom in industry thanks to the St. Joseph River. Studebaker, Oliver Chilled Plow, and Singer Sewing machines were just a few of the big names. But we can’t forget the University of Notre Dame. It’s a huge influence on economy and culture in South Bend to this day. Featured: 00:00 Intro 01:39 Studebaker Factory 03:22 South Bend Cubs 05:19 Studebaker National Museum 09:44 Notre Dame 11:44 Rohr’s 13:24 Word of Life Mural 16:09 The East Race 17:45 Howard Park 18:28 Oh Mamma’s 20:36 The South Bend Chocolate Company 24:10 Dyngus Day 25:14 South Bend Civil Rig...

      published: 15 Mar 2022
    • Driving Around Downtown South Bend, Indiana and Notre Dame Campus in 4k Video

      Filmed on Tuesday, May 30 2023, I drive around downtown South Bend, IN and the University of Notre Dame to see what's going on. One of the earliest known groups to occupy what would later become northern Indiana was the Miami tribe. Later, the Potawatomi moved into the region, utilizing the rich food and natural resources found along the river. The Potawatomi occupied this region of Indiana until most of them were forcibly removed in the 1840s. The South Bend area was popular because its portage was the shortest overland route from the St. Joseph River to the Kankakee River. This route was used for centuries, first by the Native Americans, then by French explorers, missionaries and traders. The French explorer René-Robert Cavelier, Sieur de La Salle, the first white European to set ...

      published: 15 Jun 2023
    • Top 10 Best Tourist Places to Visit in South Bend, Indiana | USA - English

      #SouthBendPlaces #PlacesInSouthBend #SouthBendVisitPlaces #SouthBend South Bend is one of the biggest tourist attractions in USA having many best places in South Bend. South Bend is a city on the St. Joseph River in Indiana. It’s known for the adjacent University of Notre Dame, with its gold-domed main building. In the city center, the Studebaker National Museum displays classic cars made by the now-defunct local company. The nearby History Museum has exhibits spotlighting aspects of regional life. The museum also owns 3 historic homes, including the 19th-century Oliver Mansion. So to help you figure out the places you need to try, we've gathered up a bucket list of the best Places in South Bend that you won't regret going to. Wiki Peaks is on a mission to promote the tourism in the World...

      published: 02 Feb 2022
    • Is South Bend Indiana one of America's Most Dangerous Cities? How Safe is South Bend?

      Ever wonder how safe your city is? We take a look at the statistics and how it ranks among other cities in its state as well as how it compares across America. Violent Crime Statistics Property Crime Murder rates Overall Crime, including your chances of becoming a victim. How Livable the city is. Safer nearby cities. How it compares to other US cities. Support this channel with original novelty crime related Apparel https://rising-crime-news.creator-spring.com/

      published: 02 May 2022
    • 50th annual Valley RV and Camping show returns to South Bend

      This is the first, ripe opportunity of the year to check out the latest and greatest recreational vehicles. https://www.wndu.com/2025/01/09/50th-annual-valley-r-v-camping-show-returns-south-bend/ For more Local News from WNDU: https://www.wndu.com/ For more YouTube Content: https://www.youtube.com/channel/UC7AO1aI9S3A7vrSc9wLvA-Q

      published: 09 Jan 2025
    • Inside South Bend, Indiana: Pete Buttigieg’s Hometown

      What do the residents of South Bend, Ind., home to Democratic presidential candidate Pete Buttigieg, think of him? After decades of malaise, South Bend went through big changes during Buttigieg’s tenure as mayor. But there is fear that the gains have been uneven and that its fragile progress could slip away. READ MORE ABOUT THIS STORY https://www.latimes.com/politics/story/2020-02-16/presidential-candidate-pete-buttigieg-south-bend-indiana-hometown SUBSCRIBE FOR MORE VIDEOS AND NEWS http://www.youtube.com/subscription_center?add_user=losangelestimes https://www.latimes.com/subscription LET’S CONNECT: Facebook ► https://www.facebook.com/latimes Twitter ► https://twitter.com/LATimes Instagram ► https://www.instagram.com/latimes

      published: 28 Feb 2020
    developed with YouTube
    Best Things To Do in South Bend, Indiana
    4:05

    Best Things To Do in South Bend, Indiana

    • Order:
    • Duration: 4:05
    • Uploaded Date: 17 Oct 2023
    • views: 5603
    Welcome to South Bend, Indiana, a city brimming with excitement and diverse attractions. Join us as we explore the Best Things To Do in this vibrant Midwestern gem. University of Notre Dame: Begin your journey at the iconic University of Notre Dame. Stroll through the picturesque campus and don't miss the breathtaking Basilica of the Sacred Heart. Studebaker National Museum: Immerse yourself in automotive history at the Studebaker National Museum, featuring an impressive collection of vintage cars. Potawatomi Zoo: Enjoy a family-friendly day at the Potawatomi Zoo, home to a wide variety of animals from around the world. East Race Waterway: For thrill-seekers, the East Race Waterway offers exciting white-water rafting adventures right in the heart of the city. South Bend River Lights: Experience the mesmerizing River Lights along the St. Joseph River, where music and lights come together for a dazzling display. South Bend Cubs: Catch a baseball game at Four Winds Field and cheer for the South Bend Cubs, a Class A minor league team affiliated with the Chicago Cubs. Howard Park: Howard Park is a haven for relaxation and recreation, featuring a stunning ice skating ribbon in the winter and green spaces in the summer. South Bend Chocolate Company: Satisfy your sweet tooth with a visit to the South Bend Chocolate Company, known for its delectable confections. Morris Performing Arts Center: Enjoy a live performance at the Morris Performing Arts Center, hosting a variety of shows, from Broadway musicals to concerts. Eddy Street Commons: Explore Eddy Street Commons, a vibrant urban village with diverse dining, shopping, and entertainment options. South Bend, Indiana, is an enchanting blend of culture, history, and outdoor adventures. Join us on this journey through this dynamic city! VisitOurChannel: https://bit.ly/3hLpLmL Book Your Vacation and Get BIG Discounts: Trip.com: https://tinyurl.com/muwxr54k CheapOair: https://tinyurl.com/5b6thex7 FlightHub: https://bit.ly/3BHEpp4 Priceline: https://bit.ly/3C2HeBm MakeMoneyOnlineWhileDoingNothing: HoneyGain: https://bit.ly/3wKv6ja InvestOnline (Sign up and Get 2 Free Stocks) Wealthsimple: https://bit.ly/3df4Pll To Support this channel: BuyMeCoffee: https://bit.ly/3wypitf Contact us via email: lyricsfeature@gmail.com #travelscout
    https://wn.com/Best_Things_To_Do_In_South_Bend,_Indiana
    What the Hell Happened to Indiana? Episode 1 - South Bend
    14:47

    What the Hell Happened to Indiana? Episode 1 - South Bend

    • Order:
    • Duration: 14:47
    • Uploaded Date: 28 Sep 2021
    • views: 187736
    South Bend might be the worst place you've never heard of before. South Bend. If you haven’t heard of this place, you’re not out of the loop. It’s a small place located way up in the northeast corner of the state, kinda by Michigan. And for this dashboard tour, we’re gonna go there and see what it’s like first hand and talk about what happened here and how this place is just a smaller version of what’s happening in America on a much bigger scale in many of our larger cities. It’s kind of a down home run down crumbling postindustrial town with a bunch of Catholics. It’s country and urban, dangerous but quaint. A college town with high poverty and corn fields everywhere. Many would call it a struggling post industrial city They lost 50,000 people in 50 years. #indiana #moving You can buy my music here: iTunes: https://music.apple.com/us/album/state-songs-an-album/1523790725 Google Play: https://play.google.com/store/music/album/Nick_Johnson_State_Songs_An_Album?id=Byfshzyrbjldelqferxc6vijljm&hl=en_US Amazon Music: https://music.amazon.com/albums/B08D3G43VR This channel is about America! The best video on this topic!
    https://wn.com/What_The_Hell_Happened_To_Indiana_Episode_1_South_Bend
    Top 10 Best Things to Do in South Bend, Indiana - Travel Guide 2024
    8:31

    Top 10 Best Things to Do in South Bend, Indiana - Travel Guide 2024

    • Order:
    • Duration: 8:31
    • Uploaded Date: 16 Aug 2024
    • views: 1368
    Welcome to our comprehensive "Things to Do in South Bend" guide! South Bend is a vibrant city in Northern Indiana with a rich history, cultural landmarks, and outdoor adventures. In this video, we'll explore some of the most wonderful attractions, activities, and hidden gems that South Bend has to offer. From the iconic University of Notre Dame, known for its stunning architecture and lively campus life, to the beautiful St. Joseph River that provides scenic views and fun recreational options like kayaking and fishing, South Bend has something for everyone. We'll take you on a journey through the lush parks, exciting local eateries, and unique museums that showcase the area's heritage. Discover entertainment options for all ages at the South Bend Civic Theatre and the energizing atmosphere of Four Winds Field where you can catch a minor league baseball game. We'll also explore attractions like the Studebaker National Museum, which celebrates South Bend's automotive history, and the serene Potawatomi Zoo, perfect for families looking to connect with nature. Whether you're a local looking for new spots to explore or a traveler planning your next getaway, our video will provide you with all the information you need to enjoy an unforgettable experience. Don't forget to subscribe for more travel guides and tips! best things to do in south bend, south bend attractions, things to do in south bend indiana, travel south bend, exploring south bend, family activities in south bend, university of notre dame, south bend tourism, local south bend events, south bend parks, south bend restaurants, historical sites in south bend, south bend for visitors, outdoor activities in south bend, south bend travel guide, museums in south bend, south bend civic theatre, potawatomi zoo, studebaker national museum, south bend experiences ▬Contents of this video▬ 00:00 Introduction 01:00 Studebaker National Museum 01:48 University of Notre Dame 02:30 Basilica of the Sacred Heart 03:16 Potawatomi Zoo 04:05 Notre Dame Stadium 04:36 East Race Waterway 05:23 Potawatomi Park 06:10 Grotto of Our Lady Lourdes 06:43 Snite Museum of Art 07:18 Four Winds Field #bestthingstodoinsouthbend #southbendindiana #travelguide #notredame #southbendparks #southbendrestaurants #familyfuninsouthbend #southbendmuseums #indianatravel #exploresouthbend #localadventures #outhorse #southbendhistory #indianapolis #visitsouthbend #outdoorfun #culturalsights #southbendbest #things2doinindiana #southbendlife #southbendvlog Music credit: Joakim Karud-Spring Light (Vlog No Copyright Music): https://youtu.be/jZpYBUQVPlc GLITTER-WaveToys: https://youtu.be/waqcqIMaOYA Extenz - Gravity (Vlog No Copyright Music): https://youtu.be/Dqads4X-WuQ Cinematic Background Music - Mu Hanz: https://youtu.be/S6W9bNo4wHk Epic Adventure Cinematic Music - Infraction: https://youtu.be/HvtIGihCGUE Inspiring Cinematic Music - Michael Nik: https://youtu.be/heS-eGCbyVk Disclaimer: We have used video footage and images to maximize the clarity of the content, not specifically to promote any violence against the community. This content only intends to share information for educational purposes. ***Footage, music, image, and graphics used in the video belong to their respective owners, and we or this channel do not claim any right over them. This video has been produced following the Fair Usage Policy “Under Section 107” of the “Copyright Act 1976”. If you have any copyright issues, don't hesitate to get in touch with us by email. For business inquiries, please email: dotravelyt@gmail.com
    https://wn.com/Top_10_Best_Things_To_Do_In_South_Bend,_Indiana_Travel_Guide_2024
    2 Days in South Bend, Indiana: The BEST things to DO and EAT in The Bend
    17:21

    2 Days in South Bend, Indiana: The BEST things to DO and EAT in The Bend

    • Order:
    • Duration: 17:21
    • Uploaded Date: 11 Sep 2024
    • views: 912
    South Bend, Indiana is one of those places that you may easily miss when exploring places to visit in the Midwest, USA - but you shouldn't! South Bend is so much more than Notre Dame football. It's full of great places to eat and drink, water activities, fun parks and trails, and great art. If you're ready to learn about all the best things to do in South Bend, watch on! If you have 48 hours in the Bend, these are the places that you don't want to miss in South Bend and Mishawaka. Thank you Visit South Bend Mishawaka for hosting me! RELEVANT LINKS: My latest video: https://www.youtube.com/watch?v=W7lyq2azoVo&t=61s My Instagram: https://www.instagram.com/stumblinguponserendipity/ Please like and subscribe if you are enjoying my content!! 🤗 TIME STAMPS: 0:00-1:02: Introduction to my South Bend visit 1:03-2:25: Ironhand Wine Bar 2:26-3:53: South Bend Farmer's Market 3:54-5:48: InRug Co 5:49-6:36: Mishawaka River Walk 6:37-8:16: Craft One Half 8:17-9:13: Caracas Bistro 9:14-10:19: The Early Bird Eatery 10:20-12:03: Paddleboarding St. Joseph River 12:04-13:03: South Bend Chocolate Company 13:04-13:38: South Bend Museum of Art 13:39-14:04: South Bend Brew Werks 14:05-14:45: Woochi Japanese Fusion 14:46-16:21: Dainy Maid Food Hall 16:22-17:00: Thank you Visit South Bend! 17:01-17:21: Bloopers **************************************************************************** ABOUT ME My name is Dani and I'm a solo female vanlifer and full-time traveler! I am currently spending time in Idaho before heading back East for the holidays. Before this lifestyle, I spent 3 years teaching in New Jersey. COVID hit, and I took a leap of faith to follow my dreams, buy a van, and build it out myself with my dad. In May of 2022, Tripp and I hit the road in my van with many highs and many lows along the way. When I'm not in the van, I am exploring my hometown of St. Pete or traveling the world! Thank you so much for being here and please subscribe to my channel if you enjoy the content so you don't miss a video! **************************************************************************** Become a Creator: https://app.rockporch.com/Identity/Ac... Use StanStore to sell/advertise: join.stan.store/stumblinguponserendipity HIKING GEAR: Bear Spray: https://app.rockporch.com/prdlink/MyD... Gregory Hiking Daypack: https://imp.i185592.net/AWZyV1 La Sportiva Hiking Boots: https://app.rockporch.com/prdlink/Xk8... VAN ESSENTIALS: Butane Stove: https://amzn.to/3Qq8ccW Reusable Papertowels: https://www.papayareusables.com/?ref=... HIKING CLOTHES: Pants - KUHL: https://app.rockporch.com/prdlink/juF... Pants - Mountain Hardwear: https://app.rockporch.com/prdlink/kdd... Pants - Columbia: https://app.rockporch.com/prdlink/qXK... Thermal Top Base Layer - Smartwool: https://app.rockporch.com/prdlink/HzZ... Thermal Bottom Base Layer - Smartwool: https://app.rockporch.com/prdlink/5L6... Nano puff Jacket - Patagonia: https://app.rockporch.com/prdlink/i6r... CAMERA GEAR: Sony Alpha a7iv Mirrorless Camera: https://app.rockporch.com/prdlink/ZGT... Sony Sony 200-600mm f/5.6-6.3 Lens: https://app.rockporch.com/prdlink/fFb... Tamron 28-75mm f/2.8 Lens: https://app.rockporch.com/prdlink/sjc... Prograde Digital 256GB Memory Card: https://app.rockporch.com/prdlink/xHd... SanDisk Extreme Pro Portable 1TB External SSD Drive: https://app.rockporch.com/prdlink/Mbs... Peak Design Clip: https://app.rockporch.com/prdlink/nSa... Rode VideoMic GO On-Camera Microphone: https://app.rockporch.com/prdlink/VQ5... OTHER GEAR I LOVE: Best Travel Shoes - Vessi: https://crrnt.app/VESSI/-rRPKJx5 Best Reusable Water Bottle - ZOKU: https://www.zokuhome.com/discount/STU... Best Running Shoes - HOKA: https://app.rockporch.com/prdlink/4xh... Best Leggings - Outdoor Voices: https://app.rockporch.com/prdlink/6RK... DISCLAIMER: This description contains affiliate links, which means that if you click on one of the product links, I will receive a small commission at no extra cost to you. This helps support me and my channel, which in turn allows me to continue to make videos like this. Thank you so so much for your support!
    https://wn.com/2_Days_In_South_Bend,_Indiana_The_Best_Things_To_Do_And_Eat_In_The_Bend
    Full Episode: South Bend, Indiana | Main Streets
    27:55

    Full Episode: South Bend, Indiana | Main Streets

    • Order:
    • Duration: 27:55
    • Uploaded Date: 15 Mar 2022
    • views: 31715
    The history of this midwestern city is rooted in the river it sits on -and how it’s had to evolve with industry’s past and present...Oh, and also a very famous University that’s next door. Established in 1865, South Bend saw a business boom in industry thanks to the St. Joseph River. Studebaker, Oliver Chilled Plow, and Singer Sewing machines were just a few of the big names. But we can’t forget the University of Notre Dame. It’s a huge influence on economy and culture in South Bend to this day. Featured: 00:00 Intro 01:39 Studebaker Factory 03:22 South Bend Cubs 05:19 Studebaker National Museum 09:44 Notre Dame 11:44 Rohr’s 13:24 Word of Life Mural 16:09 The East Race 17:45 Howard Park 18:28 Oh Mamma’s 20:36 The South Bend Chocolate Company 24:10 Dyngus Day 25:14 South Bend Civil Rights Heritage Center -- Main Street is alive and well. It’s where the heart of the community beats the loudest. It’s also where you will find five-time Emmy award-winning actor and host John McGivern. Enjoyed by a nationwide audience, John’s unique brand of storytelling is expanding across the Midwest. Growing up in the Midwest in an Irish Catholic family, John’s own experiences and memories are relatable and remind us all of our shared Midwest heritage. Through lively interviews with local residents and civic leaders, John uncovers the uniqueness and charm of each community he visits. MainStreets.TV @mainstreetstv on social
    https://wn.com/Full_Episode_South_Bend,_Indiana_|_Main_Streets
    Driving Around Downtown South Bend, Indiana and Notre Dame Campus in 4k Video
    24:03

    Driving Around Downtown South Bend, Indiana and Notre Dame Campus in 4k Video

    • Order:
    • Duration: 24:03
    • Uploaded Date: 15 Jun 2023
    • views: 13932
    Filmed on Tuesday, May 30 2023, I drive around downtown South Bend, IN and the University of Notre Dame to see what's going on. One of the earliest known groups to occupy what would later become northern Indiana was the Miami tribe. Later, the Potawatomi moved into the region, utilizing the rich food and natural resources found along the river. The Potawatomi occupied this region of Indiana until most of them were forcibly removed in the 1840s. The South Bend area was popular because its portage was the shortest overland route from the St. Joseph River to the Kankakee River. This route was used for centuries, first by the Native Americans, then by French explorers, missionaries and traders. The French explorer René-Robert Cavelier, Sieur de La Salle, the first white European to set foot in what is now South Bend, used this portage between the St. Joseph River and the Kankakee River in December 1679. The first permanent white settlers of South Bend were fur traders who established trading posts in the area. In 1820, Pierre Frieschutz Navarre arrived, representing the American Fur Company of John Jacob Astor. He settled near what is now downtown South Bend. The settlement was first called St. Joseph's, then renamed to Southold, and finally changed to South Bend. In 1831, South Bend was laid out as the county seat with 128 residents. That same year, Horatio Chapin moved to the settlement, opened the first general store with imported goods, and helped established the first church and Sunday school. The town was formally established in 1835, with Chapin as the first president of the board of town trustees. In 1842, Father Edward Sorin founded the University of Notre Dame just north of the town. In 1852, Henry Studebaker set up Studebaker wagon shop, later becoming the world's largest wagon builder and the only one to later succeed as an automobile manufacturer. The Singer Sewing Company and the Oliver Chilled Plow Company were among other companies that made manufacturing the driving force in the South Bend economy until the mid-20th century. During this time period there was a great immigration of Europeans, such as Polish, Hungarian, Irish, German, Italian, and Swedish people to South Bend because of available employment in area factories. In 1949, legendary percussionist Lionel Hampton was informed that his concert at South Bend's Palais du Royale would be a blacks-only event; he threatened to call for a boycott of the venue, and the affair proceeded as an integrated evening, which newspapers said led to all attendees breaking out in "paroxysms of ecstasy." By 1950, more than half of all employment was in the manufacturing sector. Due to economic difficulties, Studebaker closed its automotive manufacturing plants in South Bend in December 1963. A general decline in manufacturing soon followed as industry was restructured nationwide. By 2000, manufacturing was only 16 percent of the local economy. Due to the severe loss of jobs, the city's population decreased by nearly 30,000 during that period. In 2015, the city's population increased by 286, the largest one-year growth in over twenty years. The former Studebaker plant has been developed as the Ignition Park center to attract new businesses, especially in the tech industry. South Bend has also seen new development, particularly in the tech field, a decline in unemployment, and a renewal of the downtown area. Since the 1960s, education, health care, and small business have come to the forefront of South Bend's economy, though the city has never regained the level of prosperity it enjoyed before that time. Nearby University of Notre Dame is a large contributor to the local economy. The university is the second largest employer in the city, employing 6,086 people. As of the census of 2020, there were 103,453 people residing in the city, up from 101,168 in 2010. The racial makeup of the city was 60.5% White, 26.6% African American, 0.5% Native American, 1.3% Asian, 0.1% Pacific Islander, 6.9% from other races, and 4.2% from two or more races. Hispanic or Latino of any race were 13.0% of the population. The median household income was $46,002 and the per capita income was $26,934. 20.9% of the population was living below the poverty line. #driving #travel #drivingtour
    https://wn.com/Driving_Around_Downtown_South_Bend,_Indiana_And_Notre_Dame_Campus_In_4K_Video
    Top 10 Best Tourist Places to Visit in South Bend, Indiana | USA - English
    3:56

    Top 10 Best Tourist Places to Visit in South Bend, Indiana | USA - English

    • Order:
    • Duration: 3:56
    • Uploaded Date: 02 Feb 2022
    • views: 6137
    #SouthBendPlaces #PlacesInSouthBend #SouthBendVisitPlaces #SouthBend South Bend is one of the biggest tourist attractions in USA having many best places in South Bend. South Bend is a city on the St. Joseph River in Indiana. It’s known for the adjacent University of Notre Dame, with its gold-domed main building. In the city center, the Studebaker National Museum displays classic cars made by the now-defunct local company. The nearby History Museum has exhibits spotlighting aspects of regional life. The museum also owns 3 historic homes, including the 19th-century Oliver Mansion. So to help you figure out the places you need to try, we've gathered up a bucket list of the best Places in South Bend that you won't regret going to. Wiki Peaks is on a mission to promote the tourism in the World. We are here to show you the beautiful places in the world. You can see the beauty of this world from the comfort of your home. There are many beautiful places in South Bend. USA has some of the best places in South Bend. We collected data on the top 10 places to visit in South Bend. There are many famous places in South Bend and some of them are beautiful places in South Bend. People from all over USA love these South Bend beautiful places which are also South Bend famous places. In this video, we will show you the beautiful places to visit in South Bend. Please help us in our cause and share this channel as much as possible with your friends and family. ***All images used in this video are a property of their owners. We have no intention of showing these images as our own property. We used these images just to promote tourism.***
    https://wn.com/Top_10_Best_Tourist_Places_To_Visit_In_South_Bend,_Indiana_|_USA_English
    Is South Bend Indiana one of America's Most Dangerous Cities? How Safe is South Bend?
    2:45

    Is South Bend Indiana one of America's Most Dangerous Cities? How Safe is South Bend?

    • Order:
    • Duration: 2:45
    • Uploaded Date: 02 May 2022
    • views: 7352
    Ever wonder how safe your city is? We take a look at the statistics and how it ranks among other cities in its state as well as how it compares across America. Violent Crime Statistics Property Crime Murder rates Overall Crime, including your chances of becoming a victim. How Livable the city is. Safer nearby cities. How it compares to other US cities. Support this channel with original novelty crime related Apparel https://rising-crime-news.creator-spring.com/
    https://wn.com/Is_South_Bend_Indiana_One_Of_America's_Most_Dangerous_Cities_How_Safe_Is_South_Bend
    50th annual Valley RV and Camping show returns to South Bend
    0:48

    50th annual Valley RV and Camping show returns to South Bend

    • Order:
    • Duration: 0:48
    • Uploaded Date: 09 Jan 2025
    • views: 27
    This is the first, ripe opportunity of the year to check out the latest and greatest recreational vehicles. https://www.wndu.com/2025/01/09/50th-annual-valley-r-v-camping-show-returns-south-bend/ For more Local News from WNDU: https://www.wndu.com/ For more YouTube Content: https://www.youtube.com/channel/UC7AO1aI9S3A7vrSc9wLvA-Q
    https://wn.com/50Th_Annual_Valley_Rv_And_Camping_Show_Returns_To_South_Bend
    Inside South Bend, Indiana: Pete Buttigieg’s Hometown
    7:56

    Inside South Bend, Indiana: Pete Buttigieg’s Hometown

    • Order:
    • Duration: 7:56
    • Uploaded Date: 28 Feb 2020
    • views: 15401
    What do the residents of South Bend, Ind., home to Democratic presidential candidate Pete Buttigieg, think of him? After decades of malaise, South Bend went through big changes during Buttigieg’s tenure as mayor. But there is fear that the gains have been uneven and that its fragile progress could slip away. READ MORE ABOUT THIS STORY https://www.latimes.com/politics/story/2020-02-16/presidential-candidate-pete-buttigieg-south-bend-indiana-hometown SUBSCRIBE FOR MORE VIDEOS AND NEWS http://www.youtube.com/subscription_center?add_user=losangelestimes https://www.latimes.com/subscription LET’S CONNECT: Facebook ► https://www.facebook.com/latimes Twitter ► https://twitter.com/LATimes Instagram ► https://www.instagram.com/latimes
    https://wn.com/Inside_South_Bend,_Indiana_Pete_Buttigieg’S_Hometown
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Best Things To Do in South Bend, Indiana
      4:05
      Best Things To Do in South Bend, Indianaremove from playlist
    • What the Hell Happened to Indiana? Episode 1 - South Bend
      14:47
      What the Hell Happened to Indiana? Episode 1 - South Bendremove from playlist
    • Top 10 Best Things to Do in South Bend, Indiana - Travel Guide 2024
      8:31
      Top 10 Best Things to Do in South Bend, Indiana - Travel Guide 2024remove from playlist
    • 2 Days in South Bend, Indiana: The BEST things to DO and EAT in The Bend
      17:21
      2 Days in South Bend, Indiana: The BEST things to DO and EAT in The Bendremove from playlist
    • Full Episode: South Bend, Indiana | Main Streets
      27:55
      Full Episode: South Bend, Indiana | Main Streetsremove from playlist
    • Driving Around Downtown South Bend, Indiana and Notre Dame Campus in 4k Video
      24:03
      Driving Around Downtown South Bend, Indiana and Notre Dame Campus in 4k Videoremove from playlist
    • Top 10 Best Tourist Places to Visit in South Bend, Indiana | USA - English
      3:56
      Top 10 Best Tourist Places to Visit in South Bend, Indiana | USA - Englishremove from playlist
    • Is South Bend Indiana one of America's Most Dangerous Cities? How Safe is South Bend?
      2:45
      Is South Bend Indiana one of America's Most Dangerous Cities? How Safe is South Bend?remove from playlist
    • 50th annual Valley RV and Camping show returns to South Bend
      0:48
      50th annual Valley RV and Camping show returns to South Bendremove from playlist
    • Inside South Bend, Indiana: Pete Buttigieg’s Hometown
      7:56
      Inside South Bend, Indiana: Pete Buttigieg’s Hometownremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Best Things To Do in South Bend, Indiana

    Welcome to South Bend, Indiana, a city brimming with excitement and diverse attractions. Join us as we explore the Best Things To Do in this vibrant Midwestern gem. University of Notre Dame: Begin your journey at the iconic University of Notre Dame. Stroll through the picturesque campus and don't miss the breathtaking Basilica of the Sacred Heart. Studebaker National Museum: Immerse yourself in automotive history at the Studebaker National Museum, featuring an impressive collection of vintage cars. Potawatomi Zoo: Enjoy a family-friendly day at the Potawatomi Zoo, home to a wide variety of animals from around the world. East Race Waterway: For thrill-seekers, the East Race Waterway offers exciting white-water rafting adventures right in the heart of the city. South Bend River Lights: Experience the mesmerizing River Lights along the St. Joseph River, where music and lights come together for a dazzling display. South Bend Cubs: Catch a baseball game at Four Winds Field and cheer for the South Bend Cubs, a Class A minor league team affiliated with the Chicago Cubs. Howard Park: Howard Park is a haven for relaxation and recreation, featuring a stunning ice skating ribbon in the winter and green spaces in the summer. South Bend Chocolate Company: Satisfy your sweet tooth with a visit to the South Bend Chocolate Company, known for its delectable confections. Morris Performing Arts Center: Enjoy a live performance at the Morris Performing Arts Center, hosting a variety of shows, from Broadway musicals to concerts. Eddy Street Commons: Explore Eddy Street Commons, a vibrant urban village with diverse dining, shopping, and entertainment options. South Bend, Indiana, is an enchanting blend of culture, history, and outdoor adventures. Join us on this journey through this dynamic city! VisitOurChannel: https://bit.ly/3hLpLmL Book Your Vacation and Get BIG Discounts: Trip.com: https://tinyurl.com/muwxr54k CheapOair: https://tinyurl.com/5b6thex7 FlightHub: https://bit.ly/3BHEpp4 Priceline: https://bit.ly/3C2HeBm MakeMoneyOnlineWhileDoingNothing: HoneyGain: https://bit.ly/3wKv6ja InvestOnline (Sign up and Get 2 Free Stocks) Wealthsimple: https://bit.ly/3df4Pll To Support this channel: BuyMeCoffee: https://bit.ly/3wypitf Contact us via email: lyricsfeature@gmail.com #travelscout
    4:05
    Best Things To Do in South Bend, Indiana
    Welcome to South Bend, Indiana, a city brimming with excitement and diverse attractions. J...
    published: 17 Oct 2023
    Play in Full Screen
    14:47
    What the Hell Happened to Indiana? Episode 1 - South Bend
    South Bend might be the worst place you've never heard of before. South Bend. If you hav...
    published: 28 Sep 2021
    Play in Full Screen
    8:31
    Top 10 Best Things to Do in South Bend, Indiana - Travel Guide 2024
    Welcome to our comprehensive "Things to Do in South Bend" guide! South Bend is a vibrant c...
    published: 16 Aug 2024
    Play in Full Screen
    17:21
    2 Days in South Bend, Indiana: The BEST things to DO and EAT in The Bend
    South Bend, Indiana is one of those places that you may easily miss when exploring places ...
    published: 11 Sep 2024
    Play in Full Screen
    27:55
    Full Episode: South Bend, Indiana | Main Streets
    The history of this midwestern city is rooted in the river it sits on -and how it’s had to...
    published: 15 Mar 2022
    Play in Full Screen
    24:03
    Driving Around Downtown South Bend, Indiana and Notre Dame Campus in 4k Video
    Filmed on Tuesday, May 30 2023, I drive around downtown South Bend, IN and the University ...
    published: 15 Jun 2023
    Play in Full Screen
    3:56
    Top 10 Best Tourist Places to Visit in South Bend, Indiana | USA - English
    #SouthBendPlaces #PlacesInSouthBend #SouthBendVisitPlaces #SouthBend South Bend is one of ...
    published: 02 Feb 2022
    Play in Full Screen
    2:45
    Is South Bend Indiana one of America's Most Dangerous Cities? How Safe is South Bend?
    Ever wonder how safe your city is? We take a look at the statistics and how it ranks among...
    published: 02 May 2022
    Play in Full Screen
    0:48
    50th annual Valley RV and Camping show returns to South Bend
    This is the first, ripe opportunity of the year to check out the latest and greatest recre...
    published: 09 Jan 2025
    Play in Full Screen
    7:56
    Inside South Bend, Indiana: Pete Buttigieg’s Hometown
    What do the residents of South Bend, Ind., home to Democratic presidential candidate Pete ...
    published: 28 Feb 2020
    Play in Full Screen

    South Bend, Indiana

    The city of South Bend is the county seat of St. Joseph County, Indiana, United States, on the St. Joseph River near its southernmost bend, from which it derives its name. As of the 2010 census, the city had a total of 101,168 residents; its Metropolitan Statistical Area had a population of 318,586 and Combined Statistical Area of 721,296. It is the fourth-largest city in Indiana, serving as the economic and cultural hub of Northern Indiana. The highly ranked University of Notre Dame is located just to the north in unincorporated Notre Dame, Indiana and is an integral contributor to the region's economy.

    The area was originally settled in the early 19th century by fur traders and was established as a city in 1865. The St. Joseph River shaped South Bend's economy through the mid-20th century. River access assisted heavy industrial development such as that of the Studebaker Corporation, the Oliver Chilled Plow Company, and other large corporations.

    The population of South Bend declined after 1960, when it had a peak population of 132,445. This was chiefly due to migration to suburban areas as well as the demise of Studebaker and other heavy industry. Today, the largest industries in South Bend are health care, education, small business, and tourism. Remaining large corporations include Crowe Horwath, Honeywell, and AM General.

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