- published: 01 Jun 2013
- views: 61488
'+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; })); }); -->
Nadja Salerno-Sonnenberg (born January 10, 1961) is an American classical violinist and teacher.
Salerno-Sonnenberg was born in Rome, Italy. Her father left when she was three months old. She immigrated with her mother to the United States at the age of eight, relocating to Cherry Hill, New Jersey. She studied at the Curtis Institute of Music and later with Dorothy DeLay at the Juilliard School of Music and the Aspen Music Festival and School.
In 1981, she became the youngest-ever prize winner in the Walter W. Naumburg International Violin Competition. She received an Avery Fisher Career Grant in 1983, and in 1999 she was awarded the Avery Fisher Prize for "outstanding achievement and excellence in music".
In 1994, Salerno-Sonnenberg badly injured her left pinkie while chopping onions in the kitchen; she was making Christmas dinner for friends and family. Her fingertip was surgically reattached, after which it took six months to heal. During that time, she refingered pieces for three fingers and continued to perform.
Salerno [saˈlɛrno] listen is a city and comune in Campania (south-western Italy) and is the capital of the province of the same name. It is located on the Gulf of Salerno on the Tyrrhenian Sea.
Salerno was an independent Lombard principality in the early Middle Ages. During this time, it became the site of the first medical school in the world. In the 16th century, under the Sanseverino family, among the most powerful feudal lords in southern Italy, the city became a great centre of learning, culture and the arts, and the family hired several of the greatest intellectuals of the time. Later, in 1694, the city was struck by several catastrophic earthquakes and plagues. After a period of Spanish rule which would last until the 18th century, Salerno became part of the Parthenopean Republic.
In recent history the city hosted the King of Italy, who moved from Rome in 1943 after Italy negotiated a peace with the Allies in World War II. A brief so-called "government of the South" was then established in the town, which became the "capital" of Italy for some months. Some of the Allied landings during Operation Avalanche (the invasion of Italy) occurred near Salerno.
Salerno is a surname. Notable people with the surname include:
Salerno a town in Campania.
Salerno may also refer to:
Nadja Salerno-Sonnenberg Plays Mendelssohn's Violin Concerto on the Tonight Show (With Johnny Carson)
New Orleans Opera and Music Inside Out present a new video series inspired by the Alan Lomax and Jelly Roll Morton interviews. Nadja Salerno-Sonnenberg — is a world-renowned violinist, recording artist, and educator, currently in residence at Loyola University in New Orleans. A child prodigy in Rome, she and her family moved to the United States to pursue her musical training in Philadelphia at the Curtis Institute of Music and later in Manhattan at Juilliard. In 1981, Salerno-Sonnenberg won the Walter W. Naumberg International Violin Competition. She is also a recipient of the Avery Fisher Prize “for outstanding achievement and excellence in music.” She is the founder of NSS Music. This is the second of seven videos. Visit https://neworleansopera.org/opera-and-all-that-jazz for more ...
BACH Violin Concerto in A minor 0:40- I- Allegro 4:46- II- Andante 12:06- III- Allegro assai 16:42- Interview
Nadja Salerno-Sonnenberg, violin, and Anne-Marie McDermott, piano, perform Rachmaninoff's Vocalise at an intimate recital in the lobby of San Francisco's Classical 102.1 KDFC-FM (www.kdfc.com). The recital was just days before their Russian-themed concerts with the New Century Chamber Orchestra.
Nadja Salerno-Sonnenberg conducts a violin masterclass for Loyola students.
Nadja Salerno-Sonnenberg, one of the most popular and best-loved violinists of Colorado Symphony audiences, joins the Symphony in a program that celebrates composers of the Americas. Piazzolla's Four Seasons of Buenos Aires -- the Tango master's greatest creation for solo violin -- presents a vividly rich picture. Copland's third and final symphony is widely recognized as the essential American symphony. Based on his famous 'Fanfare for the Common Man,' Copland's Symphony No. 3 celebrates the optimism and heroism of his generation.
Max Bruch - Violin Concerto No. 1 in G minor
Nadja Salerno-Sonnenberg puts together a concert with some friends.
St. Paul Suite – Gustav Holst 1st movement (Jig); 4th movement (Dargason) Praeludium and Allegro – Fritz Kreisler “Hoe-Down” from Rodeo – Aaron Copland Violins: Nadja Salerno-Sonnenberg, Melissa Moore, Samuel Martin, Kate Tutaj Violas: Ethan Thompson, Christian King, Elizabeth Tazzare Cello: Celia Watkins Bass: Caura Holiday Full program and upcoming livestream schedule available at presents.loyno.edu
Loyola New Orleans' School of Music Resident Artist Nadja Salerno-Sonnenberg performs excerpts from Vivaldi's Four Seasons with the Loyola Chamber Orchestra.
👕 Visit our store for Our Unspoiled Italy merchandise: https://ourunspoileditaly.myspreadshop.com/all ☕️ Buy us a coffee, please: https://bmc.link/UnspoiledItaly #youtuber #fun #youtubechannel #vlog #subscribe
In this video, I answer your top questions about visiting Salerno and share what you need to know. If you plan to visit Salerno or the Amalfi - then this video is essential viewing! NEW VIDEOS EVERY WEEK, SUBSCRIBE! http://bit.ly/MsBritaly ** CHECK OUT MY NEW SALERNO TRAVEL GUIDE ** My Insider Guide to Salerno - a 46 page Digital Travel Guide with everything you need to know for your trip to Salerno: https://msbritaly.com/salerno * VIDEO CHAPTERS * 00:00 Introduction 01:07 Question 1 04:38 Question 2 05:54 Question 3 07:46 Question 4 11:23 Question 5 12:48 Question 6 14:55 Question 7 15:48 Question 8 17:22 Question 9 * LINKS I MENTION* https://www.travelmar.it/en/index https://www.giardinodellaminerva.it/ * VIDEOS I MENTION * See THIS in SALERNO Italy https://youtu.be/tUMY1ySLG...
#SalernoPlaces #PlacesInSalerno #SalernoVisitPlaces #BestPlacesInSalerno #SalernoItaly #Salerno Salerno is one of the biggest tourist attractions in Italy having many best places in Salerno. Salerno is a port city southeast of Naples, in Italy. Atop Monte Bonadies, the centuries-old Arechi Castle has sea views, plus Museo Medievale del Castello, exhibiting medieval ceramics and coins. In town, built on the ruins of a Roman temple, is Salerno Cathedral. It has Byzantine bronze doors, a baroque crypt and a marble altar. The terraced Minerva’s Garden has been growing medicinal plants since the 14th century.. As Salerno famous places has such a long history and covers a lot of ground, it means that there is a huge amount to see and do – but as best places in Salerno is so well connected even...
Salerno Italy & The Beautiful Salerno Italy Beach, Salerno Città & lungomare Salerno Italy is a port city southeast of Naples, in Italy. Atop Monte Bonadies, the centuries-old Arechi Castle has sea views, plus Museo Medievale del Castello, exhibiting medieval ceramics and coins and also contains the beautiful Salerno Italy Beach!. In town, built on the ruins of a Roman temple, is Salerno Cathedral. It has Byzantine bronze doors, a baroque crypt and a marble altar. Salerno Città….The terraced Minerva’s Garden has been growing medicinal plants since the 14th century. Salerno has the beautiful salerno lungomare, salerno centro storico, lungomare di salerno and luminarie salerno ! Salerno Italy is often overlooked but it's a lively city and a crucial crossroads. The busy port town is situat...
In this video, I share what NO Travel Agent will tell you about Salerno. I love Salerno but I think it’s very important that when you come on holiday here, you have a realistic expectation of what your experience will be like. This ensures that you can actually enjoy all that Salerno has to offer! So if you are planning on visiting Salerno and you want to know what you need to be aware of, then watch this video! NEW VIDEOS EVERY WEEK, SUBSCRIBE! http://bit.ly/MsBritaly * VIDEO CHAPTERS * 0:00 Intro 0:32 First thing that NO Travel Agent will tell you 2:52 Second thing that NO Travel Agent will tell you 4:48 Third thing that NO Travel Agent will tell you 5:59 Fourth thing that NO Travel Agent will tell you 9:12 Fifth thing that NO Travel Agent will tell you 10:46 Sixth thing that NO Trave...
DISCOVER SALERNO - A walking tour of Italy's most beautiful city #4k #italy Salerno is a lively seaport on the southeastern edge of Italy's Amalfi Coast. Though the region is typically known as a jet-setters' paradise, less glitzy, Salerno has become a popular destination for travellers seeking a more tranquil, but nonetheless fascinating place to discover ancient historical sights, sparkling beaches, nature parks, and authentic southern Italian cuisine. Join me on my Adventures in Italy! TIMESTAMPS: 00:00 - Teaser 00:19 - OOTD 😁 00:23 - Walking Tour of Salerno begins with brief history 00:29 - Map location of Salerno 00:35 - Salerno beach views 04:31 - Duomo (Cathedral) of Salerno 07:24 - Pope Gregory VII Tomb in Duomo (Cathedral) of Salerno 09:47 - Giardino della Minerva (Miner...
In this video, I show you Salerno in 2024. I last did a walk around vlog in Salerno back in 2022 and a lot has changed since then! So if you're planning to visit Salerno soon, then this video will give you a taste of what to expect! NEW VIDEOS EVERY WEEK, SUBSCRIBE! http://bit.ly/MsBritaly ** CHECK OUT MY NEW SALERNO TRAVEL GUIDE ** My Insider Guide to Salerno - a 46 page Digital Travel Guide with everything you need to know for your trip to Salerno: https://msbritaly.com/travel-guides * VIDEO CHAPTERS * 00:00 Introduction 00:12 Walk around Salerno 05:27 Reflections * VIDEOS I MENTION * Amalfi - what you need to know https://youtu.be/n0hVAbg5R_A Salerno - Two years later https://youtu.be/5P-1oWHKCXo * CHECK OUT MY WEBSITE AND GUIDES * https://msbritaly.com * LISTEN TO MY NEW PODCA...
On September 9th, 1943, the Allies launched Operation Avalanche, the amphibious assault on mainland Italy, at the beaches near the coastal town of Salerno. The Germans reacted swiftly. For the next few days, the men of the 5th US Army fought a hard battle, repelling countless German counterattacks, and managed to hold on. If you like the video, please consider subscribing to the channel. https://www.youtube.com/channel/UCxU2K-KgYS8LQWtOkQbbs5A?sub_confirmation=1 If you want to support the channel, gain access to extra content and source footage used for this video, please consider joining my Patreon page: https://www.patreon.com/FromtheBattlefields Battle of Salerno - Part 2: https://youtu.be/3ylPbGGptQs #worldwartwo #militaryhistory #ww2 #italianfront Twitter: https://twitter.com/FBa...
Travelling by Ferry in Campania, Italy | The Scenic Travel from Salerno to the Amalfi Coast The most common way to travel between Salerno and Amalfi Town is by ferry. The ferry ride to the Amalfi Coast offers the traveler scenic views and a comfortable trip. The ferries leave from the Port of Salerno and arrive at Amalfi Harbor Marina Coppola. Amalfi is the town that gives the name to the area and it is a starting point to visit the Coast. Amalfi lies at the foot of Monte Cerreto (1,315 metres) surrounded by soaring cliffs and coastal scenery. The town is located mostly vertical between the water and the mountains and has the typical appearance of the towns in the area. Amalfi is a historical town with wonderful landmarks and a monumental Cathedral with a beautiful church tower bell visibl...
In this video, I share my first afternoon in Salerno - two years after I left. From an 8 hour train journey through to an afternoon spent at Mostra della Minerva - an annual plant and flower festival - plus my reflections on what it feels like to be back! Watch this video if you're curious to know what Salerno is like two years later. NEW VIDEOS EVERY WEEK, SUBSCRIBE! http://bit.ly/MsBritaly ** CHECK OUT MY NEW SALERNO TRAVEL GUIDE ** My Insider Guide to Salerno - a 46 page Digital Travel Guide with everything you need to know for your trip to Salerno: https://msbritaly.com/travel-guides * VIDEO CHAPTERS * 00:00 Introduction 00:21 Train Journey 01:56 Bed & Breakfast 02:35 Mostra della Minerva 08:16 First Day Reflections * VIDEOS I MENTION * What NO Travel Agent will tell you about ...
Nadja Salerno-Sonnenberg (born January 10, 1961) is an American classical violinist and teacher.
Salerno-Sonnenberg was born in Rome, Italy. Her father left when she was three months old. She immigrated with her mother to the United States at the age of eight, relocating to Cherry Hill, New Jersey. She studied at the Curtis Institute of Music and later with Dorothy DeLay at the Juilliard School of Music and the Aspen Music Festival and School.
In 1981, she became the youngest-ever prize winner in the Walter W. Naumburg International Violin Competition. She received an Avery Fisher Career Grant in 1983, and in 1999 she was awarded the Avery Fisher Prize for "outstanding achievement and excellence in music".
In 1994, Salerno-Sonnenberg badly injured her left pinkie while chopping onions in the kitchen; she was making Christmas dinner for friends and family. Her fingertip was surgically reattached, after which it took six months to heal. During that time, she refingered pieces for three fingers and continued to perform.
[Big Pokey:]
It's a bunch of niggaz, knocking my hustling
I'm on the grind going hard out the trunk, like Rocky when rushing
A empty clip, the only thang stop me from busting
When I roll nigga folding, it's not a discussion
Ask yourself this question, what's colder than Dina
It's a bunch of money on my den, fuck rolling a beamer
Go hard or go home, hoe you know I'm a dreamer
With the heart to go and get it, how you know I'm a schemer
Sensei need a bad bitch, I'm looking for Trina
Put this ham in they yams, have her looking for Xena
We hit the do' like a battle ram, me and my team
I pop bottles every now and then, but me I'm a leaner
It's a small world, play pussy get fucked
Like a call girl, bout to fold it like a tall world
Fuck what they say-a, dog I'm some'ing like a playa
Bitches know me everywhere, motherfucker I'm all world
[Mike D:]
I'm some'ing like a playa, some'ing like a pimp
Catch me at Papa Deauxxx, eating lobsters and shrimps
Y'all know who it is, and I'm right back at it
It's Boss Hogg Corleone, now come on ride with me daddy
Across the state line, I do it every time
It ain't hard to tell, how I'm on my grind
I'm like a Carl Smitty, in his prime time
But you can get it there, we riding for the same side
Then you done fucked up, gave me life again
MJ when I point em out, I want em all dead men
It's the Don, but every nigga in my click a boss
From Den Den to Lil' Duke, and Big H.A.W.K.
Clay-Doe, 6-4, can't forget Bamino
Red D and Rhino, 3-2 and Danny Boy
C to the F to the E
Get your mind right trick, when you fucking with me
I'm all world, imagine just starving my baby girls
Niggaz ain't ready, I'ma let the K hurl
You done fucked up, and let me grab a couple hundred
And in a minute, I'ma go on ahead and start stunting
For the summer, riding down on these cock-a-roaches
Man they shouldn't of talked down, on the Costra Nosta
Boss Hogg Corleone, that's me
The black Osama, taking over this biatch
[Chris Ward:]
It's the M.O.B., H-O double G
S.U.C., raw ass nigga
I'm that ghetto ass, gutter gangsta
Gritty, Y.S.P. ass nigga
All these new comers, wanna be like me
I can't help it, y'all get off my D-I-C
That's from me to you nigga, stamp signed and sealed
Bout to let these niggaz know, that I grind for scrill
All these niggaz round here cap, like I don't shine for real
That's why I walk around, lookng like I just signed a deal
Got bout 40 on my chest, a dime on my wrist
And three quarts of that dime, on the same hand's fist
I make them all boppers, be like girl look at Chris
That nigga other hand, look like frozen yellow piss
Is this, what it's about
These lyrics that I spit out, is nasty once they get out
I contaminate the streets, I contaminate the booth
I contaminate the South, when I speak the truth
You might see in some'ing, looking like a nasty mustard stain
The top is butterscotch, and the guts is caine
All these motherfuckers asking, what's my name
It's C. Ward motherfucker, it's a must I came
My nust they hang, just like my Boss Hogg chain
You see I'm in it for the change, motherfuck the fame nigga
[E.S.G.:]
Now guess who back and I'm hungry, I ain't aten my lunch
Always into something, bad apple out the bunch
Fuck a punchline, I'm throwing hate back like jabs
Knocking fake slim niggaz, off the motherfucking slab
Hate nigga game I'ma take it back, wanna know how I got my stacks
Pablo came and gave me packs, stuck on mack and swang in Lacs
Blue and yellow stones, it's hard to look
Ice bucket on my chest, smelling like master cook
At the age 15, young guerilla in the jungle
Moving quarter ki's, and weed for my uncle
Call me Ashton Kutcher, bitch niggaz I punk ya
Houston Tex call me Shrek, I'm a S.U.C. monster
Mike Jones had it wrong, see Screw is the Don
Whoever up next, only carried the baton
Put in city where I'm from, I was born in the booth
Had a murder charge in 9-5, I ain't scared to shoot
Candy red or blue coupe, I'm so executive
CEO status, you need a code where I live
I left the gates open, you cupcakes hoping
That you could rob the real Boss, I never leave my safe open
Leave your face smoking, I'm a gangsta to the fullest
A box of cigarillos, a new box of bullets
So when I pull it, you bitch niggaz know the song
Me and Mike D, sipping purple and Patrone
Back back yep, in a 300 M's
Black, with the motherfucking all black rims
Known for serving fiends, straight dropping screens
These devils trying to clip my wings, call me Constantine
Bitch I be a pimp, I ain't slowing down
It's E and the Boss Hogg, bitch we hold it down
Yeah bitch niggaz, you niggaz all girls
E.S.G., Poke and Mike D yeah we all world
[talking:]
Uh E.S.G., what's up MJ
Take Over year, right here
I got my nigga in here, Lil' 3rd
Bout to wreck this bitch
[Lil' 3rd:]
I'm the Cloverland's finest, I ain't talking bout body-wise
Armageddon 16's on the rise, and body guards
Stones on my chest, change colors like models eyes
Blowing kush smoke, purple syrup slanging them powder pounds
Fired up down proof, and the slash is motorized
Can't let niggaz see it, cause these boys is motomized
Style is mobster, West is saying C. Whoadie ride
E.S.G. and Mike D, pull up swanging the Rover wide
Claim Screwed Up Click, but you niggaz not notarized
Tails stuck in they ass, when a nigga get notified
Fuck squashing the beef, cause Lil' 3rd fa sho to ride
That boy hunt pump shit, I can see it in both his eyes
K doing FED time, while I ain't thinking wise
Mean boxing game, AK and a shank and nine
King of Cloverland, it ain't nothing to compromise
Sweet as a honey bun, and you filled up with bunch of lies
If you a G, why you traumatized
A lil' fame got this nigga head, big as a Hummer tire
[Grace:]
Put the chase all in your face, and rap at pace like them tommy guns
Busting your discussion, go-getter making suckers run
Pimping pens for ends, setting trends one of the ones
Day one dirt doer, underground like C and Bun
Bring it on, rep the click and stay standing strong
Calculator's what they call me, I'm the one that they counting on
Garunteed like F, underground funky like bad breath
Game runner give it to em, lay em down like bad health
We steady rapping for Screw, salute a flag that's blue
Until I'm gone it's on, like yellow west keep it true
Ya see I'm repping like I'm stepping, busting like auto weapons
That same boy G-R-A-C-E, got them Screw Heads recollecting
Another day another dub, Kalluminatti still riding high
Till the end and this the year, to tell them hoe niggaz bye-bye
I'm so for real with the skills, equipped and ready to kill
You flip like floozies in heels, rat and roaches catching steel