This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:(async()=>{const url=window.location.href.split('?')[0];const name=document.querySelector('h1')?.innerText?.trim()||'';const expSection=document.querySelector('[id*="experience"]')?.closest('section');let company='',position='';if(expSection){const firstExp=expSection.querySelector('li');if(firstExp){const spans=firstExp.querySelectorAll('span[aria-hidden="true"]');if(spans.length>=2){position=spans[0]?.innerText?.trim()||'';company=spans[1]?.innerText?.trim()||'';}}}if(!company){const headline=document.querySelector('.text-body-medium')?.innerText?.trim()||'';const atMatch=headline.match(/(?:at|@|chez)\s+(.+)/i);if(atMatch)company=atMatch[1].trim();}const row=[url,name,company,position].join('\t');try{await navigator.clipboard.writeText(row);}catch(e){prompt('Copy this:',row);}})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl https://gist.githubusercontent.com/vpctorr/5217a668544e88790e545cbe6914d34e/raw/75420dcf22e73b80f027d3dd81dd42315284b044/turf_types_patch.sh | bash |