- published: 12 Mar 2020
- views: 1438992
'+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; })); }); -->
CI or Ci, but not C I or C.I, may refer to:
Cài (Chinese: 蔡) is a Chinese surname that derives from the name of the ancient Cai state. It is regionally more common in China's Fujian Province and in countries settled by ethnic Chinese from that province than in China as a whole. The surname is the 34th most common surname in China, but the 9th most common in Taiwan, where it is usually romanized as Tsai, and the 8th most common in Singapore, where it is usually romanized as Chua. It is also a common name in Hong Kong where it is romanized as Choy, Choi or Tsoi, in Macao and Malaysia, it's spelled as Choi, in Malaysia and the Philippines as Chua, in Thailand as Chuo (ฉั่ว). Moreover, it is also romanized in Cambodia as either Chhay, Chhuor or Chhor among Chinese Cambodians.
The Cais are said to be the descendants of the 5th son of King Wen of Zhou, Ji Du. Ji Du was awarded the title of marquis (hóu) of the State of Cai (centered on what is now Shangcai, Zhumadian, Henan, China), and he was known as Cai Shu Du ("Uncle Du of Cai"). Together with Guan Shu and Huo Shu, they were known as the Three Guards. When King Wu died, his son King Cheng was too young and his uncle, the Duke of Zhou, became regent. Seeing that the power of the Duke of Zhou was increasing, the Three Guards got jealous and rebelled against Zhou together with Wu Geng. The Duke of Zhou suppressed the rebellion, and Cai Shu was exiled. King Cheng reestablished Cai Shu’s son Wu or Hu as the new Duke of Cai. Some 600 years later in the Warring States period, the State of Chu conquered Cai in 447 BC and was itself conquered by the Qin state which, in turn, formed the Qin Empire, China's first empire. With the spread of family names to all social classes in the new empire, many people of the former state of Cai began to bear it as a surname.
2C-I (2,5-dimethoxy-4-iodophenethylamine is a psychedelic phenethylamine of the 2C family. It was first synthesized by Alexander Shulgin and described in his 1991 book PiHKAL: A Chemical Love Story. The drug is used recreationally for its psychedelic and entactogenic effects and is sometimes confused for the analog 25I-NBOMe, nicknamed "Smiles," in the media.
In the early 2000s, 2C-I was sold in Dutch smart shops after the drug 2C-B was banned.
According to the US government's Drug Enforcement Administration, 2C-I is taken orally or snorted in a powder form.
Visual effects of 2C-I exposure have been described by many users as iterating fractals, along with a more generalized shift in perception and/or cognition.
In December 2003, the European Council issued a binding order compelling all EU member states to ban 2C-I within three months.
Controlled substance.
Controlled substance.
Controlled substance.
What is DevOps? How to setup a CI/CD pipeline? Learn the basics of continuous integration & delivery and how it can optimize your productivity and code quality. After this, go further 👉 https://youtu.be/eB0nUzAI7M8 Demo Repo https://github.com/fireship-io/225-github-actions-demo Stay tuned for a full Github Actions DevOps project. https://github.blog/2019-08-08-github-actions-now-supports-ci-cd/ CI/CD https://en.wikipedia.org/wiki/Continuous_integration Install the quiz app 🤓 iOS https://itunes.apple.com/us/app/fireship/id1462592372?mt=8 Android https://play.google.com/store/apps/details?id=io.fireship.quizapp Upgrade to Fireship PRO at https://fireship.io/pro Use code lORhwXd2 for 25% off your first payment. My VS Code Theme - Atom One Dark - vscode-icons - Fira Code Font
To get better at system design, subscribe to our weekly newsletter: https://bit.ly/3tfAlYD Checkout our bestselling System Design Interview books: Volume 1: https://amzn.to/3Ou7gkd Volume 2: https://amzn.to/3HqGozy ABOUT US: Covering topics and trends in large-scale system design, from the authors of the best-selling System Design Interview series.
Learn GitLab CI/CD by building a complete CICD pipeline for a python demo project | with Docker 🧡 GitLab Course with Kubernetes, Microservices, Multi-Stage: https://bit.ly/3MqmVlr 💚 Become a DevOps Engineer - 6-month program: https://bit.ly/3BQ6j1v #gitlab #gitlabcicd #techworldwithnana ► This course is sponsored by Twingate 🙌🏼, a modern alternative to VPN ► If you want to try it, check out their special offer for my viewers by using the code "NANA": https://lp.twingate.com/NANA ▬▬▬▬▬▬ What you’ll learn in 1 Hour ✅ ▬▬▬▬▬▬ ► What GitLab CI/CD is ► GitLab compared to other CI/CD platforms ► Overview of GitLab Architecture ► Build a full GitLab CI/CD pipeline for a python app that - executes tests, - builds a Docker image, - pushes to a private Docker repos...
In the world of espionage, some missions require an agent with a unique set of skills, possessing not just bravery but an ability to melt even the most villainous heart. This is a job for C.I. Ape! The 1st ever chimpanzee joining the C.I.A. When a criminal plot is discovered, the C.I.A. turns to him, their most unique operative to foil the plot from the inside. C I Ape – On Digital and DVD on Tuesday, September 28, 2021 Sophia Alongi, Skip Schwink and Madelyn Kientz Subscribe to the LIONSGATE YouTube Channel for the latest movie trailers, clips, and more: https://bit.ly/2Z6nfym https://www.facebook.com/lionsgate https://twitter.com/lionsgate https://www.instagram.com/lionsgate https://www.tiktok.com/@lionsgate
Conoscevi questi verbi che usano la particella CI in italiano? 🇮🇹 Scopri il mio corso ITALIANO VERO: https://bit.ly/3AKLeWl 📝 Scarica il PDF: https://bit.ly/3W6ciL8 💌 Iscriviti alla newsletter: https://bit.ly/3u7Gg1s 🏖 Scarica il mio ebook sull'estate: https://bit.ly/3Qq1Rwz 🎄 Scarica il mio ebook sul NATALE qui: http://bit.ly/3BELypX 🎓 Visit my ONLINE SCHOOL: https://bit.ly/3yZeqWV 📚 ITALIAN USEFUL RESOURCES ➡️ Online Italian Course for Beginners: http://bit.ly/2NHm0Ck ➡️ Visit my blog: http://bit.ly/3aF5RGJ ➡️ Ascolta il podcast qui: https://bit.ly/38elC95 ➡️ Scarica le trascrizioni qui: https://bit.ly/37w25AI 📸 Follow me on Instagram: https://bit.ly/2ZANMDm ☕️ Support my channel and my trips around Italy: https://bit.ly/2SNH9NS 🤩 $10 free italki credits (after first less...
3. Learn Italian Post-intermediate (B2): Come usare “ci”- How to use “ci” 🇮🇹 Italian language, Italian culture, Italian lifestyle and Italian recipes are the main themes of our videos. Jump right in and learn everything about Italy and Italian with Passione Italiana. Just click the subscribe button! 🔴 If you like our videos, you can support us on https://www.patreon.com/passioneitaliana or make a donation on PayPal to [email protected] You can find us on: 🔸Website: https://www.passione-italiana.com/ 🔸Facebook: https://www.facebook.com/ItalianPassione 🔸Twitter: https://twitter.com/ItalianPassione 🔸Instagram: https://www.instagram.com/passioneitalian/ Most popular videos: 📹 13. Learn Italian Elementary (A2): Le preposizioni A e IN: https://www.youtube.com/watch?v=1Wf9e4-v3aE 📹...
∼∼ KTC Classes By Kapildeo Sir ∼∼ 🔷 A𝐩𝐩𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧 𝐃𝐨𝐰𝐧𝐥𝐨𝐚𝐝 𝐧𝐨𝐰 👇KTC Classes https://bit.ly/2p5Mnpr 🔷 pdf के लिए Join करें My Telegram Channel 👇KTC Pdf By Kapildeo Sir https://t.me/kapildeosir 🔷 👇Twitter https://twitter.com/kapildeosirmath 🔷 Follow Our Whatsapp Channel 👇 KTC Classes By Kapildeo Sir https://shorturl.at/crtK7 🔷 मेरा नया Youtube Channel 👇 'KTC 2.0 By Kapildeo Sir' https://shorturl.at/enzHX 👇 'ExamHub' https://shorturl.at/ghmBQ Compound Interest II चक्रबृद्धि व्याज ¦ SSC/NTPC/BANK ¦ Math Best Tricks | KTC By Kapildeo Sir #Shorts #shorts Compound Interest problems in compound interest questions in si and ci ci si compound interest tricks questions on compound interest in hindi q...
#ssccgl2024 #sscgd2024 #uppolice2024 #rrbalp2024 ========================================== WiNNERS Publication Book Store: https://books.winnerspublication.store/ ========================================== Compound Interest By Aditya Patel Sir | CI Short Tricks For SSC CGL, UP Police, SSC GD, Railway ALP ========================================== Maths by Aditya Sir - https://www.youtube.com/playlist?list=PLIg0tWeLzFyDHf07wzg1H_sTqaHoTvdWH Target 2024 | SSC GD | UP Police | Maths by Aditya Patel Sir - https://www.youtube.com/playlist?list=PLIg0tWeLzFyClyL3cpNZXoKXc3qlKh-Cq ========================================== Download PDF - https://t.me/WinnersInstituteIndoreAdityaSir/37925 ========================================== 📱 WiNNERS ऐप डाउनलोड करें -https://play.google.com/store/apps/det...
REMASTERED IN HD! Official Music Video for All My Life performed by K-Ci & JoJo. Follow K-Ci & Jo-Jo: Facebook: https://www.facebook.com/kciandjojo Instagram: https://www.instagram.com/realkcijojo Twitter: https://twitter.com/realkcijojo #AllMyLife #KCiAndJoJo #Remastered
#shorts
This video shows you How to Pronounce Cai Lun, pronunciation guide. Learn how to say PROBLEMATIC WORDS better: https://www.youtube.com/watch?v=dyncGi5eWz0&list=PLd_ydU7Boqa2TWjHeVDMd_w6b4bDlwA2- Listen how to say this word/name correctly with Julien (English vocabulary videos), "how do you pronounce" free pronunciation audio/video tutorials. Learn how to say words in English, French, Spanish, German, Italian, and many other languages with Julien Miquel and his pronunciation tutorials! In the world of words and the diversity of accents and local dialects, some words can be extremely hard to pronounce. There are mobile apps, online tools, dictionary websites to help you as well, but this dedicated channel is you go-to directory to improve your diction, voicing elocution, enunciation, a...
9 Tips That Will Improve Your Chinese Pronunciation : http://3languageadventure.com/chinesepronunciationtips Facebook : https://www.facebook.com/3languageadventure/ Twitter : @qkawabe
Call Out My Name (Official Video) Taken from the album My Dear Melancholy, http://theweeknd.co/mdmYD Connect with The Weeknd: http://www.facebook.com/theweeknd http://instagram.com/theweeknd https://soundcloud.com/theweeknd https://twitter.com/TheWeeknd https://www.theweeknd.com Directed by Grant Singer PRODUCER – Saul Germaine EXECUTIVE PRODUCER – Nina Soriano For Anonymous Content DIRECTOR OF PHOTOGRAPHY – Alexis Zabe PRODUCTION DESIGNER – Page Buckner EDITOR – Nate Gross for Exile Edit COLORIST – Simon Bourne for Framestore VFX – The Mill VFX SUPERVISOR – David Lawson VFX CREATIVE DIRECTOR – Becky Porter 2D LEAD ARTIST – Jason Bergman 3D LEAD ARTIST – David Lawson AUDIO MIXER – Adam Primack for Lime Studios Music video by The Weeknd performing Call Out My Name. © 2018 The W...
Pen: Papermate Inkjoy » https://amzn.to/3DMKVcC Microfiber cloth (put under paper) » https://amzn.to/3Odn380 #硬笔书法 #chinesecalligraphy #asmr
2C-I is a psychedelic phenethylamine that has primarily been used in a minimal way since the early 2000s. It's a member of the 2C family and is less popular than 2C-B. Reddit discussion: https://www.reddit.com/r/TheDrugClassroom/comments/4davus/2ci/ ------------ PsychonautWiki Page: https://psychonautwiki.org/wiki/2C-I ------------ Donate to The Drug Classroom: https://www.patreon.com/TheDrugClassroom https://www.paypal.me/TheDrugClassroom Bitcoin: 1HsjCYpBHKcVCaW4uKBraCGkc1LK8xoj1B ------------ The Drug Classroom (TDC) is dedicated to providing the type of drug education everyone should have. Drugs are never going to leave our society and there has never been a society free from drugs. Therefore, it only makes sense to provide real education free from propaganda. TDC doesn't ...
2C-E is a psychedelic phenethylamine that was first synthesized by Alexander Shulgin. It has a short history of use. The drug can be more intense and uncomfortable than some other 2C substances. 2C-E = Europa Reddit discussion: https://www.reddit.com/r/TheDrugClassroom/comments/4eztru/2ce/ ------------ PsychonautWiki Page: https://psychonautwiki.org/wiki/2C-E ------------ Donate to The Drug Classroom: https://www.patreon.com/TheDrugClassroom https://www.paypal.me/TheDrugClassroom Bitcoin: 1HsjCYpBHKcVCaW4uKBraCGkc1LK8xoj1B ------------ The Drug Classroom (TDC) is dedicated to providing the type of drug education everyone should have. Drugs are never going to leave our society and there has never been a society free from drugs. Therefore, it only makes sense to provide real educ...
2c-I experience (smoke session 5 part 2.)
"How 2C-I Shattered This Man's Mind" Two friends took 2C-I one evening and spiraled into madness... INTRO SONG: "ALABAMA RAILROAD TOWN" by DOUG FIREBAUGH SHOP MY MERCH: https://talesfromthetrip.myshopify.com/ SUBSCRIBE TO MY SECOND CHANNEL: https://www.youtube.com/@thetripkeeper SUBMIT YOUR OWN REPORT HERE: https://www.reddit.com/r/TripReportsTFTT/ TALES FROM THE TRIP! ON SPOTIFY: https://open.spotify.com/show/6kfcruoX5JlhdGIxKmvsTa?si=6ed12142fe844f22 TALES FROM THE TRIP! ON APPLE PODCASTS: https://podcasts.apple.com/us/podcast/tales-from-the-trip/id1738529568 SUPPORT ME ON PATREON: https://www.patreon.com/talesfromthetrip FOLLOW ME ON INSTAGRAM: https://www.instagram.com/officialtripkeeper FOLLOW ME ON X: https://twitter.com/TheTripKeeper JOIN THE TALES FROM THE TRIP DISCORD: ...
*THIS VIDEO DOES NOT ADVOCATE ANY OF THE FOLLOWING BEHAVIOUR AND IS INTENDED TO EDUCATE PEOPLE ON SUBSTANCE USE & HEIGHTENED STATES OF CONSCIOUSNESS. DO NOT ATTEMPT TO RECREATE ANYTHING DISCUSSED IN THE VIDEO* A psychonaut takes an unknown dose of 2C-I whilst at a party and experiences a wide range of physical & mental effects. Support me on Patreon: https://www.patreon.com/Vivec Follow me on Instagram: https://www.instagram.com/vivec_warriorpoet/?hl=en Become a channel member: https://www.youtube.com/channel/UCV-q8rkVhtR6E4wv_DVM6Lg/join Information regarding 2C-I: https://psychonautwiki.org/wiki/2C-I Original report: https://erowid.org/experiences/exp.php?ID=31725 Music featured: 1. True (Silent Hill 2) 2. Girls & Hunters (The Void) 3. Pulsating Ambience (Silent Hill 4) Gameplay ...
I explain everything there is to know about the psychedelic phenethylamine, 2C-I! This is a stimulating psychedelic in the 2C family! ► INSTAGRAM: @lowkey_fish ◄ https://instagram.com/lowkey_fish ► TWITTER: @lowkey_fish ◄ https://twitter.com/lowkey_fish ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ Chapters: 0:00 - What to Expect 0:31 - What is 2C-I? 0:52 - What does it feel like? 1:09 - History 1:20 - Forms 1:25 - Dosage 1:37 - Duration 1:52 - My Experience (Trip Report) 2:35 - How it compares 25x-NBOMe . Watch my next video showcasing another psychedelic: 25x-NBOMe! https://youtu.be/vmU11IiwhiM Copyright ©️ 2022 Lowkey Fish. All rights reserved. __________________________________________________________________________________________ This vid...
Pure Insanity trip report from the 2C-I vault of Erowid. 2C-I is a psychedelic substance of the phenethylamine class. It is a member of the 2C-x family of psychedelic phenethylamines, all of which were derived from the systematic modification of the mescaline molecule. 2C-I is a short-acting synthetic psychedelic. It gained some popularity in Europe and the U.S. between 2001 and 2005. It has sometimes been confused with 2C-I-NBOMe, which became popular in 2012 and which has substantially lower dosages. Please support Erowid at http://www.erowid.org Original report : https://erowid.org/experiences/exp.php?ID=91036 We do not condone or support the use of drugs. These videos are made for educational and entertainment purposes only. To have your report read send it to [email protected]...
"2C-I Completely Ruined This Man's Life" This man accidentally took 2C-I and has yet to fully recover... INTRO SONG: "ALABAMA RAILROAD TOWN" by DOUG FIREBAUGH SUBSCRIBE TO MY SECOND CHANNEL: https://www.youtube.com/@thetripkeeper SUBMIT YOUR OWN REPORT HERE: https://www.reddit.com/r/TripReportsTFTT/ TALES FROM THE TRIP! ON SPOTIFY: https://open.spotify.com/show/6kfcruoX5JlhdGIxKmvsTa?si=6ed12142fe844f22 JOIN THIS CHANNEL TO ACCESS THE PERKS: https://www.youtube.com/channel/UCCP9kLHek4OHp6Y3DwLOWJA/join SUPPORT ME ON PATREON: https://www.patreon.com/talesfromthetrip FOLLOW ME ON INSTAGRAM: https://www.instagram.com/thetripkeeper/ SUBSCRIBE IF YOU'RE NEW AND CHECK OUT MY OTHER VIDEOS HERE: https://www.youtube.com/playlist?list=PLoYgEguf1BIhkso7T1Fsmna3IEhYrAvYz #horrorstories #redd...
This is a trip report from back in 2011 where i took 2ci and experience a massive amount of pareidolia and seeing faces in objects. ---------------------------------------- Patreon ☯ https://www.patreon.com/SleepyE Merch Store ☯ https://www.redbubble.com/people/sleepye/works/32174956-dmt-trip-art?asc=u&p=throw-pillow Art Page ☯ https://www.facebook.com/SleepyeDmt/ Twitter ☯ https://twitter.com/SleepyEdmt Instagram ☯ https://www.instagram.com/sleepye1/ https://www.instagram.com/sleepypianist/ -------------------------------------------------
CI or Ci, but not C I or C.I, may refer to: