This file contains 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
// scripts for michael.team blog posts - they load whenever a blog post entry loads | |
// written by Michael Sliwinski: https://michael.team | |
// feel free to copy and give credit: https://michael.team/license | |
// more details about this gist: https://michael.team/postjs/ | |
const URL = "https://michael.team"; //my main domain | |
const POSTS = "/searchposts.json"; //json with all the posts | |
//get related links based on the tag of the current blog post | |
function getRelated(slug) { |
This file contains 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
lsof -i :19421 #find out which PID zoom server is on | |
lsof -i :19424 #if you are running Ring Central for Meetings (rebranded zoom) check this port out | |
lsof -i :19433 #if you are running Chinese version of Zoom (Zhumu) check this port out | |
kill -9 PID #kill the server - insert PID number you will find | |
rm -rf ~/.zoomus/ #remove zoom server from your Mac | |
rm -rf /Applications/zoom.us.app/Contents/Frameworks/ZoomOpener.app/ #remove zoom server from the zoom app bundle |