- published: 30 Nov 2020
- views: 664892
'+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; })); }); -->
"T.N.T." is a single released in 1976 by the hard rock band AC/DC, taken from their Australian album T.N.T. and the international version of High Voltage. The song was written by Bon Scott, Angus Young and Malcolm Young. It peaked at No.11 on the Australian Kent Music Report Singles Chart.
A slightly modified line from the song, "Lock up your daughters", was used as the title of AC/DC's first headlining tour of Great Britain in 1976 after the band's move from Melbourne, Australia, to London, earlier that year. "T.N.T." later appeared on Live and the Live: 2 CD Collector's Edition, with Brian Johnson providing vocals.
T.N.T. is the second studio album by Australian hard rock band AC/DC, released only in Australia, on 1 December 1975.
After the success of the single "Baby, Please Don't Go" and the album High Voltage, AC/DC returned to Albert Studios in Sydney to record their second LP with producers George Young and Harry Vanda. George is the older brother of guitarists Malcolm Young and Angus Young and had enjoyed his own success in the group the Easybeats. T.N.T. marked a change in direction from AC/DC's debut album, High Voltage, which was released on 17 February 1975; whereas High Voltage featured some experimentation with the styles of its songs and had a variety of personnel filling multiple roles, T.N.T. saw the band fully embrace the formula for which they would become famous: hard-edged, rhythm and blues-based rock and roll. They also simplified their personnel system and would use it from then on out, which was Angus strictly playing lead guitar, Malcolm Young playing rhythm guitar, and the drummer and bassist being the only ones to play drums and bass guitar respectively on the albums. In Murray Engleheart's book AC/DC: Maximum Rock & Roll, producer Harry Vanda states, "I suppose there might have been one or two tracks on the first album, a few things that they were experimenting with, which probably later on they wouldn't have done anymore. So I suppose you could say that T.N.T was the one that really pulled the identity; like, this is AC/DC, there's no doubt about it, that's who it's going to be and that's how it's going to stay."
Trinitrotoluene (/ˌtraɪˌnaɪtroʊˈtɒljuːˌiːn, -ljəˌwiːn/;TNT), or more specifically 2,4,6-trinitrotoluene, is a chemical compound with the formula C6H2(NO2)3CH3. This yellow-colored solid is sometimes used as a reagent in chemical synthesis, but it is best known as a useful explosive material with convenient handling properties. The explosive yield of TNT is considered to be the standard measure of strength of bombs and other explosives. In chemistry, TNT is used to generate charge transfer salts.
While the two words are sometimes used interchangeably in common conversation, TNT is not the same as dynamite, a special formatting of nitroglycerin for use as an industrial explosive.
TNT was first prepared in 1863 by German chemist Julius Wilbrand and originally used as a yellow dye. Its potential as an explosive was not appreciated for several years mainly because it was so difficult to detonate and because it was less powerful than alternatives. TNT can be safely poured when liquid into shell cases, and is so insensitive that in 1910, it was exempted from the UK's Explosives Act 1875 and was not considered an explosive for the purposes of manufacture and storage.
The đàn tứ (tứ meaning "four" in Sino-Vietnamese, referring to the instrument's number of strings), also called đàn đoản (đoản meaning "short," referring to the instrument's neck), is a traditional Vietnamese stringed musical instrument, a moon-shaped lute with a short neck, similar to the Chinese yueqin. It is little used today.
A different instrument with the same name, which is similar to the Chinese zhongruan, is used in Vietnam's tradition of nhạc dân tộc cải biên. About 1960s, Vietnamese musician improved đàn tứ's ability to play Western-style music by creating a rectangular body with longer strings designed for Western Diatonic scale. It now becomes much more popular than the traditional version.
In English grammar, certain verb forms are classified as auxiliary verbs. Exact definitions of this term vary; an auxiliary verb is generally conceived as one with little semantic meaning of its own, which modifies the meaning of another verb with which it co-occurs. In English, verbs are often classed as auxiliaries on the basis of certain grammatical properties, particularly as regards their syntax – primarily whether they participate in subject–auxiliary inversion, and can be negated by the simple addition of not after them.
Certain auxiliaries have contracted forms, such as 'd and 'll for had/would and will/shall. There are also many contractions formed from the negations of auxiliary verbs, ending in n't (a reduced form of not). These latter contractions can participate in inversion as a unit (as in Why haven't you done it?, where the uncontracted form would be Why have you not done it?), and thus in a certain sense can be regarded as auxiliary verbs in their own right.
NT may refer to:
0:00 - 3:05 - TNT -- DDD 2-013 3:05 - 7:03 - TNT -- Scared 7:03 - 10:40 - TNT -- Dial T For TNT 10:42 - 14:03 - TNT -- Countdown 14:10 - 18:05 - TNT & Brennan Heart -- Punk Fanatic TNT -- First Match 2011 TNT -- TN... Who? TNT -- Naked TNT -- The Eighth Note TNT -- Good Times TNT -- Utta Wanka TNT -- The Second Match (Amazed Remix)
Banda TNT - 1987 Álbum completo
We share post-rock songs, albums and playlists. Artist: Tortoise (USA) Album: TNT (1998) http://www.trts.com 1. TNT 00:00 2. Swing From The Gutters 7:34 3. Ten-Day Interval 13:29 4. I Set My Face To The Hillside 18:16 5. The Equator 24:26 6. A Simple Way To Go Faster Than Light That Does Not Work 28:27 7. The Suspension Bridge At Iguazu Falls 32:03 8. Four-Day Interval 37:42 9. In Sarah, Mencken, Christ And Beethoven There Were Women And Men 42:29 10. Almost Always Is Nearly Enough 50:01 11. Jetty 52:45 12. Everglade 1:01:09
©️ Produksioni Labia 🎙TNT - HITE 1. Biondina 2. Për ty 3. Oj Kosovë 4. Luje belin luje 5. Ata sy 6. Loto 7. Kur ty nuk t’kam 8. E vogël , e vogël 9. Eni të këndojmë 10. Prej se ike 11. Harrimi 12. Netët 13. Xhevahir 14. E din 15. Loçka 16. Trendi 17. Të gjitha i kishe 18. Natë e kotë 19. Dashuria nje ditë shkon ✅Digital distribution : Produksioni Labia ; ✔Follow : Produksioni Labia online 👉FACEBOOK : https://www.facebook.com/labiaofficial 👉TWITTER:https://twitter.com/ProduksioniL 👉INSTAGRAM Produksioni Labia :https://www.instagram.com/produksioni... 👉INSTAGRAM Music & Film LABIA :https://www.instagram.com/produksioni... ℹContact : Produksioni Labia 📧email: [email protected] 📞Mob : +38349400035 ,+38349399999 ✅Producent ekzekutiv : Shkumbin Kryeziu ☑Menagjer ...
Provided to YouTube by Columbia T.N.T. · AC/DC High Voltage ℗ 1976 J. Albert & Son Pty Ltd Released on: 1976-04-30 Guitar, Composer, Lyricist: Angus Young Vocal, Composer, Lyricist: Bon Scott Guitar, Composer, Lyricist: Malcolm Young Drums: Phil Rudd Bass: Mark Evans Producer: Harry Vanda and George Young Auto-generated by YouTube.
TNT - A Farewell To Arms (Full Album) Released: 2010 Label: TNT Track Listing 01. Engine 0:00 02. Refugee 4:37 03. Ship In The Night 8:58 04. Take It Like A Man - Woman! 13:00 05. Come 16:03 06. Barracuda 19:47 07. A Signature On A Demon's Self-portrait 22:28 08. Don't Misunderstand Me 23:27 09. A Farewell To Arms 26:56 10. Someone Else 29:37 11. God Natt, Marie 34:01 12. Not Only Lonely 38:31
01 - Nunca Mais Voltar (00:00) 02 - Não Sei (04:55) 03 - Baby (09:17) 04 - Irmã do Dr. Robert (13:38) 05 - Estou Na Mão (18:22) 06 - Oh! Deby (22:45) 07 - Identidade Zero (26:36) 08 - Você Me Deixa Insano (30:53) 09 - O Mundo É Maior Que O Teu Quarto (34:23) 10 - Tudo No Ar (38:36) 11 - Desse Jeito (42:00) 12 - FEBEM (45:18) 13 - A Cigana (48:49) 14 - Saiba Escolher Os Seus Amigos (51:42) 15 - Quem Procura Acha (54:48) 16 - Não Tenho Medo Da Vida (58:15) 17 - Ana Banana (01:02:26) 18 - Entra Nessa (01:06:28) 19 - Cachorro Louco (01:09:24)
Strap yourself in for the most thundering AC/DC tracks! Listen to the playlist now: https://ACDC.lnk.to/AreYouReadyYA!tnt High Voltage Buy/Listen - https://LegacyRecordings.lnk.to/acdc_hv!tnt About the album: Years of musical knowledge and understanding had passed between Angus and Malcolm Young by the time High Voltage announced the arrival of a new Australian take on rock. With Bon Scott on board, this 1976 American release reduced rock 'n' roll down to rhythm, riffs, and raunch. Follow AC/DC: Spotify - https://LegacyRecordings.lnk.to/acdc_hvSI!tnt Facebook - https://LegacyRecordings.lnk.to/acdc_hvFI!tnt Twitter - https://LegacyRecordings.lnk.to/acdc_hvTI!tnt Instagram - https://LegacyRecordings.lnk.to/acdc_hvII!tnt Website - https://LegacyRecordings.lnk.to/acdc_hvWI!tnt
Published & Exclusive Producer: ZICO Company All rights reserved © ZICO Company Rights are registered and protected by: Organization for Audiovisual Music Rights https://www.facebook.com/ZicoCompanyOfficial #ZICOCompany #TNT #HiteTePavdekshme
This video is not intendet to cause any harm its only for scientific purposes. The full credits go to: Energy Unleashed
This video shows how to Manufacture TNT. Initially, Methyl Benzene is reacted with Conc H2SO4 and HNO3 to produce MNT then MNT is reacted with Conc H2SO4 and HNO3 to make DNT and Finally, DNT is treated with HNO3 and Oleum to manufacture TNT 🌿 Explore the fascinating world of organic chemistry and understand the secrets of carbon compounds. #OrganicChemistry #ChemicalReactions #MolecularStructures #ChemistryEducation #CarbonCompounds #ChemicalBonds #ScienceExploration #ChemistryBasics #LearnChemistry #Chemistry101 🌿 Uncover the beauty of organic molecules and their role in our everyday lives. #OrganicMolecules #ChemistryInLife #Biochemistry #ChemistryForBeginners #MolecularScience #ChemicalStructures #ChemistryFacts #ScienceDiscovery #ChemistryWorld #EducationalVideos 🌿 Dive into the wor...
For a school project, inspired by (an essentially in the style of) loads of youtube educational channels, especially minutephysics. How TNT is formed.
I didn't even realise that "low explosives" were a thing; let's talk about deflagration, detonation, and how high explosives can actually be safer. • Thanks to Steve from Live Action FX! Filmed safely: https://www.tomscott.com/safe/ Camera: Simon Temple http://templefreelance.co.uk Edited by Michelle Martin: https://www.youtube.com/@OnTheCrux 🟥 MORE FROM TOM: https://www.tomscott.com/ (you can find contact details and social links there too) 📰 WEEKLY NEWSLETTER with good stuff from the rest of the internet: https://www.tomscott.com/newsletter/ ❓ LATERAL, free weekly podcast: https://lateralcast.com/ https://youtube.com/lateralcast/ ➕ TOM SCOTT PLUS: https://youtube.com/tomscottplus 👥 THE TECHNICAL DIFFICULTIES: https://youtube.com/techdif
Nitroglycerine, TNT and dynamite. More chemistry at http://www.periodicvideos.com/
**This video is intended for educational & entertainment purposes only.** Richard Ryan from RatedRR demonstrates the power of RDX and gives a bit of background information on its relation to TNT and C4. Subscribe to Richard Ryan from RatedRR here - http://YouTube.com/RatedRR
Nitroglycerin at home THIS IS FOR EDUCATIONAL PURPOSES I DO THIS TO EXPLORE THE CHEMISTRY! All of the information in this video is already available on wikipedia, so im not giving light to some "obscure" knowledge its well known. Everything in this video is common knowledge and is meant to educate people about chemistry, even though i use satire , this experiment has many dangers dont attempt. tags:making nitroglycerin at home,nitroglycerin,chemistry,nitro,glycerin,dynamite,making dynamite,how its made,nobel,nitroglycerin synthesis,nitroglycerin explosion slow motion,nitroglycerin explosion,explosion,cool,science
NOTICE: THIS IS NOT ME, I THIS VIDEO UPLOAD FROM INTERNET THIS IS ONLY FOR EDUCATION PURPOSES hire is their web site http://chemistry-chemists.com/ #ТНТ #тротил #TNT #Trinitrotoluene #trotil
In this video, I’ll answer the question – what is the difference between TNT and dynamite? Looney Tunes – and other cartoons, for that matter – often use TNT and dynamite interchangeably for their gags. But in real life, the two aren’t the same at all. Dynamite was first discovered in 1867 by the Swedish chemist Alfred Nobel, who had stumbled upon it while trying to develop a way to stabilize nitroglycerin, making it less prone to exploding suddenly in a person’s face. His motivation stemmed from the death of his younger brother, Emil, who was killed in 1864 in an accidental explosion at his father’s factory, where they were experimenting with nitroglycerin. When Nobel combined nitroglycerine with sodium carbonate and “diatomaceous earth” or the tiny fossilized remains of aquatic or...
"T.N.T." is a single released in 1976 by the hard rock band AC/DC, taken from their Australian album T.N.T. and the international version of High Voltage. The song was written by Bon Scott, Angus Young and Malcolm Young. It peaked at No.11 on the Australian Kent Music Report Singles Chart.
A slightly modified line from the song, "Lock up your daughters", was used as the title of AC/DC's first headlining tour of Great Britain in 1976 after the band's move from Melbourne, Australia, to London, earlier that year. "T.N.T." later appeared on Live and the Live: 2 CD Collector's Edition, with Brian Johnson providing vocals.
See me ride out of that sunset
On your color TV screen
Out for all that I can get
If you know what I mean
Women to the left of me
And women to the right
Ain't got no gun
Ain't got no knife
Don't you start no fight
Cause I'm P.M.S. I'm dynamite
P.M.S. and I'll win that fight
P.M.S. I'm a power load
P.M.S. watch me explode
I'm dirty, mean and mighty unclean
I'm a wanted man
Public enemy number one
Understand?
So lock up your daughter
Lock up your wife
Lock up your back door
And run for your life
The man is back in town
So don't you mess around
Cause I'm P.M.S., I'm dynamite
P.M.S. and I'll win the fight
P.M.S. I'm a power load
P.M.S. watch me explode
P.M.S. oi, oi, oi
P.M.S. oi, oi, oi
P.M.S. oi, oi, oi
P.M.S. oi, oi, oi
P.M.S. oi
I'm dynamite (oi, oi)
P.M.S. oi
And I'll win the fight (oi, oi)
P.M.S. oi
I'm a power load (oi, oi)
P.M.S.
Watch me explode