- published: 20 Mar 2014
- views: 11978
'+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; })); }); -->
Christian Johann Heinrich Heine (13 December 1797 – 17 February 1856) was a German poet, journalist, essayist, and literary critic. He is best known outside Germany for his early lyric poetry, which was set to music in the form of Lieder (art songs) by composers such as Robert Schumann and Franz Schubert. Heine's later verse and prose are distinguished by their satirical wit and irony. He is considered part of the Young Germany movement. His radical political views led to many of his works being banned by German authorities. Heine spent the last 25 years of his life as an expatriate in Paris.
Heine was born in Düsseldorf, Rhineland, into a Jewish family. He was called "Harry" as a child, but became "Heinrich" after his conversion to Christianity in 1825. Heine's father, Samson Heine (1764–1828), was a textile merchant. His mother Peira (known as "Betty"), née van Geldern (1771–1859), was the daughter of a physician. Heinrich was the eldest of the four children; his siblings were Charlotte, Gustav – who later became Baron Heine-Geldern and publisher of the Viennese newspaper Das Fremdenblatt – and Maximilian, later a physician in Saint Petersburg. Heine was also third cousin once removed with philosopher and economist Karl Marx, who was also born into a German Jewish family in the Rhineland and with whom he became a frequent correspondent later in life.
The Heinrich Heine was an express train operated by Deutsche Bundesbahn, initially linking Frankfurt am Main and Dortmund. The train was named after the German poet and journalist Heinrich Heine.
The Heinrich Heine was part of the IC79 scheme introduced on 28 May 1979. It was the "mirror" of the Goethe on the West Rhine Railway. Early in the morning Heinrich Heine left Frankfurt for a northbound trip and Goethe left Dortmund southbound. In the evening both trains ran in the opposite directions. This concept of a pair of trains running at the same time on the same route in opposite directions was later applied as principle of the EuroCity network's schedule.
Part of the IC79 scheme was running on weekdays only. After one year of service the Heinrich Heine was suspended during the summer, so in 1980, 1981 and 1982 the train did not ride during June, July and August. From 26 September 1982 the service was reduced to once a week, northbound on Mondays and southbound on Fridays, because Lufthansa introduced their Lufthansa Airport Express serving the same customers on the same route. Eventually the TEE adventure for the Heinrich Heine ended at 27 May 1983.
Der Spiegel (German pronunciation: [deːɐ ˈʃpiːɡəl], lit. "The Mirror") is a German weekly news magazine published in Hamburg. It is one of Europe's largest publications of its kind, with a weekly circulation of 840,000.
It was founded in 1947 by John Seymour Chaloner, a British army officer, and Rudolf Augstein, a former Wehrmacht radio operator who was recognized in 2000 by the International Press Institute as one of the fifty World Press Freedom Heroes.Spiegel Online, the online sibling of Der Spiegel, was launched in 1994 with an independent editorial staff. Typically, the magazine has a content to advertising ratio of 2:1.
Der Spiegel is known in German-speaking countries mostly for its investigative journalism. It has played a key role in uncovering many political scandals such as the Spiegel scandal in 1962 and the Flick affair in the 1980s. According to The Economist, Der Spiegel is one of continental Europe's most influential magazines.
The first edition of Der Spiegel was published in Hanover on Saturday, 4 January 1947. Its release was initiated and sponsored by the British occupational administration and preceded by a magazine titled, Diese Woche (meaning This Week in English), which had first been published in November 1946. After disagreements with the British, the magazine was handed over to Rudolf Augstein as chief editor, and was renamed Der Spiegel. From the first edition in January 1947, Augstein held the position of editor-in-chief, which he retained until his death on 7 November 2002.
Revered by many as Germany's greatest poet, Heine struggled mightily with his Jewish identity in the culturally inimical milieu of the 19th century. This phenomenon, known as Judenschmerz, was widespread among 19th century western European Jews. Despite his 1825 conversion to Christianity, Heine maintained a long, albeit conflicted, relationship to his Jewish background. Part of the Jewish Biography as History lecture series by Dr. Henry Abramson. More lectures available at www.jewishhistorylectures.org. To view the Prezi used in this lecture, please visit http://jewishhistorylectures.org/2014/04/02/the-holocaust-essential-lectures-in-jewish-history-by-dr-henry-abramson/
Rezitation: Fritz Stavenhagen mehr deutsche Lyrik zum hören: http://www.deutschelyrik.de/ oder bei Facebook: http://www.facebook.com/DeutscheLyrik Text: Denk ich an Deutschland in der Nacht, Dann bin ich um den Schlaf gebracht, Ich kann nicht mehr die Augen schließen, Und meine heißen Tränen fließen. Die Jahre kommen und vergehn! Seit ich die Mutter nicht gesehn, Zwölf Jahre sind schon hingegangen; Es wächst mein Sehnen und Verlangen. Mein Sehnen und Verlangen wächst. Die alte Frau hat mich behext, Ich denke immer an die alte, Die alte Frau, die Gott erhalte! Die alte Frau hat mich so lieb, Und in den Briefen, die sie schrieb, Seh ich, wie ihre Hand gezittert, Wie tief das Mutterherz erschüttert. Die Mutter liegt mir stets im Sinn. Zwölf lange Jahre flossen hin, Zwölf lange Jahre si...
Heinrich Heine: Die Loreley (1824) Ich weiß nicht, was soll es bedeuten, Daß ich so traurig bin; Der komplette Gedichttext auf www.lyrik123.de: http://www.lyrik123.de/heinrich-heine-die-loreley-3-12633/ -------- (https://partnernet.amazon.de/) *Alle Gedichte finden Sie im Buch: „Sehnsucht. Eine thematische Anthologie: Die schönsten deutschsprachigen Gedichte über das ewige Verlangen“ - https://amzn.to/2OMwoV7 Die mit * gekennzeichneten Links sind Affiliate Links, die zum Partnerprogramm von Amazon gehören. Solltet ihr etwas über diese Links kaufen, bekommen wir eine Vermittlungsprovision, natürlich ohne dass ihr dafür mehr bezahlen müsst. -------- FACEBOOK: https://www.facebook.com/beingoo/ WEBSITE: www.beingoo.de -------- Gegründet wurde beingoo, unser immer noch junges Unte...
Music by Liederjan Zeichnungen by Kaethe Kollwitz Fotos von Heines Grab by me
Rezitation: Fritz Stavenhagen mehr deutsche Lyrik zum hören: http://www.deutschelyrik.de/ oder bei Facebook: http://www.facebook.com/DeutscheLyrik Text: Hoffnung und Liebe! Alles zertrümmert! Und ich selber, gleich einer Leiche, Die grollend ausgeworfen das Meer, Lieg ich am Strande, Am öden, kahlen Strande, Vor mir woget die Wasserwüste, Hinter mir liegt nur Kummer und Elend, Und über mich hin ziehen die Wolken, Die formlos grauen Töchter der Luft, Die aus dem Meer, in Nebeleimern, Das Wasser schöpfen, Und es mühsam schleppen und schleppen, Und es wieder verschütten ins Meer, Ein trübes, langweilges Geschäft, Und nutzlos, wie mein eignes Leben. Die Wogen murmeln, die Möwen schrillen, Alte Erinnerungen wehen mich an, Vergessene Träume, erloschene Bilder, Qualvoll süße, tauchen hervor! ...
Ukrainische Truppen haben Russland in Kursk überrumpelt und die Initiative zurückerobert. Ist der Gegenangriff mutig oder leichtsinnig? SPIEGEL-Redakteur Alexander Kauschanski sortiert die neue Lage im Krieg. Sagt uns, wie euch Shortcut gefällt. Hier geht’s zur Umfrage: https://umfrage.spiegelgruppe.de/jfe/form/SV_7WZMnh5eYBWVG2a?a=1 🔔 Jetzt abonnieren und Glocke aktivieren, um keine Folge zu verpassen: ▶️ youtube.com/subscription_center?add_user=spiegeltv Folge dem SPIEGEL auch auf Insta und TikTok: https://www.instagram.com/spiegelmagazin/ https://www.tiktok.com/@derspiegel #SPIEGELShortcut #Ukraine #Kursk 00:00 | Intro 02:28 | Was soll die Kursk-Offensive bringen? 08:02 | Jetzt folgt die Propagandaschlacht 12:53 | Worst Case und Best Case für die Ukraine 16:03 | Zu...
In Nahal Oz tötete die Hamas am 7. Oktober 15 Menschen. »Nahal Oz ist Israel in klein«, findet SPIEGEL-Reporter Timofey Neshitov. Was er dort an der Grenze zu Gaza über Israels Umgang mit den Palästinensern gelernt hat. Der Autor hat in Nahal Oz und in Israel im Dezember 2023, im Januar und im Juni 2024 recherchiert. Seine Reportage darüber, was das Verhältnis zwischen Israelis und Palästinensern belastet, findet ihr hier: https://www.spiegel.de/ausland/israel-hamas-angriff-im-kibbuz-was-wurde-aus-den-ueberlebenden-a-311358cb-e0fb-4e0a-878a-7d8b78c8e19a?d=1722503167 🔔 Jetzt abonnieren und Glocke aktivieren, um keine Folge zu verpassen: ▶️ youtube.com/subscription_center?add_user=spiegeltv Folge dem SPIEGEL auch auf Insta und TikTok: https://www.instagram.com/spiegelmagazin/ ht...
Gebeugt übers Telefon anstatt per Videocall sprach Präsidentschaftskandidat Trump mit Techguru Musk. Der Ex-US-Präsident teilte aus – Musk hofierte ihn. Lediglich die Technik spielte nicht richtig mit. #Trump #Musk #Telefonat ___________ True-Crime-Kanalmitglied werden und exklusive Vorteile erhalten: ► https://www.youtube.com/channel/UC1w6pNGiiLdZgyNpXUnA4Zw/join
Tim Walz ist der Vize-Kandidat der Demokraten im Kampf ums Weiße Haus. Er hat gedient, liebt die Jagd und soll vor allem Männer an die Urne bringen, die so sind wie er. Sein größtes Verdienst bislang: Er fand den richtigen Slogan für Trump und Vance. #Walz #Demokraten #USWahl ___________ True-Crime-Kanalmitglied werden und exklusive Vorteile erhalten: ► https://www.youtube.com/channel/UC1w6pNGiiLdZgyNpXUnA4Zw/join
Bewegende Szenen bei der Trauerfeier für die neunjährige Alice: Das Mädchen war bei einem Messerangriff auf einen Taylor-Swift-Tanzkurs getötet worden. Ihre Eltern ließen einen Appell im Namen ihrer Tochter verlesen. #Trauerfeier #Southport #Attentat ___________ True-Crime-Kanalmitglied werden und exklusive Vorteile erhalten: ► https://www.youtube.com/channel/UC1w6pNGiiLdZgyNpXUnA4Zw/join
Nach der ukrainischen Gegenoffensive auf russischem Territorium ordnet Moskau Evakuierungen an und veröffentlicht angebliche Siegesmeldungen. Aber Putin könnte bald gezwungen sein, mehr Truppen nach Kursk zu verlegen. #Ukraine #Kursk #Russland ___________ True-Crime-Kanalmitglied werden und exklusive Vorteile erhalten: ► https://www.youtube.com/channel/UC1w6pNGiiLdZgyNpXUnA4Zw/join
Wenn die üblichen Therapieansätze gegen Depressionen nicht helfen, könnten Psychedelika wie beispielsweise Magic Mushrooms eine Lösung sein. Das legt eine aktuelle Studie nahe. SPIEGEL-Reporter Fabian Pieper hat einen Patienten, der an der Studie teilnimmt, über Monate begleitet. Sagt uns, wie euch Shortcut gefällt. Hier geht’s zur Umfrage: https://umfrage.spiegelgruppe.de/jfe/form/SV_7WZMnh5eYBWVG2a?a=1 Hier geht es zur ganzen Reportage: https://youtu.be/pffeFfYD3AM?si=bM7IrhSTfQhrua0R 🔔 Jetzt abonnieren und Glocke aktivieren, um keine Folge zu verpassen: ▶️ youtube.com/subscription_center?add_user=spiegeltv Folge dem SPIEGEL auch auf Insta und TikTok: https://www.instagram.com/spiegelmagazin/ https://www.tiktok.com/@derspiegel #SPIEGELShortcut #Depressionen #Psychedelika ...
Wer aus Lateinamerika in Richtung USA flüchtet, will die Grenze vor der Präsidentschaftswahl erreichen. Denn was, wenn der neue Präsident Trump heißt? #Flucht #USA #USWahl ___________ True-Crime-Kanalmitglied werden und exklusive Vorteile erhalten: ► https://www.youtube.com/channel/UC1w6pNGiiLdZgyNpXUnA4Zw/join
Influencer Immo Tommy versprach seinen Followern einfache Investments in Immobilien. Einige von ihnen stehen jetzt vor einem finanziellen Debakel. SPIEGEL-Redakteur Henning Jauernig berichtet von der Investigativrecherche. Die ganze Investigativ-Recherche von Henning Jauernig und Kristina Gnirke bei SPIEGEL+: https://www.spiegel.de/wirtschaft/immo-tommy-netzwerk-um-den-immobilien-influencer-stuerzt-kaeufer-ins-unglueck-a-f8b64d46-7dc3-48e1-ba28-bb0534de51d8 Sagt uns, wie euch Shortcut gefällt. Hier geht’s zur Umfrage: https://umfrage.spiegelgruppe.de/jfe/form/SV_7WZMnh5eYBWVG2a?a=1 🔔 Jetzt abonnieren und Glocke aktivieren, um keine Folge zu verpassen: ▶️ youtube.com/subscription_center?add_user=spiegeltv Folge dem SPIEGEL auch auf Insta und TikTok: https://www.instagram.com/spie...
Bewegende Szenen bei der Trauerfeier für die neunjährige Alice: Das Mädchen war bei einem Messerangriff auf einen Taylor-Swift-Tanzkurs getötet worden. Ihre Eltern ließen einen Appell im Namen ihrer Tochter verlesen. #Trauerfeier #Southport #Attentat
Christian Johann Heinrich Heine (13 December 1797 – 17 February 1856) was a German poet, journalist, essayist, and literary critic. He is best known outside Germany for his early lyric poetry, which was set to music in the form of Lieder (art songs) by composers such as Robert Schumann and Franz Schubert. Heine's later verse and prose are distinguished by their satirical wit and irony. He is considered part of the Young Germany movement. His radical political views led to many of his works being banned by German authorities. Heine spent the last 25 years of his life as an expatriate in Paris.
Heine was born in Düsseldorf, Rhineland, into a Jewish family. He was called "Harry" as a child, but became "Heinrich" after his conversion to Christianity in 1825. Heine's father, Samson Heine (1764–1828), was a textile merchant. His mother Peira (known as "Betty"), née van Geldern (1771–1859), was the daughter of a physician. Heinrich was the eldest of the four children; his siblings were Charlotte, Gustav – who later became Baron Heine-Geldern and publisher of the Viennese newspaper Das Fremdenblatt – and Maximilian, later a physician in Saint Petersburg. Heine was also third cousin once removed with philosopher and economist Karl Marx, who was also born into a German Jewish family in the Rhineland and with whom he became a frequent correspondent later in life.
Ich schau in den Spiegel
Der Spiegel zerbricht
Die sanfte Form verändert sich
Zum Chaos ohne Sinn
Im Kristallstaub der zu Boden sinkt
Bricht sich das Licht millionenfach
Aufgespalten in seine Farben
Wird das Unsichtbare zu Rot und Blau zersetzt
Der geborstene Spiegel hängt noch an der Wand
Mein Gesicht ist verschwunden
Mein Geist zersplittert und zerstört
In zahllose Scherben zersprungen
Die Gedanken zerschnitten
Doch es blutet nicht ...
Nur der Geist ist verloren