- published: 29 Sep 2019
- views: 109289
'+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; })); }); -->
The Provisional Government of the Republic of China (中華民國臨時政府, pinyin: Zhōnghuá Mínguó Línshí Zhèngfǔ) was a provisional government established during the Xinhai Revolution by the revolutionaries in 1912. After the success of the Wuchang uprising, revolutionary provincial assembly representatives held a conference in Wuchang, China, which framed the organizational outline of the Provisional Government.
In November 1911 the revolutionary group in Wuchang led by Li Yuanhong came together with the revolutionary group in Shanghai led by Chen Qimei and Cheng Dequan (程德全) to prepare for the establishment of a new central government. The group in Wuchang wanted to establish a government in Wuchang, while the group in Shanghai wanted a government in Shanghai. By November 20 the two groups compromised and recognized Hubei as the central government and proposed everyone go to Wuchang. By November 28, Hankou and Hanyang had fallen back to the Qing, so for safety the revolutionaries convened their first conference at the British concession in Hankou on November 30. Tan Renfeng (譚人鳳) was the chairman of the session. Twenty-three representatives from the 11 provinces participated. The representatives decided to frame the organizational outline of the Provisional Government, and they elected Lei Fen (雷奮), Ma Junwu, and Wang Zhengting (王正廷) to prepare the draft.
The Provisional Government of Ireland (Irish: Rialtas Sealadach na hÉireann) was the provisional government for the administration of Southern Ireland from 16 January 1922 to 5 December 1922. The government was effectively a transitional administration for the period between the ratifying of the Anglo-Irish Treaty and the establishment of the Irish Free State. Its legitimacy was disputed by the Anti-Treaty delegates to Dáil Éireann.
Under the Irish Republic's Dáil Constitution adopted in 1919, Dáil Éireann continued to exist after it had ratified the Anglo-Irish Treaty. In protest at the ratification, Éamon de Valera resigned the presidency of the Dáil then sought re-election from among its members (to clarify his mandate), but Arthur Griffith defeated him in the vote and assumed the presidency. (Griffith called himself President of Dáil Éireann rather than de Valera's more exalted President of the Republic.)
China, officially the People's Republic of China (PRC), is a sovereign state in East Asia. It is the world's most populous country, with a population of over 1.35 billion. The PRC is a one-party state governed by the Communist Party, with its seat of government in the capital city of Beijing. It exercises jurisdiction over 22 provinces; five autonomous regions; four direct-controlled municipalities (Beijing, Tianjin, Shanghai and Chongqing); two mostly self-governing special administrative regions (Hong Kong and Macau); and claims sovereignty over Taiwan.
Covering approximately 9.6 million square kilometers, China is the world's second-largest country by land area, and either the third or fourth-largest by total area, depending on the method of measurement. China's landscape is vast and diverse, ranging from forest steppes and the Gobi and Taklamakan deserts in the arid north to subtropical forests in the wetter south. The Himalaya, Karakoram, Pamir and Tian Shan mountain ranges separate China from South and Central Asia. The Yangtze and Yellow Rivers, the third- and sixth-longest in the world, run from the Tibetan Plateau to the densely populated eastern seaboard. China's coastline along the Pacific Ocean is 14,500 kilometres (9,000 mi) long, and is bounded by the Bohai, Yellow, East and South China Seas.
João Pedro dos Santos Gonçalves (born 15 April 1982 in Beja), known as China, is a Portuguese professional footballer who plays for Cypriot club Nea Salamis Famagusta FC as a left back.
My channel is dedicated to anthems, hymns and patriotic songs, here is the link to our discord server: https://discord.gg/Vw5SgNDuVV
In today's episode we're going to pick up where we left off, at the very beginning of the new Republic of China. We'll look at the rise of Yuan Shikai and the descent of China into a period of warlordism. We will explore the changing nature of China's politics and culture, right up until the next big event to hit the Chinese stage, the May 4th movement. Some famous people we will be discussing include Sun Yatsen, Cai Yuanpei, Hu Shi, Lu Xun, and some of the founders of the Chinese Communist Party, Li Dazhao, Chen Duxiu, and Mao Zedong.
First of all I want to thank the Victorian Chinese for making this - otherwise lost - anthem available for us once again: https://www.youtube.com/watch?v=Ous4SI1CTlU I do not own this music. All rights belong to its creator. The 'Song of Five Races Under One Union' was the National Anthem of China for a short period in 1912 to 1913.
In which John Green teaches you about China's Revolutions. While the rest of the world was off having a couple of World Wars, China was busily uprooting the dynastic system that had ruled there for millennia. Most revolutions have some degree of tumult associated with them, but China's 20th-century revolutions were REALLY disruptive. In 1911 and 1912, Chinese nationalists brought 3000 years of dynastic rule to an end. China plunged into chaos as warlords staked out regions of the country for themselves. The nationalists and communists joined forces briefly to bring the nation back together under the Chinese Republic, and then they quickly split and started fighting the Chinese Civil War. The fight between nationalists and communists went on for decades and was interrupted by an alliance to...
Courses on Khan Academy are always 100% free. Start practicing—and saving your progress—now: https://www.khanacademy.org/humanities/world-history/euro-hist/china-early-1900s/v/overview-of-chinese-history-1911-1949 Created by Sal Khan. Watch the next lesson: https://www.khanacademy.org/humanities/world-history/euro-hist/wo/v/beginning-of-world-war-ii?utm_source=YT&utm_medium=Desc&utm_campaign=worldhistory Missed the previous lesson? https://www.khanacademy.org/humanities/world-history/euro-hist/mussolini-fascism/v/mussolini-aligns-with-hitler?utm_source=YT&utm_medium=Desc&utm_campaign=worldhistory World history on Khan Academy: From the earliest civilizations to the modern world, geography, religion, trade, and politics have bound peoples and nations together — and torn them apart. Tak...
Consider Supporting HoH: https://www.patreon.com/HouseofHistory On the 12th of February 1912 Puyi, China’s Last Emperor, abdicated. China now commenced into uncharted political territory: it became a republic. One day after Puyi’s abdication, Dr. Sun Yat-sen, provisional president of the Chinese republic, abdicated in favour of general Yuan Shikai, given that he’d respect the Chinese republic. Yuan Shikai had other plans however, among which eventually reinstating the monarchy. Not for nostalgic and sentimental reasons, though. No… he himself would be the emperor of China. My Twitter: https://twitter.com/HouseofHistory1 Watch my documentary series: End of Empire - Downfall of the Qing Dynasty playlist: https://www.youtube.com/playlist?list=PLazn7eofVtjLnVJY6NyQX8JlVApf40DLs Hitler's...
This is an audio version of the Wikipedia Article: Republic of China (1912–49) Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone. You can find other Wikipedia audi...
If you find our videos helpful you can support us by buying something from amazon. https://www.amazon.com/?tag=wiki-audio-20 Reorganized National Government of the Republic of China =======Image-Copyright-Info======== License: Creative Commons Attribution 3.0 (CC BY 3.0) LicenseLink: http://creativecommons.org/licenses/by/3.0 Author-Info: SVG file created by User:Mononomic on en.wikipedia.org. Image Source: https://en.wikipedia.org/wiki/File:Flag_of_the_Republic_of_China-Nanjing_(Peace,_Anti-Communism,_National_Construction).svg =======Image-Copyright-Info======== -Video is targeted to blind users Attribution: Article text available under CC-BY-SA image source in video
The Former Anthem of Republic of China The anthem is called (Song of Five Races Under One Union) in English View the Vocal Version Here: https://www.youtube.com/watch?v=ttHaqCbneGo The Song of Five Races Under One Union (Chinese: 五族共和歌; pinyin: Wǔzú gònghé gē) is a former national anthem of China. It was created in 1912 and used by the Provisional Government in Nanjing until the adoption of the Song to the Auspicious Cloud in 1913. After the establishment of the provisional government in Nanjing, the Ministry of Education under Cai Yuanpei asked the public for possible anthems (as well as coats of arms), and "Song of Five Races under One Union", with lyrics by Shen Enfu (沈恩孚) and music by Shen Pengnian (沈彭年), was released as a draft in the newspaper. Learn More about the Anthem: https...
In the early 20th Century the Qing Dynasty, the last of the Chinese Dynasties, was growing increasingly unstable and faced rapid decline. Finally, on January 1st, 1912 the Republic of China was proclaimed, the last emperor abdicated, and a provisional government was set up. These events marked the end of Imperial China and the beginning of a new page in Chinese history. This video takes a closer look into why the Qing Dynasty collapsed in 1911. In essence, we can trace the collapse of the dynasty back to three related causes: 1. The Qing Dynasty’s superiority complex; 2. Foreign influence; and, 3. Growing Chinese unhappiness with the Qing Dynasty.
The Provisional Government of the Republic of China (中華民國臨時政府, pinyin: Zhōnghuá Mínguó Línshí Zhèngfǔ) was a provisional government established during the Xinhai Revolution by the revolutionaries in 1912. After the success of the Wuchang uprising, revolutionary provincial assembly representatives held a conference in Wuchang, China, which framed the organizational outline of the Provisional Government.
In November 1911 the revolutionary group in Wuchang led by Li Yuanhong came together with the revolutionary group in Shanghai led by Chen Qimei and Cheng Dequan (程德全) to prepare for the establishment of a new central government. The group in Wuchang wanted to establish a government in Wuchang, while the group in Shanghai wanted a government in Shanghai. By November 20 the two groups compromised and recognized Hubei as the central government and proposed everyone go to Wuchang. By November 28, Hankou and Hanyang had fallen back to the Qing, so for safety the revolutionaries convened their first conference at the British concession in Hankou on November 30. Tan Renfeng (譚人鳳) was the chairman of the session. Twenty-three representatives from the 11 provinces participated. The representatives decided to frame the organizational outline of the Provisional Government, and they elected Lei Fen (雷奮), Ma Junwu, and Wang Zhengting (王正廷) to prepare the draft.