- published: 27 Dec 2023
- views: 670889
'+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; })); }); -->
Alban Maria Johannes Berg (/ˈɑːlbɑːn bɛrɡ/;German: [ˈbɛɐ̯k]; February 9, 1885 – December 24, 1935) was an Austrian composer of the Second Viennese School. His compositional style combined Romantic lyricism with twelve-tone technique.
Berg was born in Vienna, the third of four children of Johanna and Conrad Berg. His family lived comfortably until the death of his father in 1900.
He was more interested in literature than music as a child and did not begin to compose until he was fifteen, when he started to teach himself music. In late February or early March 1902 he fathered a child with Marie Scheuchl, a servant girl in the Berg family household. His daughter, Albine, was born on December 4, 1902.
Berg had little formal music education before he became a student of Arnold Schoenberg in October 1904. With Schoenberg he studied counterpoint, music theory, and harmony. By 1906, he was studying music full-time; by 1907, he began composition lessons. His student compositions included five drafts for piano sonatas. He also wrote songs, including his Seven Early Songs (Sieben Frühe Lieder), three of which were Berg's first publicly performed work in a concert that featured the music of Schoenberg's pupils in Vienna that year. The early sonata sketches eventually culminated in Berg's Piano Sonata, Op. 1 (1907–1908); it is one of the most formidable "first" works ever written. Berg studied with Schoenberg for six years until 1911. Berg admired him as a composer and mentor, and they remained close lifelong friends.
Bergen (Norwegian pronunciation: [ˈbærɡən] ( listen)) is a city and municipality in Hordaland on the west coast of Norway. As of the end of Q3 2015, the municipality had a population of 277,378, and the urban population was 250,420 as of 1 January 2015, making Bergen the second-largest city in Norway. The municipality covers an area of 465 square kilometres (180 sq mi) and is located on the peninsula of Bergenshalvøyen. The city centre and northern neighbourhoods are located on Byfjorden, "the city fjord", and the city is surrounded by mountains; Bergen is known as the city of seven mountains. Many of the extra-municipal suburbs are located on islands. Bergen is the administrative centre of Hordaland and consists of eight boroughs—Arna, Bergenhus, Fana, Fyllingsdalen, Laksevåg, Ytrebygda, Årstad and Åsane.
Trading in Bergen may have started as early as the 1020s. According to tradition the city was founded in 1070 by king Olav Kyrre; its name was Bjørgvin, "the green meadow among the mountains". It served as Norway's capital in the 13th century, and from the end of the 13th century became a bureau city of the Hanseatic League. Until 1789, Bergen enjoyed exclusive rights to mediate trade between Northern Norway and abroad and it was the largest city in Norway until surpassed by the capital city, Oslo, in the 1830s. The remains of the quays, Bryggen, is a World Heritage Site. The city was hit by numerous fires. The "Bergen School of Meteorology" was developed at the Geophysical Institute beginning in 1917, the Norwegian School of Economics was founded in 1936, and the University of Bergen in 1946. From 1831 to 1972, Bergen was its own county. In 1972 the municipality absorbed four surrounding municipalities, and at the same time became a part of Hordaland county.
Bergen ( pronunciation ) (Limburgish: Baerge) is a municipality and a town in the southeastern Netherlands.
The town of Bergen lies about 28 km north of Venlo, close to the river Meuse. Although the municipality is named after this village, the municipal hall is located in the town of Nieuw-Bergen, the largest town in the municipality. Close to the German border, approx. 5 miles. Near to Airport Niederrhein/Weeze (EDLV).
In 2001, Bergen had 304 inhabitants. The built-up area of the town was 0.09 km², and contained 109 residences.
Bergen was one of the most successful Turkish singers and a pioneer in the Turkish arabesque genre. When she was 17, she quit her job at a Turkish post office so that she could pursue her dream of performing on stage. Her personal life was influential in her gloomy sound and led to her success. Her husband threw nitric acid on her face resulting in blindness in her right eye. Despite this, she continued singing and chose to cover the blind eye with her long hair. This event added more depth to her songs and resulted in her songs being sung with pain and sorrow. She has been called the "Woman of Pain."
She is most known for her song, "Acıların Kadını", the lead single from her 1986 album of the same name. She also starred in the movie, "Acıların Kadını" as well.
Bergen released eight albums and all of them reissued later.
After her husband had came out of the jail, he shot Bergen six times when she was on the road for a tour to promote her last studio album "Yıllar Affetmez" on August 14, 1989. Bergen died at the age of 30, but her legacy and influence in the arabesque music scene is still relevant today. Her songs has been included arabesque or nostalgia concept albums, and covered by several artists such as Işın Karaca, Funda Arar, Muazzez Ersoy, and Emrah.
Subscribe: https://bit.ly/3TCgOzs A biographical story about Bergen, a cult arabesque singer in Turkey and a victim of domestic violence. She divorced her husband but never managed to cut him off her life. He disfigured her by throwing acid to her face and eventually killed her at the age of 30 and on the peak of her career. Cast: Farah Zeynep Abdullah Erdal Beşikçioğlu Tilbe Saran Directors: Caner Alper, Mehmet Binay #Bergen #FarahZeynepAbdullah #ErdalBeşikçioğlu #TilbeSaran
The city of Bergen is located along the southwestern coast of Norway. Surrounded by mountains and fjords, it’s a haven for nature and outdoor enthusiasts. But as a UNESCO World Heritage City, Bergen also combines history, culture, and an interesting urban life. This charming city might have a small-town feel, but it has tons of entertaining activities to offer. In this video, we break down our 6 favorite things to do in and around Bergen. 😴 WHERE TO STAY IN BERGEN: - Barfot Apartments (budget option with kitchen in center of town): https://www.booking.com/hotel/no/barfot-apartments.en.html?aid=7936148&no_rooms=1&group_adults=2 ☑️ Guided Bergen City Tour on Foot: https://www.getyourguide.com/bergen-l1132/bergen-city-walking-tour-t228205/?partner_id=57UJ5GF&utm_medium=online_publisher&cmp=...
Traveling to Bergen? Here are my six suggestions to what you can do if you have a full day in this salty sea town in western Norway. Bergen City Guide: https://norwaywithpal.com/city-guides/bergen-city-guide/ Also check out the article I wrote on my website: https://www.norwaywithpal.com/norway-travel-blog/top-six-things-to-do-in-bergen-a-travel-guide Tusen takk, thanks a lot for watching! Pål ============================= Table of Contents: ============================= 00:00 Intro 00:10 Art 00:59 The Shoemaker street 01:22 Bryggen 02:14 Bryggen Museum 02:59 Mount Fløien 04:35 Seafood 05:00 Like and subscribe ============================= Follow Me: ============================= https://www.norwaywithpal.com https://www.facebook.com/norwaywithpal https://www.instagram.com/norwaywith...
The harbor city of Bergen is also known as "the heart of the fjords." From Norway's second largest seaport, you can go on a boat tour along the Osterfjord – as our reporter Aisha Sharipzhan did. Let her take you right into the stunning landscape of Norway's fjords! 00:00 Intro 00:30 Bryggen 01:37 Mini-cruise along the Osterfjord 06:30 Fisketorget food hall Report: Aisha Sharipzhan Camera: Marco Borowski Editing: Sebastian Ziegler ----------------------------------------------------------------------------------------------------------------------- Subscribe to DW Travel youtube.com/dwtravel Would you like to find out more about DW Travel? ▸Website: dw.com/travel ▸Facebook: facebook.com/dw.travel ▸Instagram: instagram.com/dw_travel DW Travel is showing you the captivating world of trav...
Welcome to Bergen, Norway’s second biggest city. Bergen attracts tourists for all sorts of reasons. It’s one of Norway’s most popular cruise ship ports, the starting point for the coastal voyage, one end of the famous Bergen railway and has a reputation as a gateway to the fjords. Bergen is the perfect starting point to explore the best of Norwegian nature, but visitors shouldn’t ignore the city itself. From a UNESCO World Heritage site at its heart to a stave church hidden in plain sight, these are my recommended top 7 things to do in Bergen, Norway. Read about even more things to do in Bergen: https://www.forbes.com/sites/davidnikel/2022/12/02/25-things-to-do-in-bergen-norway/ Follow us on our adventures around Norway: Website: https://www.lifeinnorway.net/ Newsletter: https://lifeinn...
In this video my friend Anna and I take you with us on a little walk in Norways most beautiful city Bergen. We take you to some places that most tourists miss out on when they visit Bergen, and share some of our hacks to having a good day here even when it rains (which is often). I hope you like it! Watch my other video about Bergen here: https://youtu.be/94IBOpImQyY Find my friend Anna here: Instagram: https://www.instagram.com/akb_illustrations/ Webpage/webshop: https://www.akbillustrations.com/ Her shop at Bryggen: AKB Illustrations Support me as a creator and get access to perks: - PATREON: https://www.patreon.com/mariaogskogen?fan_landing=true - FOREST MEMBERSHIP on YouTube: https://www.youtube.com/channel/UCTSVeBQaX58434WZihvjOCA/join INSTAGRAM: https://www.instagram.com/mariaog...
#bergen
More info about travel to Bergen: https://www.ricksteves.com/europe/norway/bergen Bergen is a big city by Norwegian standards, but visitors sticking to the compact old center find it charming. Enjoy the busy harbor with its salty market and timber warehouses dripping with Hanseatic history, then stroll the pedestrian-friendly old quarter, with cute lanes of delicate wooden houses. Then for a modern contrast, head for Bergen's urban heart — which has a thriving personality all its own. #ricksteves #ricksteveseurope #bergen Visit http://www.ricksteves.com for more information about this destination and other destinations in Europe. Check out more Rick Steves’ Europe travel resources: • “Rick Steves’ Europe” public television series: https://www.ricksteves.com/watch-read-listen/video/tv-sho...
Vier met ons de 80e verjaardag van de bevrijding van Bergen op Zoom! In deze bijzondere video nemen we je mee naar het indrukwekkende defilé, waar veteranen, muziekgezelschappen en lokale helden samenkomen om deze gedenkwaardige gebeurtenis te eren. 00:00 Commandant Der Strijdkrachten & Burgemeesters arriveren 00:53 Lincoln & Welland Regimental Band 01:20 Lincoln and Welland Regiment 01:31 Colour Party Royal Canadian Legion 01:42 Seaforth Highlanders of Holland Memorial Pipes & Drums 01:57 Koninklijke Luchtmacht 02:16 Reünie Orkest Artillerie 02:54 De Brinkies Oud-Mariniers 03:20 Veteranen Brabantse Wal 03:38 Veteranen Koninklijke Luchtmacht 04:18 Band of Liberation 04:47 De Brandweer 06:04 Voertuigdefilé deel 1 17:53 Wachtpost 13 XXL 18:58 Wandelvereniging De Wandelende Krabben 19:20 Dru...
Support me on Patreon: https://www.patreon.com/norwaywithpal I hope this episode will give some inspiration for things to do in Bergen! For more check out my Bergen City Guide: https://norwaywithpal.com/city-guides/bergen-city-guide/ Aaron Wahab filmed and helped with the edit https://www.instagram.com/aaronwahab/ Luke made the maps: https://lukepopadics.info/ Tusen takk, thanks a lot for watching, Pål 00:00 Hidden Gems in Bergen 00:14 Bergen City Bikes 00:40 The BRYGGEN in Bergen 02:02 Bergen Cathedral 02:31 Leprosy Museum 03:02 Hallaisen ice cream 03:31 Bergen Stock Market 03:53 Bergen Maritime Museum 05:04 Trekroneren Hot Dog Stand 05:38 Charming streets in Bergen 07:02 United Sardine Factory 07:54 Nordnes Peninsula & Totempel 08:45 Hike to Stoltzekleiven =======================...
Alban Maria Johannes Berg (/ˈɑːlbɑːn bɛrɡ/;German: [ˈbɛɐ̯k]; February 9, 1885 – December 24, 1935) was an Austrian composer of the Second Viennese School. His compositional style combined Romantic lyricism with twelve-tone technique.
Berg was born in Vienna, the third of four children of Johanna and Conrad Berg. His family lived comfortably until the death of his father in 1900.
He was more interested in literature than music as a child and did not begin to compose until he was fifteen, when he started to teach himself music. In late February or early March 1902 he fathered a child with Marie Scheuchl, a servant girl in the Berg family household. His daughter, Albine, was born on December 4, 1902.
Berg had little formal music education before he became a student of Arnold Schoenberg in October 1904. With Schoenberg he studied counterpoint, music theory, and harmony. By 1906, he was studying music full-time; by 1907, he began composition lessons. His student compositions included five drafts for piano sonatas. He also wrote songs, including his Seven Early Songs (Sieben Frühe Lieder), three of which were Berg's first publicly performed work in a concert that featured the music of Schoenberg's pupils in Vienna that year. The early sonata sketches eventually culminated in Berg's Piano Sonata, Op. 1 (1907–1908); it is one of the most formidable "first" works ever written. Berg studied with Schoenberg for six years until 1911. Berg admired him as a composer and mentor, and they remained close lifelong friends.