Skip to content

Instantly share code, notes, and snippets.

View g8gg's full-sized avatar
🎯
Focusing

锅巴GG g8gg

🎯
Focusing
View GitHub Profile
@g8gg
g8gg / custom.css
Created February 16, 2022 15:41 — forked from madawei2699/custom.css
logseq/custom.css
/*
/* Theme custom css start
/* https://raw.githack.com/dracula/logseq/master/custom.css
*/
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;700&family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
--background: #282a36;
--light-background: #343746;
@g8gg
g8gg / gist:3e01cd804bd3607295d8747a4b1b92bf
Created September 15, 2017 09:43 — forked from bartread/gist:5d8c09310156b3a37c968b2f6d3a1e79
Fully uninstall nodejs from OSX Yosemite 10.10.5
# first:
lsbom -f -l -s -pf /var/db/receipts/org.nodejs.node.pkg.bom | while read f; do sudo rm /usr/local/${f}; done
sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.*
# To recap, the best way (I've found) to completely uninstall node + npm is to do the following:
# go to /usr/local/lib and delete any node and node_modules
cd /usr/local/lib
sudo rm -rf node*
https://gist.github.com/jackiekazil/6201722