this tool allows you to have bubba as a window in another site. This will help with 'lessons'
copy the code below, then right click the bookmark bar [where you have your save tabs under the search bar]. then click on paste. vid tut below aswell
javascript:(function(){if(document.getElementById('floatingIframeWindow'))return;var w=document.createElement('div');w.id='floatingIframeWindow';w.style.position='fixed';w.style.top='50px';w.style.left='50px';w.style.width='400px';w.style.height='300px';w.style.border='2px solid #333';w.style.background='#fff';w.style.zIndex=999999;w.style.resize='both';w.style.overflow='hidden';w.style.boxShadow='0 0 10px rgba(0,0,0,0.5)';var h=document.createElement('div');h.style.background='#333';h.style.color='#fff';h.style.padding='5px';h.style.cursor='move';h.style.display='flex';h.style.justifyContent='space-between';h.style.alignItems='center';var title=document.createElement('span');title.innerText='Bubba Inc - drag here';h.appendChild(title);var closeBtn=document.createElement('span');closeBtn.innerText='×';closeBtn.style.cursor='pointer';closeBtn.style.fontWeight='bold';closeBtn.onclick=function(){w.remove()};h.appendChild(closeBtn);w.appendChild(h);var f=document.createElement('iframe');f.src='https://bubbaincorp.com';f.style.width='100%';f.style.height='calc(100% - 30px)';f.style.border='none';w.appendChild(f);document.body.appendChild(w);var ox,oy,d=false;h.addEventListener('mousedown',function(e){if(e.target===closeBtn)return;d=true;ox=e.clientX-w.offsetLeft;oy=e.clientY-w.offsetTop;document.body.style.userSelect='none'});document.addEventListener('mouseup',function(){d=false;document.body.style.userSelect=''});document.addEventListener('mousemove',function(e){if(!d)return;w.style.left=(e.clientX-ox)+'px';w.style.top=(e.clientY-oy)+'px'})})();