Skip to content

Instantly share code, notes, and snippets.

View michaelnozbe's full-sized avatar
💭
NoOffice.org book in the works...

Michael Sliwinski michaelnozbe

💭
NoOffice.org book in the works...
View GitHub Profile
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
@michaelnozbe
michaelnozbe / post.js
Created November 12, 2021 09:04
JS for blog posts on Michael.team
// 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) {