Skip to main content

Sarah Chang, a true prodigy in the era when there were no social media

I have always been fascinated, as many of you have been, by the unbelievable qualities demonstrated by true child prodigy.  One such person I have been especially fascinated by is the internationally acclaimed violinist Sarah Chang (home page@sarahchang).

There was no internet in 1986 when Sarah Chang auditioned at the tender age of 5 for Juillard playing Bruch's violin concerto.  However fortunately we can have a glimpse of what an unbelievable talent she had at this age thanks to a video of her playing around that age.  The sound and video quality is not great but it is such a fantastic historic artifact.



When she had just turned 9 (I know lots say 8 but she turned 9 on December 10, 1989), Zubin Mehta then conductor of the New York Philharmonic called her up on Thursday January 11, 1990 to ask her if she would audition the next day.  After the audition he called her back to ask her if she could play the next day to replace then Concert master Glenn Dicterow, but that there was just one little problem; there was no rehearsal time available so she would have to play without rehearsing first.  She accepted and this is how Sarah debuted.

Here is a copy of the program that comes from the New York Philharmonic archives.


This is the text from the program (with handwritten annotations in courrier italic font):

Educational Concert 
ZUBIN MEHTA, Music Director HOME OF THE NEW YORK PHILHARMONIC 
478th and 479th YOUNG PEOPLE'S CONCERTS (FOUNDED BY ERNEST SCHELLING IN 1024) 
Wednexday Morning, January 10, 1990 at 11:00 11,464th and ll,467th Concerts 
Saturday Afternoon, janunry 13, 1990, at 2:00 
Zubin Mehta, Conductor and Host/Commentator 
GLENN DICTEROW, Violinist SARAH CHANG, VIOLIN
PHILIP SMITH,Trumpeter 
BEETHOVEN "Leonore" Overture No. 3, C major, Opus 72A* 
BIZET-WAXMAN  "Carmen" Fantasy for Violin and Orchestra 
HAYDN 
Concerto for Trumpet and Orchestra, 
E-flat major 
I Allegro 
II Andante 
lll Finale 
PAGANINI  CONCERTO, VIOLIN, NO. 1, MVT 1

RAVEL "Bolero" 
* Recorded by the New York Philharmonic and currently available 
Young People s Concerts are funded bv the MARIE BAIER FOUNDATION, the CHARLES E. CULPEPER FOUNDATION, INC., the BILLY ROSE FOUNDATION MRS. WILLIAM P. SCHWEITZER, and an endowment from the WILLARD T.C. JOHNSON FOUNDATION, INC. 
Zubin Mehta's appearance is endowed by MR. AND MRS. LAURANCE S. ROCKEFELLER and IBM CORPORATION. 
Major support for this and other Educational Activities is provided bv endowments from the 
EXXON CORPORATION and the WILLIAM RANDOLPH HEARST EDUCATIONAL ENDOWMENT FUND. 
The programs of the Philharmonic are made possible in part with public funds from the New York State Council on the Arts and by a grant from the National Endowment for the Arts in Washington, D.C., a Federal agency. 
Steinway Piano 
Deutsche Grammophon, London, New World, RCA, Sony Classical, Teldec 

Comments

Popular posts from this blog

Handling multipart form data in Spring 3.1

Introduction Multipart mime encoded is a format used to transmit binary and arbitrary data in 1 single HTTP request transaction. In this post, I will describe how to create and process multipart form data using Spring 3.1, the leading industry standard java application framework for creating Java web application.  I will start the discussion from the user perspective by talking about two main use cases and will expand it by describing how these two use cases translate into 7 possible application system use cases. Use Cases Here are some use cases of this feature: A browser submits or uploads a file to a web server using an HTML page. This is by far the most common use case of the multipart form data feature. A multipart is required because the form data and the file are both included in the request body. A java program (a java application or servlet instance) sends multipart form data to a web server (most likely a web service).  This is

Tutorial on how to write and run a javaFX 11 Spring Boot program using Eclipse

Since the decoupling of javaFX from the JDK (see http://openjfx.io ) it has become somewhat of a challenge to use javaFX with the new module capability since java 9.  This tutorial is a brief roadmap between a java 8 javafx to the java 11 version.  All code for this sample resides in https://github.com/marioja/javafx  and can be imported into eclipse and should run as is.  You can also do this manually following these instructions. First you need to use an eclipse that supports the java 11 execution environment (Eclipse 2018-12 at the time of this writing).  Then you need to make sure you have a java 11 jdk installed(11.0.2 at the time of this writing).  I downloaded openjdk11  and unzipped into a folder on my home directory (user profile on windows).  Lets call this directory jdk-11.0.2.  You should add the eclipse -vm argument in the eclipse.ini file  to select jdk-11.0.2. Start eclipse and create a brand new workspace (one that does not exist).  I called it javafx-tutorial.  If

Put your WARs on a diet with Maven: Maven and skinny wars!

I have seen a lot of confusion and misunderstanding on what is and why use a java enterprise concept called skinny war . In simple terms , a skinny war is a WAR where some of its dependencies are moved from the WAR module WEB-INF/lib to the EAR lib folder .   This post is specifically written to deal with skinny wars and does not explain or go into details which jars must be in the WAR class loader and which one do not have to . It is assumed that the reader is familiar with this concept and the concept of the WAR class loader versus the application class loader . Suffice it to say that typically, JAR that must be scanned by CDI usually belongs in the WAR class loader . Web fragments and jars with tag libraries are other candidates . Also, all test and provided scope artifacts must be specified in the WAR module as having maven remove them from the WAR does not make sense as they were never to be put there and having them in a deps POM file does not work . They will not be e