Savannah Philharmonic welcomes JoAnna Ferrer as 2024-25 Concertmaster (2024)

  • Music

July 28, 2024

Savannah Philharmonic welcomes JoAnna Ferrer as 2024-25 Concertmaster (1)

Lisa-Marie Mazzucco

Violinist JoAnna Farrer

Press Release from Savannah Philharmonic: Farrer will debut as Concertmaster on the evening of the August 24, for the 16th season opener, 'Romantic Rachmaninoff.'

Edited ByConnect Savannah Staff

The Savannah Philharmonic is pleased to announce the appointment of JoAnna Farrer as its new Concertmaster, heralding an exciting new chapter for the upcoming 2024-2025 season. Farrer, a distinguished violinist known for her exceptional talent and leadership, will join the Philharmonic bringing her extensive experience and vibrant energy to the ensemble.

JoAnna Farrer is a member of the New Jersey Symphony and has performed as a soloist with many ensembles, including the Goteborgs Symfoniker, The Philadelphia Orchestra, Orpheus Chamber Orchestra, and the Israel Philharmonic. As a concertmaster, she has worked with conductors such as James Conlon, James DePreist, and Lorin Maazel, including in performances of Britten's "The Turn of the Screw" at the Kennedy Center with Maestro Maazel. In previous seasons, Farrer has served as guest concertmaster of the Vancouver Symphony Orchestra, and toured with the Orpheus Chamber Orchestra, New York Philharmonic, and National Arts Centre Orchestra of Canada.

Active as a Celtic musician, Farrer has performed mixed-.genre works on both electric and acoustic instruments in New York, Chicago, Paris, and London. Her debut album, "Liminal Paths," was released in 2022, and she has performed with Irish and Scottish artists including Alasdair Fraser, Andy Lamy, and Natalie Haas. She has a wide variety of classical chamber music experience, including performances with artists such as Pinchas Zukerman, Emanuel Ax and Itzhak Perlman and has appeared at Merkin Hall with the Chamber Music Society of Lincoln Center.

Farrer has performed as a featured artist in the International Chamber Music Festival in Lima, Peru, and has also performed as the United States representative at the Kyoto International Music Festival. She is an alumna of the Perlman Music Program, as well as the National Arts Centre Young Artist Programme as a student of Pinchas Zukerman, and she completed her master of music degree at The Juilliard School under the tutelage of Glenn Dicterow, former concertmaster of the New York Philharmonic. She makes her home with her husband, Darryl Kubian, in northeastern Vermont, with their many musical instruments and beloved farm animals.

click to enlarge

Frank Fortune

Dr. Amy Williams, Executive Director of Savannah Philharmonic

"We are delighted to welcome JoAnna to the Savannah Philharmonic family," said Amy Williams, Savannah Philharmonic Executive Director. "Her extraordinary musicianship and commitment to excellence align perfectly with our vision. We are confident that she will inspire both our orchestra and our community."

Farrer’s debut with the Savannah Philharmonic as Concertmaster will take place at the 16th season opener, “Romantic Rachmaninoff,” on Saturday, August 24, at the Lucas Theatre for the Arts. With tickets for the 2024-2025 season available now, the Savannah Philharmonic encourages everyone to join in welcoming JoAnna Farrer and experiencing the exceptional performances planned for the year.

For more information, please visit www.savannahphilharmonic.org.

') let lineHeight = jQuery('[line-height-check]').get(0).clientHeight; jQuery('[line-height-check]').remove() if (jQuery(element).prop('tagName').match(/HIDDEN/i) !== null) { jQuery(element).children('div').last().css({ marginBottom: `${lineHeight*2}px` }); } else { jQuery(element).css({ marginTop: `${lineHeight*2}px`, marginBottom: `${lineHeight}px` }); } // const insertionBlockClass = `fdn-paragraph-insertion-block`; const styleElementHook = `fdn-paragraph-insertion-styles`; jQuery(element).addClass(insertionBlockClass); if (jQuery(`[${styleElementHook}]`).length === 0) { jQuery('div.fdn-content-body, div #storyBody').append('

') const paragraphLineHeight = jQuery('[line-height-check]').get(0).clientHeight; jQuery('[line-height-check]').remove() const styleElement = jQuery(`

`); const styleText = ` div.fdn-content-body br+.${insertionBlockClass}:not([hidden]), div #storyBody br+.${insertionBlockClass}:not([hidden]) { margin-top: ${paragraphLineHeight*2}px; margin-bottom: ${paragraphLineHeight}px; } div.fdn-content-body br+.${insertionBlockClass}[hidden] > div:last-of-type, div #storyBody br+.${insertionBlockClass}[hidden] > div:last-of-type { margin-bottom: ${paragraphLineHeight*2}px; } ` styleElement.text(styleText); jQuery('head').append(styleElement); } // } } jQuery(element).insertBefore(this.paragraphEndNodes[index]); } else { console.warn('Foundation.ParagraphTool.insertElemenAt: invalid insertion index', index); } } this.insertElemenAtEnd = function (element) { if (this.paragraphEndNodes.length) { let lastNode = this.getNodeAtIndex(this.paragraphEndNodes.length -1); if (this.isDoubleBrParagraphBreak(lastNode) || this.isBrParagraphBreakBeforeBlockElement(lastNode)) { if (jQuery(element).get(0).tagName.match(/SCRIPT/i) !== null) { jQuery('
').insertAfter(this.paragraphEndNodes[index]); jQuery('
').insertAfter(this.paragraphEndNodes[index]); } else { jQuery('div.fdn-content-body, div #storyBody').append('

') let lineHeight = jQuery('[line-height-check]').get(0).clientHeight; jQuery('[line-height-check]').remove() if (jQuery(element).prop('tagName').match(/HIDDEN/i) !== null) { jQuery(element).children('div').last().css({ marginBottom: `${lineHeight*2}px` }); } else { jQuery(element).css({ marginTop: `${lineHeight*2}px`, marginBottom: `${lineHeight}px` }); } } } } this.bodyContainer.append(element); } this.getNodeAtIndex = function (index) { return this.paragraphEndNodes[index]; } }

`); } var paragraphCount = myParagraphTool.getParagraphEndNodeCount(); // No need to insert if there aren't enough paragaphs if (paragraphCount >= parseInt(item.requiredCountToDisplay)) { // Matches specific paragraph insertion indexes if (item.insertPoint.match(/^\d+$/) !== null) { var insertIndex = parseInt(item.insertPoint) - 1; // Insert within content if (insertIndex < paragraphCount) { myParagraphTool.insertElemenAtIndex(componentElement, insertIndex); } // Append to the end if the insert point is beyond the paragraph count else { myParagraphTool.insertElemenAtEnd(componentElement) } } // Matches for 1/2, 1/4, 2/3, 5/6, etc else if (item.insertPoint.match(/^[1223456]\/[23456]$/) !== null) { var fractionMatch = new RegExp(/^([123456])(?:\/)([23456]$)/); var fractionPart = parseInt(item.insertPoint.match(fractionMatch)[1]); var fractionWhole = parseInt(item.insertPoint.match(fractionMatch)[2]); var fractionValue = fractionPart / fractionWhole; var fractionIndex = Math.floor(myParagraphTool.paragraphEndNodes.length * fractionValue) - 1; myParagraphTool.insertElemenAtIndex(componentElement, fractionIndex); } // Matches for every Nth insertion point else if (item.insertPoint.match(/^\d*th$/i) !== null) { var intervalIndex = parseInt(item.insertPoint.match(/^(\d*)th$/i)[1]); var startingIndex = parseInt(item.startingPoint) - 1; var insertionMax = parseInt(item.maxInsertions) || 100; var insertionCount = 0; for (var i = startingIndex; i < myParagraphTool.paragraphEndNodes.length && insertionCount < insertionMax; i++) { if ((i - startingIndex) % intervalIndex === 0) { let currentNode = myParagraphTool.getNodeAtIndex(i); const clonedComponent = componentElement.clone(); myParagraphTool.insertElemenAtIndex(clonedComponent, i); insertionCount++; } } } } }); Foundation.Content['22699677'].setupInlineComponents = function () { return true; }; if (typeof callback === 'function') { callback(); } }, 200); } Foundation.Content['22699677'].previewInsertionPoints = function () { var myParagraphTool = Foundation.Content['22699677'].paragraphTool myParagraphTool.paragraphEndNodes.each((index, item) => { const insertionPointPlaceholder = jQuery(`

Insertion point ${index+1}

`) myParagraphTool.insertElemenAtIndex(insertionPointPlaceholder, index); }); return 'Paragraph insertion placeholders applied.'; }

Savannah Philharmonic welcomes JoAnna Ferrer as 2024-25 Concertmaster (2024)
Top Articles
About Your Appointment
US Patent Application for GLUTARIMIDE-CONTAINING PAN-KRAS-MUTANT DEGRADER COMPOUNDS AND USES THEREOF Patent Application (Application #20240217972 issued July 4, 2024)
Diario Las Americas Rentas Hialeah
Live Basketball Scores Flashscore
Chambersburg star athlete JJ Kelly makes his college decision, and he’s going DI
From Algeria to Uzbekistan-These Are the Top Baby Names Around the World
David Packouz Girlfriend
Rubfinder
Becky Hudson Free
104 Presidential Ct Lafayette La 70503
Simon Montefiore artikelen kopen? Alle artikelen online
Spartanburg County Detention Facility - Annex I
charleston cars & trucks - by owner - craigslist
Hilo Hi Craigslist
Procore Championship 2024 - PGA TOUR Golf Leaderboard | ESPN
Troy Bilt Mower Carburetor Diagram
How to Create Your Very Own Crossword Puzzle
No Hard Feelings - Stream: Jetzt Film online anschauen
Strange World Showtimes Near Roxy Stadium 14
Costco Great Oaks Gas Price
Riherds Ky Scoreboard
Holiday Gift Bearer In Egypt
Southwest Flight 238
2023 Ford Bronco Raptor for sale - Dallas, TX - craigslist
Gen 50 Kjv
Delta Math Login With Google
Elanco Rebates.com 2022
Red Sox Starting Pitcher Tonight
Everstart Jump Starter Manual Pdf
Scioto Post News
New Gold Lee
拿到绿卡后一亩三分地
Hisense Ht5021Kp Manual
Avance Primary Care Morrisville
Stafford Rotoworld
Academy Sports New Bern Nc Coupons
Worcester County Circuit Court
Craigslist Com Panama City Fl
Subdomain Finder
Kutty Movie Net
Rocky Bfb Asset
Cocorahs South Dakota
Martha's Vineyard – Travel guide at Wikivoyage
Toomics - Die unendliche Welt der Comics online
What is 'Breaking Bad' star Aaron Paul's Net Worth?
Europa Universalis 4: Army Composition Guide
Okta Login Nordstrom
Horseneck Beach State Reservation Water Temperature
Mytmoclaim Tracking
Edict Of Force Poe
Used Curio Cabinets For Sale Near Me
Latest Posts
Article information

Author: Fr. Dewey Fisher

Last Updated:

Views: 6171

Rating: 4.1 / 5 (62 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Fr. Dewey Fisher

Birthday: 1993-03-26

Address: 917 Hyun Views, Rogahnmouth, KY 91013-8827

Phone: +5938540192553

Job: Administration Developer

Hobby: Embroidery, Horseback riding, Juggling, Urban exploration, Skiing, Cycling, Handball

Introduction: My name is Fr. Dewey Fisher, I am a powerful, open, faithful, combative, spotless, faithful, fair person who loves writing and wants to share my knowledge and understanding with you.