- published: 09 Aug 2018
- views: 329292
'+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; })); }); -->
9K114 Shturm (Russian: 9К114 «Штурм»- "shturm" means storm (assault) in English) is a SACLOS radio guided anti-tank missile system of the Soviet Union. Its GRAU designation is 9K114. Its NATO reporting name is AT-6 Spiral. The missile itself is known as the 9M114 Kokon (Cocoon).
The missile was developed by the Kolomna Machine Design Bureau, which was also responsible for the 3M6 Shmel and 9M14 Malyutka. Work on the missile began in 1967, with the hope of using the missile on Mi-24s. However, delays forced the design of an upgraded Falanga system (9M17 Skorpion) using SACLOS guidance as a stopgap. Testing of the missile was completed in 1974, and it was accepted into service in 1976. The missile has no direct western counterpart, though, in role, it is closest to the AGM-114 Hellfire, and in guidance method, to the MGM-18 Lacrosse.
It was originally given the NATO designation AS-8, before being redesignated as AT-6.
The missile can be deployed on a variety of platforms, including the Mi-24V and from 1979-onwards the MT-LB based 9P149 tank destroyer. There is also a shipborne version of the missile, with the launcher holding six missiles.
In astronomy, stellar classification is the classification of stars based on their spectral characteristics. Electromagnetic radiation from the star is analyzed by splitting it with a prism or diffraction grating into a spectrum exhibiting the rainbow of colors interspersed with absorption lines. Each line indicates an ion of a certain chemical element, with the line strength indicating the abundance of that ion. The relative abundance of the different ions varies with the temperature of the photosphere. The spectral class of a star is a short code summarizing the ionization state, giving an objective measure of the photosphere's temperature and density.
Most stars are currently classified under the Morgan–Keenan (MK) system using the letters O, B, A, F, G, K, and M, a sequence from the hottest (O type) to the coolest (M type). Each letter class is then subdivided using a numeric digit with 0 being hottest and 9 being coolest (e.g. A8, A9, F0, F1 form a sequence from hotter to cooler). The sequence has been expanded with classes for other stars and star-like objects that do not fit in the classical system, such as class D for white dwarfs and class C for carbon stars.
Hungarian State Railways (Hungarian: Magyar Államvasutak or MÁV) is the Hungarian national railway company, with divisions "MÁV START Zrt." (passenger transport), "MÁV-Gépészet Zrt." (maintenance) and "MÁV-Trakció Zrt.". The "MÁV Cargo Zrt" (freight transport) is sold for ÖBB. The head office is in Budapest.
Hungary is a member of the International Union of Railways (UIC). The UIC country code for Hungary is 55.
The first steam locomotive railway line was opened on 15 July 1846 between Pest and Vác. This date is regarded as the birth date of the Hungarian railways. The Romantic poet Sándor Petőfi, later a leader of the Hungarian Revolution of 1848, rode on the first train and wrote an occasional poem, predicting that rails would connect Hungary like blood vessels in the human body.
After the failed revolution, the existing lines were nationalized by the Austrian State and new lines were built. As a result of the Austro-Sardinian War in the late 1850s all these lines were sold to Austrian private companies. During this time the company of Ábrahám Ganz invented a method of "crust-casting" to produce cheap yet sturdy iron railway wheels, which greatly contributed to railway development in Central Europe.
Vál is a village in Fejér County, Hungary.
The Fidelipac, commonly known as a "NAB cartridge" or simply "cart", is a magnetic tape sound recording format, used for radio broadcasting for playback of material over the air such as radio commercials, jingles, station identifications, and music. Fidelipac is the official name of this industry standard audio tape cartridge. It was developed in 1954 by inventor George Eash (although the invention of the Fidelipac cartridge has also been credited to Vern Nolte of the Automatic Tape Company), and commercially introduced in 1959 by Collins Radio at the 1959 NAB Convention. The cartridge was widely used at radio stations until the late 1990s, when such formats as MiniDisc and computerized broadcast automation made the Fidelipac cartridge obsolete.
The Fidelipac cartridge was the first audio tape cartridge available commercially, based on the endless-loop tape cartridge design developed by Bernard Cousino in 1952, while Eash shared space in Cousino's electronics shop in the early 1950s. Instead of manufacturing the Fidelipac format himself after developing it, Eash decided to license it for manufacture to Telepro Industries, in Cherry Hill, New Jersey. Telepro then manufactured and marketed the format under the Fidelipac brand name.
4-track or 4-track tape may refer to:
The 3480 tape format is a magnetic tape data storage format developed by IBM. The tape is one half inch wide and is packaged in a 4"x5"x1" cartridge. The cartridge contains a single reel; the takeup reel is inside the tape drive.
Because of their speed, reliability, durability and low media cost, these tapes and tape drives are still in high demand. A hallmark of the genre is transferability. Tapes recorded with one tape drive are generally readable on another drive, even if the tape drives were built by different manufacturers.
Tape drives conforming with the IBM 3480 product family specification were manufactured by a variety of vendors from 1984 to 2004. Core manufacturers included IBM, Fujitsu, M4 Data, Overland Data, StorageTek and Victor Data Systems (VDS). Various models of these tape drives were also marketed under other brands, including DEC, MP Tapes, Philips, Plasmon, Qualstar, Tandem, and Xcerta.
IBM designated all versions of 3480 and 3490E tape drives as members of the 3480 Product Family.
So we have made it through the dark ages, and are now a few hundred million years into the lifetime of the universe. There are plenty of stars all over the place, but are they all the same? How can we classify stars? Let's go through the basics of the Harvard System, and then take a look at something called a Hertzsprung-Russell diagram. Watch the whole Astronomy/Astrophysics playlist: http://bit.ly/ProfDaveAstronomy Classical Physics Tutorials: http://bit.ly/ProfDavePhysics1 Modern Physics Tutorials: http://bit.ly/ProfDavePhysics2 Mathematics Tutorials: http://bit.ly/ProfDaveMaths General Chemistry Tutorials: http://bit.ly/ProfDaveGenChem Organic Chemistry Tutorials: http://bit.ly/ProfDaveOrgChem Biochemistry Tutorials: http://bit.ly/ProfDaveBiochem Biology Tutorials: http://bit.ly/Prof...
We have all heard about the stars and witnessed there beauty in the night sky since our childhood. But Have you ever heard about Stellar Classification of Stars? If your answer is no, then you have landed at the right place because this video will touch the bottom of the topic. Before going too deep first, let us understand what exactly we mean by Stellar Classification of Stars! In astronomy, Stellar Classification is the classification of stars based on their spectral characteristics i.e. relation between wavelength and some other variables. Stellar classification, scheme for assigning stars to types according to their temperatures as estimated from their spectra. ------------------------------------------------------------------------------------------- Subscribe for more videos:https:/...
A brief overview of how stars are classified, in particular looking at the Morgan-Keenan method, using the Sun as an example.
Discover the exciting world of Stellar Classification in this informative video! Learn about the different types of stars, the Hertzsprung-Russell diagram, spectral lines, and the spectral classification system. Explore the unique characteristics and properties of stars and understand how astronomers categorize them based on their luminosity, temperature, and chemical composition. With clear explanations and captivating visuals, this video will take you on a journey through the universe and deepen your knowledge of astronomy.
Today Phil’s explaining the stars and how they can be categorized using their spectra. Together with their distance, this provides a wealth of information about them including their luminosity, size, and temperature. The HR diagram plots stars’ luminosity versus temperature and most stars fall along the main sequence, where they live most of their lives. Check out the Crash Course Astronomy solar system poster here: http://store.dftba.com/products/crashcourse-astronomy-poster -- Chapters: Introduction: Stars 00:00 Stellar Spectra 1:07 Star Classifications 3:03 Why Are There No Green Stars? 4:00 Luminosity Depends on Size and Temperature 5:27 The HR Diagram 6:33 Main Sequence Stars 7:27 Other Stars on the HR Diagram 8:17 Review 9:50 -- PBS Digital Studios: http://youtube.com/pbsdigitals...
Countless stars dot the night sky. Learn how these celestial objects form, how they are classified by brightness and temperature, and what happens when they die. ➡ Subscribe: http://bit.ly/NatGeoSubscribe #NationalGeographic #Stars #Educational About National Geographic: National Geographic is the world's premium destination for science, exploration, and adventure. Through their world-class scientists, photographers, journalists, and filmmakers, Nat Geo gets you closer to the stories that matter and past the edge of what's possible. Get More National Geographic: Official Site: http://bit.ly/NatGeoOfficialSite Facebook: http://bit.ly/FBNatGeo Twitter: http://bit.ly/NatGeoTwitter Instagram: http://bit.ly/NatGeoInsta Read more in "Everything you wanted to know about stars" https://on.natg...
https://patreon.com/freeschool - Help support more content like this! New from FreeSchool! FreeSchool 101 videos are for older viewers, with deeper information and more complex verbiage. In this video we explore the development of spectroscopy and stellar classification and various tools used in ii like the Harvard System and the Hertzsprung-Russell Diagram. Subscribe to FreeSchool: https://www.youtube.com/user/watchfreeschool Visit us on Facebook: https://www.facebook.com/watchFreeSchool Or check out our website for more content: http://www.freeschoolpublishing.com
The Sun is designated as a "G2V" star. What does that mean? Featuring Michael Merrifield, Amanda Bauer and Chris Conselise. Classifying stars - it's the first step we need to start our understanding of stars. Why do we give the star types such weird letters to classify them? Spectroscopic sequence helped analyse the different types in the late 1800's. Featuring the Harvard "computer", Annie Jump Cannon, one of the first woman astronomers, and who came up with the basic classification we use today after simplifying previous classifications. Visit our website at http://www.sixtysymbols.com/ We're on Facebook at http://www.facebook.com/sixtysymbols And Twitter at http://twitter.com/sixtysymbols This project features scientists from The University of Nottingham http://bit.ly/NottsPhysics P...
Business Enquiries ► [email protected] - - This video deals with stellar classification. Before going into the merits, however, it is good to say something about spectroscopy, as it is the basis of the same stellar classification. Spectroscopy is a very powerful method of investigation of the structure of matter which is based on the analysis of the decomposition of the light emitted by it into its fundamental wavelengths. - - Subscribe for more videos ►https://www.youtube.com/c/InsaneCuriosity?sub_confirmation=1? Business Enquiries ► [email protected] - - It is, on the analysis of the electromagnetic spectrum. In astrophysics it is essential to obtain information on the chemical composition and physical conditions of stars. But what is the electromagnetic...
How astronomers can use the strengths of different spectral lines in the light from a star to determine the spectral type/temperature, without being affected by the phenomena of interstellar reddening. You can access data from the Sloan Digital Sky Survey here: https://skyserver.sdss.org Full Series Playlist: https://www.youtube.com/playlist?list=PLQzpF6G7qUZATmrabrBhIDX_33jfCeHBR Please note that this was designed as an introductory survey of astronomy course, mostly for non-science majors, and does simplify many of the topics accordingly. I encourage people who are just getting into astronomy to use this as a jumping off point for more in depth studies. I've tried to edit out specific references to my course (regarding assignments, tests, etc.) but I might have missed some. Finall...
In this video you can enjoy the cab ride - train drivers' view on Hungarian State Railways (MÁV) train between the Nagykanizsa and Siófok Balaton on the line Budapest – Nagykanizsa – Murakeresztúr line 30 (MÁV) in 4K/60 frames per second. Maximum speed is 120 km/h. The Budapest–Murakeresztúr railway is a cca. 235-kilometre long railway line in Hungary that connects the Hungarian capital city Budapest with Nagykanizsa and Murakeresztúr. South of Murakeresztúr, the railway connects to the Croatian railway system, specifically the M501 railway serving Čakovec. The M501 connects to the Slovene railways at Središče ob Dravi, extending to Pragersko, while the R201 line branching off in Čakovec serves Varaždin. The line is part of the Pan-European Corridor V. The rail line along the south...
Hungarian State Railways (Hungarian: Magyar Államvasutak, MÁV) is the Hungarian national railway company, with divisions "MÁV START Zrt." (passenger transport), "MÁV-Gépészet Zrt." (maintenance), "MÁV-Trakció Zrt." and "MÁV Cargo Zrt" (freight transport).[1] The head office is in Budapest.[2] Construction of Hungary's first railway line began in the second half of 1844. The first steam locomotive railway line was opened on 15 July 1846 between Pest and Vác. This date is regarded as the birth date of the Hungarian railways. The Romantic poet Sándor Petőfi rode on the first train and wrote a poem predicting that rails would connect Hungary like blood vessels in the human body. After the failed revolution, the existing lines were nationalized by the Austrian State and new lines were built. ...
https://www.roblox.com/games/9443154523/M-V-Hungarian-State-Railways-Traveling-only
Hello everyone! In this video, I take MAV - Hungarian State Railways, a Hungarian rail company from Békéscsaba to Mezőberény. I hope you enjoy it! Join MAV - HSR here: https://discord.gg/tyMwkBBGCC Make sure to subscribe, and thanks for watching!
Hello and welcome to a new video. In todays video i introduced to you HSR 2 a project that never got finished. The game had high ping issues it was lagging so hard. So i left the project.
9K114 Shturm (Russian: 9К114 «Штурм»- "shturm" means storm (assault) in English) is a SACLOS radio guided anti-tank missile system of the Soviet Union. Its GRAU designation is 9K114. Its NATO reporting name is AT-6 Spiral. The missile itself is known as the 9M114 Kokon (Cocoon).
The missile was developed by the Kolomna Machine Design Bureau, which was also responsible for the 3M6 Shmel and 9M14 Malyutka. Work on the missile began in 1967, with the hope of using the missile on Mi-24s. However, delays forced the design of an upgraded Falanga system (9M17 Skorpion) using SACLOS guidance as a stopgap. Testing of the missile was completed in 1974, and it was accepted into service in 1976. The missile has no direct western counterpart, though, in role, it is closest to the AGM-114 Hellfire, and in guidance method, to the MGM-18 Lacrosse.
It was originally given the NATO designation AS-8, before being redesignated as AT-6.
The missile can be deployed on a variety of platforms, including the Mi-24V and from 1979-onwards the MT-LB based 9P149 tank destroyer. There is also a shipborne version of the missile, with the launcher holding six missiles.