- published: 23 Mar 2024
- views: 1014675
'+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 French Army (French: Armée de terre [aʀme də tɛʀ], "land army") is the land-based and largest component of the French Armed Forces. Along with the French Air Force, the French Navy and the National Gendarmerie, it is placed under the responsibility of the French government. The current Chief of Staff of the French Army (CEMAT) is general Jean-Pierre Bosser. All soldiers are considered professionals following the suspension of conscription, voted in parliament in 1997 and made effective in 2001.
As of 2014, the French Army employed 111,628 personnel (including the French Foreign Legion and the Paris Fire Brigade). In addition, the reserve element of the French Army consisted of 15,453 personnel of the Operational Reserve.
In 1999 the Army issued the Code of the French Soldier, which includes the injunctions:
The first permanent army, paid with regular wages, instead of feudal levies, was established under Charles VII in the 1420-30s. The Kings of France needed reliable troops during and after the Hundred Years' War. These units of troops were raised by issuing ordonnances to govern their length of service, composition and payment. These Compagnies d'ordonnance formed the core of the Gendarme Cavalry into the sixteenth century. Stationed throughout France and summoned into larger armies as needed. There was also provision made for "Francs-archers" units of bowmen and foot soldiers raised from the non-noble classes but these units were disbanded once war ended.
The .30-40 Krag (also called .30 U.S., or .30 Army) was a cartridge developed in the early 1890s to provide the U.S. armed forces with a smokeless powder cartridge suited for use with modern small-bore repeating rifles to be selected in the 1892 small arm trials. Since the cartridge it was replacing was the .45-70 Government, the round was considered small-bore at the time. The design selected was ultimately the Krag–Jørgensen, formally adopted as the M1892 Springfield. It was also used in M1893 and later Gatling guns.
Though the U.S. Navy and Marine Corps had adopted limited numbers of smokeless powder, bolt-action rifles, the .30-40 was the first cartridge adopted by the US Army that was designed from the outset for smokeless powder. After a brief experiment with a 230-grain bullet loading, the .30 Army loading was standardized in 1894 using a 220-grain metal-jacketed round-nose bullet with 40 grains of nitrocellulose powder. This loading developed a maximum velocity of 2,000 ft/s (610 m/s) in the 30-inch (760 mm) barrel of the Krag rifle, and 1,960 ft/s (600 m/s) in the 22-inch (560 mm) barrel of the Krag carbine.
Army 2020, formerly known as Future Army Structure (Next Steps) or FAS (Next Steps), is the name given to an ongoing review of the structure of the British Army, and in particular its fighting brigades.
The British Government gave an indication of its proposals for the future structure of the British Army in early 2008 in a press report stating that it was considering restructuring the Army into a force of three deployable divisional headquarters and eight 'homogenous or identical' brigades, each with a spread of heavy, medium and light capabilities. This report indicated that the existing 16 Air Assault Brigade would be retained as a high-readiness rapid reaction force.
Subsequently, it was reported that the former Chief of the General Staff, General Sir Richard Dannatt, wanted to see the Army structured so as to extend the interval between operational tours from two to two and a half years.
In 2010, the Strategic Defence and Security Review was published. As part of the plans, the British Army will be reduced by 23 regular units, and by 2020 will number 112,000 soldiers, of whom 82,000 will be regulars and 30,000 will be reservists. The Strategic Defence and Security Review 2015 upgraded the number of reservists to 35,000.
AR: Absolute Return + Alpha (or AR) is a hedge fund magazine founded in 2009. The magazine has its editorial offices in New York City.
Absolute Return + Alpha (AR) was launched in September 2009, as a subsidiary of financial publisher Euromoney Institutional Investor.AR was formed when two magazines, Alpha and Absolute Return, were combined. The magazine publishes both online and print content. Its main focus is the hedge fund industry and its 3,500 fund managers, but the magazine also covers significant financial events and global research. The magazine features hedge fund rankings according to assets under management rankings, an annual ranking of the 25 highest paid hedge fund managers, and monthly tables of U.S. hedge fund performance data.
American singer Selena has released five studio albums, three live albums, one soundtrack and twenty-one compilation albums. Credited for elevating a music genre into the mainstream market, Selena remains the best-selling Tejano recording artist whose posthumous releases continue to outsell those of living musicians. As of 2015, the singer has sold 60 million copies worldwide, and was named the "Top Latin Artist of the '90s" and "Best-selling Latin Artist of the Decade" by Billboard magazine. In 1995, Selena was inducted into the Billboard Latin Music Hall of Fame, the Hard Rock Cafe's Hall of Fame, the South Texas Music Hall of Fame, and the Tejano Music Hall of Fame in 2001.
Selena's career began as lead vocalist of Los Dinos in 1980. She signed with EMI Latin nine years later as a solo artist though her band continued to tour with her. She released her self-titled debut album that same year, which peaked at number seven on the U.S. Billboard Regional Mexican Albums chart. With Selena, the singer outsold other female Tejano artists. She released her second album Ven Conmigo in October 1990; it peaked at number three on the Regional Mexican Albums chart. Ven Conmigo was later certified gold by the Recording Industry Association of America (RIAA) for shipments of 50,000 units, the first recording by a female Tejano artist to do so. As of 2010, Ven Conmigo had sold 500,000 copies in the United States. According to music critics, her next recording Entre a Mi Mundo (1992), was the "breakthrough album" of her musical career. The album and its lead single, "Como la Flor", helped launch the singer's career in Mexico.Entre a Mi Mundo peaked at number one on the Regional Mexican Albums chart for eight consecutive months; and was certified 6× platinum by the RIAA, signifying shipments of 600,000 units. Entre a Mi Mundo became the first Tejano recording by a female artist to sell over 300,000 copies.
This is a list of Foundation universe planets featured or mentioned in the Robot series, Empire series, and Foundation series created by Isaac Asimov.
The star system 61 Cygni, in the Sirius Sector, is advanced by Lord Dorwin as the potential site for a planet of origin for the human species. Lord Dorwin cites 'Sol' (meaning Earth's Sun) and three other planetary systems in the Sirius Sector, along with Arcturus in the Arcturus Sector, as potential original worlds. (This fact seems to be contradicted by information given in Foundation and Earth). Claims were made as early as 1942 that 61 Cygni had a planetary system, though to date, none has been verified, and Asimov was aware of these claims.
Alpha is a fictional planet orbiting the larger of the two stars in the Alpha Centauri system.
In Asimov's Foundation Series, Alpha Centauri is cited by Lord Dorwin as one of the solar systems where humankind potentially originated. The others are Sol, Sirius, 61 Cygni and Arcturus. Beyond mentioning that it is in the Sirius Sector, Dorwin gives no further details.
Caraá is a municipality in the state Rio Grande do Sul, Brazil.
The French Army (French: Armée de terre [aʀme də tɛʀ], "land army") is the land-based and largest component of the French Armed Forces. Along with the French Air Force, the French Navy and the National Gendarmerie, it is placed under the responsibility of the French government. The current Chief of Staff of the French Army (CEMAT) is general Jean-Pierre Bosser. All soldiers are considered professionals following the suspension of conscription, voted in parliament in 1997 and made effective in 2001.
As of 2014, the French Army employed 111,628 personnel (including the French Foreign Legion and the Paris Fire Brigade). In addition, the reserve element of the French Army consisted of 15,453 personnel of the Operational Reserve.
In 1999 the Army issued the Code of the French Soldier, which includes the injunctions:
The first permanent army, paid with regular wages, instead of feudal levies, was established under Charles VII in the 1420-30s. The Kings of France needed reliable troops during and after the Hundred Years' War. These units of troops were raised by issuing ordonnances to govern their length of service, composition and payment. These Compagnies d'ordonnance formed the core of the Gendarme Cavalry into the sixteenth century. Stationed throughout France and summoned into larger armies as needed. There was also provision made for "Francs-archers" units of bowmen and foot soldiers raised from the non-noble classes but these units were disbanded once war ended.